2003-07-22 Michael Natterer <mitch@gimp.org> * app/core/gimpgradient.[ch]: added "gboolean reverse" to gimp_gradient_get_color_at() so all gradients can be used reversed. * app/core/gimpdrawable-blend.[ch] (gimp_drawable_blend) * app/core/gimppalette-import.[ch] (gimp_palette_import_from_gradient): added "gboolean reverse". * app/paint/paint-enums.[ch]: removed enum GimpGradientRepeatMode since it is identical to GimpRepeatMode, except for the now obsolete ONCE_BACKWARD value. * app/paint/gimppaintcore.[ch]: removed gimp_paint_core_get_color_from_gradient()... * app/paint/gimppaintoptions.[ch]: ...and added gimp_paint_options_get_gradient_color(), which is much more general. Added a "reverse" property to GimpGradientOptions and changed the type of the "repeat" property to GimpRepeatMode. * app/paint/gimppaintbrush.c: use gimp_paint_options_get_gradient_color(). * app/tools/gimpblendoptions.[ch]: removed the "repeat" property since it is in the parent class now. * app/gui/gradient-select.c * app/gui/palette-import-dialog.c * app/widgets/gimpgradienteditor.c * app/tools/gimpblendtool.c * tools/pdbgen/pdb/gradients.pdb * tools/pdbgen/pdb/misc_tools.pdb: changed accordingly. * app/tools/gimppaintoptions-gui.c: added a "Reverse" toggle right of the gradient preview. * app/widgets/gimppreviewrenderergradient.[ch]: added "gboolean reverse" member and gimp_preview_renderer_gradient_set_reverse() API. * tools/pdbgen/pdb/paint_tools.pdb: fixed the paintbrush invoker to set GimpPaintOption's "use-fade" and "use-gradient" properties correctly. * app/pdb/gradients_cmds.c * app/pdb/misc_tools_cmds.c * app/pdb/paint_tools_cmds.c * libgimp/gimpenums.h * libgimp/gimpmisctools_pdb.[ch] * plug-ins/pygimp/gimpenums.py * plug-ins/script-fu/script-fu-constants.c * tools/pdbgen/enums.pl: regenerated. * libgimp/gimpcompat.h * plug-ins/script-fu/siod-wrapper.c: removed GimpGradientPaintMode here too since it was only exported accidentially (it's not used by any external API). * plug-ins/script-fu/scripts/3dTruchet.scm * plug-ins/script-fu/scripts/alien-glow-arrow.scm * plug-ins/script-fu/scripts/alien-glow-bar.scm * plug-ins/script-fu/scripts/alien-glow-bullet.scm * plug-ins/script-fu/scripts/alien-glow-button.scm * plug-ins/script-fu/scripts/alien-glow-logo.scm * plug-ins/script-fu/scripts/basic1-logo.scm * plug-ins/script-fu/scripts/basic2-logo.scm * plug-ins/script-fu/scripts/beveled-button.scm * plug-ins/script-fu/scripts/blended-logo.scm * plug-ins/script-fu/scripts/burn-in-anim.scm * plug-ins/script-fu/scripts/coffee.scm * plug-ins/script-fu/scripts/comic-logo.scm * plug-ins/script-fu/scripts/coolmetal-logo.scm * plug-ins/script-fu/scripts/glossy.scm * plug-ins/script-fu/scripts/gradient-bevel-logo.scm * plug-ins/script-fu/scripts/gradient-example.scm * plug-ins/script-fu/scripts/pupi-button.scm * plug-ins/script-fu/scripts/rendermap.scm * plug-ins/script-fu/scripts/sphere.scm * plug-ins/script-fu/scripts/starscape-logo.scm * plug-ins/script-fu/scripts/test-sphere.scm * plug-ins/script-fu/scripts/textured-logo.scm * plug-ins/script-fu/scripts/title-header.scm * plug-ins/script-fu/scripts/weave.scm: pass "reverse" to gimp_blend(). Pass FALSE in most cases and added script parameters were it makes sense.
88 lines
3.1 KiB
Scheme
88 lines
3.1 KiB
Scheme
; DROP-SHADOW-LOGO
|
|
; draw the specified text over a background with a drop shadow
|
|
|
|
(define (apply-basic1-logo-effect img
|
|
logo-layer
|
|
bg-color
|
|
text-color)
|
|
(let* ((width (car (gimp-drawable-width logo-layer)))
|
|
(height (car (gimp-drawable-height logo-layer)))
|
|
(bg-layer (car (gimp-layer-new img width height RGBA_IMAGE "Background" 100 NORMAL)))
|
|
(shadow-layer (car (gimp-layer-new img width height RGBA_IMAGE "Shadow" 100 MULTIPLY)))
|
|
(old-fg (car (gimp-palette-get-foreground)))
|
|
(old-bg (car (gimp-palette-get-background))))
|
|
|
|
(gimp-selection-none img)
|
|
(script-fu-util-image-resize-from-layer img logo-layer)
|
|
(gimp-image-add-layer img shadow-layer 1)
|
|
(gimp-image-add-layer img bg-layer 2)
|
|
(gimp-palette-set-foreground text-color)
|
|
(gimp-layer-set-preserve-trans logo-layer TRUE)
|
|
(gimp-edit-fill logo-layer FG-IMAGE-FILL)
|
|
(gimp-palette-set-background bg-color)
|
|
(gimp-edit-fill bg-layer BG-IMAGE-FILL)
|
|
(gimp-edit-clear shadow-layer)
|
|
(gimp-selection-layer-alpha logo-layer)
|
|
(gimp-palette-set-background '(0 0 0))
|
|
(gimp-selection-feather img 7.5)
|
|
(gimp-edit-fill shadow-layer BG-IMAGE-FILL)
|
|
(gimp-selection-none img)
|
|
(gimp-palette-set-foreground '(255 255 255))
|
|
|
|
(gimp-blend logo-layer FG-BG-RGB MULTIPLY
|
|
RADIAL 100 20 REPEAT-NONE FALSE
|
|
FALSE 0 0 TRUE
|
|
0 0 width height)
|
|
|
|
(gimp-layer-translate shadow-layer 3 3)
|
|
(gimp-palette-set-background old-bg)
|
|
(gimp-palette-set-foreground old-fg)))
|
|
|
|
(define (script-fu-basic1-logo-alpha img
|
|
logo-layer
|
|
bg-color
|
|
text-color)
|
|
(begin
|
|
(gimp-undo-push-group-start img)
|
|
(apply-basic1-logo-effect img logo-layer bg-color text-color)
|
|
(gimp-undo-push-group-end img)
|
|
(gimp-displays-flush)))
|
|
|
|
(script-fu-register "script-fu-basic1-logo-alpha"
|
|
_"<Image>/Script-Fu/Alpha to Logo/Basic I..."
|
|
"Creates a simple logo with a drop shadow"
|
|
"Spencer Kimball"
|
|
"Spencer Kimball"
|
|
"1996"
|
|
"RGBA"
|
|
SF-IMAGE "Image" 0
|
|
SF-DRAWABLE "Drawable" 0
|
|
SF-COLOR _"Background Color" '(255 255 255)
|
|
SF-COLOR _"Text Color" '(6 6 206))
|
|
|
|
(define (script-fu-basic1-logo text
|
|
size
|
|
font
|
|
bg-color
|
|
text-color)
|
|
(let* ((img (car (gimp-image-new 256 256 RGB)))
|
|
(text-layer (car (gimp-text-fontname img -1 0 0 text 10 TRUE size PIXELS font))))
|
|
|
|
(gimp-image-undo-disable img)
|
|
(gimp-layer-set-name text-layer text)
|
|
(apply-basic1-logo-effect img text-layer bg-color text-color)
|
|
(gimp-image-undo-enable img)
|
|
(gimp-display-new img)))
|
|
|
|
(script-fu-register "script-fu-basic1-logo"
|
|
_"<Toolbox>/Xtns/Script-Fu/Logos/Basic I..."
|
|
"Creates a simple logo with a drop shadow"
|
|
"Spencer Kimball"
|
|
"Spencer Kimball"
|
|
"1996"
|
|
""
|
|
SF-STRING _"Text" "The Gimp"
|
|
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
|
|
SF-FONT _"Font" "Dragonwick"
|
|
SF-COLOR _"Background Color" '(255 255 255)
|
|
SF-COLOR _"Text Color" '(6 6 206))
|