| Latest discussions |
|---|
|
Copyright label with script-fu
Updated 2 months ago |
|
Comment rendre un ciel plus dramatique ?
Updated 2 months ago |
|
Dodging and burning 'trick'
Updated 3 months ago 1 reply |
|
Meet the GIMP! - A videopodcast about the free graphics program Gimp
Updated 5 months ago 2 replies |
|
GREYCstoration - Open source algorithm for image denoising
Updated 5 months ago |
|
Paths and the Ways About Them
Updated 5 months ago |
| Scripts for GIMP 2.4 |
|
Thanks for opening this group!
Updated 6 months ago 1 reply |
|
[GIMP] Color enhancement using LAB color mode
Updated 8 months ago |
|
Scripts for GIMP 2.4posted by
Posted on Thursday November 8, 2007 at 19:55.
207 visits. (
permalink
)
|
You must be logged on to post a reply. Sign in now?
Latest comments
–
Subscribe to the comment feed for this topic.
nochjemand says:
thats great, i havn't the time yet.
Please kan you fix the set!-error?
And of cause add your copyright to
(define (script-fu-orton-effect theImage theLayer blurAmount)
;Start undo group
(gimp-image-undo-group-start theImage)
;Copy the layer
(let*
(
(copy1 (car (gimp-layer-copy theLayer 0)))
(copy2 (car (gimp-layer-copy theLayer 0)))
)
;Add the layers
(gimp-image-add-layer theImage copy1 -1)
(gimp-image-add-layer theImage copy2 -1)
;Change the layers mode to Screen (4)
(gimp-layer-set-mode copy2 4)
;Merge the copy2 down
(set! Orton-sharp (car (gimp-image-merge-down theImage copy2 0)))
;Set layers name
(gimp-drawable-set-name Orton-sharp "Orton Sharp")
;Create an new copy
(set! copy3 (car (gimp-layer-copy Orton-sharp 0)))
;Set layers name
(gimp-drawable-set-name copy3 "Orton Blur")
;Add the layer
(gimp-image-add-layer theImage copy3 -1)
;Gauss
(if (> blurAmount 0)
(plug-in-gauss 1 theImage copy3 blurAmount blurAmount 0)
)
;Change layers mode to multipicate (3)
(gimp-layer-set-mode copy3 3)
;EO undo group
(gimp-image-undo-group-end theImage)
;refresh screen
(gimp-displays-flush)
)
)
(script-fu-register "script-fu-orton-effect"
_"_Orton Effekt..."
"Performs a Orton Effect on the open image"
"Martin Conrad (Process)"
"2007, Martin Conrad (Process)"
"Apr. 11 2007"
"*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT _"Blur:" '(5 0 500 1 1 1 0)
)
(script-fu-menu-register "script-fu-orton-effect"
_"/Filters/Enhance")
thanks a lot
Martin
--
Coming from a group home page (?)
--
Coming from a group home page (?)
(define (script-fu-orton-effect theImage theLayer blurAmount)
;Start undo group
(gimp-image-undo-group-start theImage)
;Copy the layer
(let*
(
(copy1 (car (gimp-layer-copy theLayer 0)))
(copy2 (car (gimp-layer-copy theLayer 0)))
(Orton-sharp)
(copy3)
)
;Add the layers
(gimp-image-add-layer theImage copy1 -1)
(gimp-image-add-layer theImage copy2 -1)
;Change the layers mode to Screen (4)
(gimp-layer-set-mode copy2 4)
;Merge the copy2 down
(set! Orton-sharp (car (gimp-image-merge-down theImage copy2 0)))
;Set layers name
(gimp-drawable-set-name Orton-sharp "Orton Sharp")
;Create an new copy
(set! copy3 (car (gimp-layer-copy Orton-sharp 0)))
;Set layers name
(gimp-drawable-set-name copy3 "Orton Blur")
;Add the layer
(gimp-image-add-layer theImage copy3 -1)
;Gauss
(if (> blurAmount 0)
(plug-in-gauss 1 theImage copy3 blurAmount blurAmount 0)
)
;Change layers mode to multipicate (3)
(gimp-layer-set-mode copy3 3)
;EO undo group
(gimp-image-undo-group-end theImage)
;refresh screen
(gimp-displays-flush)
)
)
(script-fu-register "script-fu-orton-effect"
_"/Filters/Enhance/Orton effect..."
"Performs a Orton Effect on the open image"
"Martin Conrad (Process)"
"2007, Martin Conrad (Process)"
"Apr. 11 2007"
"*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT _"Blur:" '(5 0 500 1 1 1 0)
)
--
Coming from a group home page (?)
nochjemand says:
It runs fine. :-)
--
Coming from a group home page (?)
nochjemand says:
so the characters < must be written as < and > as > while posting scripts here.
Here again for copy and paste:
(define (script-fu-orton-effect theImage theLayer blurAmount)
;Start undo group
(gimp-image-undo-group-start theImage)
;Copy the layer
(let*
(
(copy1 (car (gimp-layer-copy theLayer 0)))
(copy2 (car (gimp-layer-copy theLayer 0)))
(Orton-sharp)
(copy3)
)
;Add the layers
(gimp-image-add-layer theImage copy1 -1)
(gimp-image-add-layer theImage copy2 -1)
;Change the layers mode to Screen (4)
(gimp-layer-set-mode copy2 4)
;Merge the copy2 down
(set! Orton-sharp (car (gimp-image-merge-down theImage copy2 0)))
;Set layers name
(gimp-drawable-set-name Orton-sharp "Orton Sharp")
;Create an new copy
(set! copy3 (car (gimp-layer-copy Orton-sharp 0)))
;Set layers name
(gimp-drawable-set-name copy3 "Orton Blur")
;Add the layer
(gimp-image-add-layer theImage copy3 -1)
;Gauss
(if (> blurAmount 0)
(plug-in-gauss 1 theImage copy3 blurAmount blurAmount 0)
)
;Change layers mode to multipicate (3)
(gimp-layer-set-mode copy3 3)
;EO undo group
(gimp-image-undo-group-end theImage)
;refresh screen
(gimp-displays-flush)
)
)
(script-fu-register "script-fu-orton-effect"
_"Orton effect..."
"Performs a Orton Effect on the open image"
"Martin Conrad, Roberto Ballerini (Process)"
"2007, Martin Conrad, Roberto Ballerini (Process)"
"Apr. 11 2007"
"*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT _"Blur:" '(5 0 500 1 1 1 0)
)
(script-fu-menu-register "script-fu-orton-effect"
_"<Image>/Filters/Enhance")
Hercules Rockafeller pro says:
--
Coming from a group home page (?)