
2003-08-09 Henrik Brix Andersen <brix@gimp.org> * gimp/app/widgets/gimpwidgets-utils.[ch]: removed function gimp_menu_path_strip_uline() ... * gimp/libgimpbase/gimputils.[ch]: ... and added it here under the name gimp_strip_uline() * gimp/devel-docs/libgimpbase/libgimpbase-sections.txt: added gimp_strip_uline to gimputils section * gimp/app/plug-in/plug-in.c * gimp/app/widgets/gimpitemfactory.c * gimp/app/widgets/gimptoolbox. * gimp/app/gui/plug-in-menus.c: changed accordingly * gimp/plug-ins/script-fu/script-fu-scripts.c (script_fu_interface): use gimp_strip_uline() to strip mnemonics from script-fu menu paths * gimp/app/gui/vectors-menu.c * gimp/app/gui/templates-menu.c * gimp/app/gui/qmask-menu.c * gimp/app/gui/palettes-menu.c * gimp/app/gui/palette-editor-menu.c * gimp/app/gui/images-menu.c * gimp/app/gui/gradients-menu.c * gimp/app/gui/gradient-editor-menu.c * gimp/app/gui/documents-menu.c * gimp/app/gui/dialogs-menu.c * gimp/app/gui/colormap-editor-menu.c * gimp/app/gui/channels-menu.c * gimp/app/gui/buffers-menu.c * gimp/app/gui/brushes-menu.c * gimp/app/gui/layers-menu.c * gimp/plug-ins/pygimp/plug-ins/clothify.py * gimp/plug-ins/pygimp/plug-ins/shadow_bevel.py * gimp/plug-ins/pygimp/plug-ins/whirlpinch.py * gimp/plug-ins/pygimp/plug-ins/foggify.py * gimp/plug-ins/script-fu/scripts/*.scm * gimp/plug-ins/script-fu/script-fu.c: added mnemonics fixing more of bug #106991 * gimp/app/gui/error-console-menu.c (error_console_menu_update): updated menu item names, added mnemonics * gimp/plug-ins/common/animoptimize.c * gimp/plug-ins/common/animationplay.c: don't prepend every menu entry with "Animation"
56 lines
2.0 KiB
Scheme
56 lines
2.0 KiB
Scheme
; CLOTHIFY version 1.02
|
|
; Gives the current layer in the indicated image a cloth-like texture.
|
|
; Process invented by Zach Beane (Xath@irc.gimp.net)
|
|
;
|
|
; Tim Newsome <drz@froody.bloke.com> 4/11/97
|
|
|
|
(define (script-fu-clothify timg tdrawable bx by azimuth elevation depth)
|
|
(let* (
|
|
(width (car (gimp-drawable-width tdrawable)))
|
|
(height (car (gimp-drawable-height tdrawable)))
|
|
(img (car (gimp-image-new width height RGB)))
|
|
; (layer-two (car (gimp-layer-new img width height RGB "Y Dots" 100 MULTIPLY)))
|
|
(layer-one (car (gimp-layer-new img width height RGB "X Dots" 100 NORMAL)))
|
|
(old-bg (car (gimp-palette-get-background))))
|
|
|
|
(gimp-image-undo-disable img)
|
|
(gimp-palette-set-background '(255 255 255))
|
|
(gimp-edit-fill layer-one BG-IMAGE-FILL)
|
|
(gimp-image-add-layer img layer-one 0)
|
|
|
|
(plug-in-noisify 1 img layer-one FALSE 0.7 0.7 0.7 0.7)
|
|
|
|
(set! layer-two (car (gimp-layer-copy layer-one 0)))
|
|
(gimp-layer-set-mode layer-two MULTIPLY)
|
|
(gimp-image-add-layer img layer-two 0)
|
|
|
|
(plug-in-gauss-rle 1 img layer-one bx TRUE FALSE)
|
|
(plug-in-gauss-rle 1 img layer-two by FALSE TRUE)
|
|
(gimp-image-flatten img)
|
|
(set! bump-layer (car (gimp-image-get-active-layer img)))
|
|
|
|
(plug-in-c-astretch 1 img bump-layer)
|
|
(plug-in-noisify 1 img bump-layer FALSE 0.2 0.2 0.2 0.2)
|
|
|
|
(plug-in-bump-map 1 img tdrawable bump-layer azimuth elevation depth 0 0 0 0 FALSE FALSE 0)
|
|
(gimp-image-delete img)
|
|
(gimp-palette-set-background old-bg)
|
|
(gimp-displays-flush)
|
|
))
|
|
|
|
|
|
(script-fu-register "script-fu-clothify"
|
|
_"<Image>/Script-Fu/Alchemy/_Clothify..."
|
|
"Gives the current layer a cloth-like texture"
|
|
"Tim Newsome <drz@froody.bloke.com>"
|
|
"Tim Newsome"
|
|
"4/11/97"
|
|
"RGB* GRAY*"
|
|
SF-IMAGE "Input Image" 0
|
|
SF-DRAWABLE "Input Drawable" 0
|
|
SF-ADJUSTMENT _"Blur X" '(9 3 100 1 10 0 1)
|
|
SF-ADJUSTMENT _"Blur Y" '(9 3 100 1 10 0 1)
|
|
SF-ADJUSTMENT _"Azimuth" '(135 0 360 1 10 1 0)
|
|
SF-ADJUSTMENT _"Elevation" '(45 0 90 1 10 1 0)
|
|
SF-ADJUSTMENT _"Depth" '(3 1 50 1 10 0 1))
|