new scheme for i18n of script-fus: translatable strings are marked

like _"foo".


--Sven
This commit is contained in:
Sven Neumann 2000-03-28 21:06:39 +00:00
parent eccd2eff55
commit db7d885ee3
110 changed files with 2706 additions and 1043 deletions

View file

@ -1,3 +1,23 @@
2000-03-28 Sven Neumann <sven@gimp.org>
* plugins/script-fu/Makefile.am: don't install test-sphere.scm
* plugins/script-fu/interp_slib.c: accept _"foo" as a normal
string. This allows us to mark strings in scripts for translation
similar to how it is done in C. Please not that this does not mean
that gettext is automatically called on those strings. The
Script-Fu interface code takes care of calling gettext on all
strings that are displayed in the GUI.
* plug-ins/gap/sel-to-anim-img.scm
* plug-ins/script-fu/scripts/*.scm
* plug-ins/webbrowser/web-browser.scm: marked strings for
translation. Hopefully I didn't break anything. Please test!
I noted that there are still some scripts that should be updated
to use the new features like SF-ADJUSTMENTs. Help is very much
appreciated here.
Tue Mar 28 22:47:17 CEST 2000 Stanislav Brabec <utx@penguin.cz>
* plug-ins/gap/*: "Frame Range" typo fix.

View file

@ -72,7 +72,7 @@
(set! brush-image (car (gimp-image-new selection-width selection-height image-type)))
(while (< idx copies)
(set! draw-name (string-append "frame_" (number->string idx)))
(set! draw-name (string-append "frame_0" (number->string idx)))
(set! brush-draw (car (gimp-layer-new brush-image selection-width selection-height draw-type draw-name 100 NORMAL)))
(gimp-image-add-layer brush-image brush-draw 0)
(if (= bgfill TRUE)
@ -105,7 +105,7 @@
)
(script-fu-register "script-fu-selection-to-anim-image"
"<Image>/Script-Fu/Animators/Selection to AnimImage..."
_"<Image>/Script-Fu/Animators/Selection to AnimImage..."
"Create a multilayer image from current selection and apply any PDB Filter to all layer-copies"
"Wolfgang Hofer <hof@hotbot.com>"
"Wolfgang Hofer"
@ -113,9 +113,9 @@
"RGB RGBA GRAY GRAYA"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-VALUE "Number of copies" "10"
SF-TOGGLE "Fill with BG Color?" TRUE
SF-TOGGLE "Anim-Filter for all copies?" TRUE
SF-VALUE _"Number of Copies" "10"
SF-TOGGLE _"Fill with BG Color" TRUE
SF-TOGGLE _"Anim-Filter for all Copies" TRUE
)

View file

@ -2909,6 +2909,13 @@ lreadr (struct gen_readio *f)
UNGETC_FCN (c, f);
}
return (cons (cintern (p), lreadr (f)));
case '_': /* might be a string marked for translation using _(...) */
c = GETC_FCN (f);
if (c == '"')
return (lreadstring (f));
else
UNGETC_FCN (c, f);
break;
case '"':
return (lreadstring (f));
case '#':

View file

@ -79,19 +79,19 @@
(gimp-display-new img)))
(script-fu-register "script-fu-3d-outline-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/3D Outline..."
_"<Toolbox>/Xtns/Script-Fu/Logos/3D Outline..."
"Creates outlined texts with drop shadow"
"Hrvoje Horvat (hhorvat@open.hr)"
"Hrvoje Horvat"
"07 April, 1998"
""
SF-PATTERN "Pattern" "Parque #1"
SF-STRING "Text String" "The Gimp"
SF-ADJUSTMENT "Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"
SF-VALUE "Outline blur radius" "5"
SF-VALUE "Shadow blur radius" "10"
SF-VALUE "Bump-map (alpha layer) blur radius" "5"
SF-TOGGLE "Default bump-map settings" TRUE
SF-VALUE "Shadow X offset" "0"
SF-VALUE "Shadow Y offset" "0")
SF-PATTERN _"Pattern" "Parque #1"
SF-STRING _"Text" "The Gimp"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"
SF-VALUE _"Outline Blur Radius" "5"
SF-VALUE _"Shadow Blur Radius" "10"
SF-VALUE _"Bumpmap (Alpha Layer) Blur Radius" "5"
SF-TOGGLE _"Default Bumpmap Settings" TRUE
SF-VALUE _"Shadow X Offset" "0"
SF-VALUE _"Shadow Y Offset" "0")

View file

@ -157,18 +157,18 @@
)
(script-fu-register "script-fu-3dtruchet"
"<Toolbox>/Xtns/Script-Fu/Patterns/3D Truchet..."
_"<Toolbox>/Xtns/Script-Fu/Patterns/3D Truchet..."
"3D Truchet pattern"
"Adrian Likins <aklikins@eos.ncsu.edu>"
"Adrian Likins"
"1997"
""
SF-VALUE "Block Size" "64"
SF-VALUE "Thickness" "12"
SF-COLOR "Background Color" '(255 255 255)
SF-COLOR "Begin Blend" '(0 0 0)
SF-COLOR "End Blend" '(255 255 255)
SF-TOGGLE "Supersample?" TRUE
SF-VALUE "Number of Xtiles" "5"
SF-VALUE "Number of Ytiles" "5"
SF-VALUE _"Block Size" "64"
SF-VALUE _"Thickness" "12"
SF-COLOR _"Background Color" '(255 255 255)
SF-COLOR _"Start Blend" '(0 0 0)
SF-COLOR _"End Blend" '(255 255 255)
SF-TOGGLE _"Supersample" TRUE
SF-VALUE _"Number of Xtiles" "5"
SF-VALUE _"Number of Ytiles" "5"
)

View file

@ -98,10 +98,10 @@ scriptdata_DATA = \
unsharp-mask.scm \
waves-anim.scm \
weave.scm \
xach-effect.scm \
test-sphere.scm
xach-effect.scm
EXTRA_DIST = $(scriptdata_DATA)
EXTRA_DIST = $(scriptdata_DATA) \
test-sphere.scm
files:
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \

View file

@ -202,15 +202,15 @@
)
(script-fu-register "script-fu-add-bevel"
"<Image>/Script-Fu/Decor/Add Bevel..."
_"<Image>/Script-Fu/Decor/Add Bevel..."
"Add a bevel to an image"
"Andrew Donkin <ard@cs.waikato.ac.nz>"
"Andrew Donkin"
"1997/11/06"
"RGB* GRAY*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "Thickness" '(5 0 30 1 2 0 0)
SF-TOGGLE "Work on copy" TRUE
SF-TOGGLE "Keep bump layer" FALSE
SF-IMAGE _"Image" 0
SF-DRAWABLE _"Drawable" 0
SF-ADJUSTMENT _"Thickness" '(5 0 30 1 2 0 0)
SF-TOGGLE _"Work on Copy" TRUE
SF-TOGGLE _"Keep Bump Layer" FALSE
)

View file

@ -162,7 +162,7 @@
(script-fu-register "script-fu-addborder"
"<Image>/Script-Fu/Decor/Add Border..."
_"<Image>/Script-Fu/Decor/Add Border..."
"Add a border around an image"
"Andy Thomas <alt@picnic.demon.co.uk>"
"Andy Thomas"
@ -170,7 +170,7 @@
"RGB*"
SF-IMAGE "Input Image" 0
SF-DRAWABLE "Input Drawable" 0
SF-VALUE "Border x size" "12"
SF-VALUE "Border y size" "12"
SF-COLOR "Border Colour" '(38 31 207)
SF-VALUE "Delta value on colour" "25")
SF-VALUE _"Border X Size" "12"
SF-VALUE _"Border Y Size" "12"
SF-COLOR _"Border Color" '(38 31 207)
SF-VALUE _"Delta Value on Color" "25")

View file

@ -121,14 +121,14 @@
(gimp-display-new img)))
(script-fu-register "script-fu-alien-glow-right-arrow"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Arrow..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Arrow..."
"Create an X-file deal"
"Adrian Likins"
"Adrian Likins"
"1997"
""
SF-VALUE "Size" "32"
SF-VALUE "Orientation" "'right"
SF-COLOR "Glow Color" '(63 252 0)
SF-COLOR "Background Color" '(0 0 0)
SF-TOGGLE "Flatten Image" TRUE)
SF-VALUE _"Size" "32"
SF-VALUE _"Orientation" "'right"
SF-COLOR _"Glow Color" '(63 252 0)
SF-COLOR _"Background Color" '(0 0 0)
SF-TOGGLE _"Flatten Image" TRUE)

View file

@ -64,17 +64,17 @@
(script-fu-register "script-fu-alien-glow-horizontal-ruler"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Hrule..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Hrule..."
"Create an Hrule with the Alien Glow look"
"Adrian Likins"
"Adrian Likins"
"1997"
""
SF-VALUE "Bar length" "480"
SF-VALUE "Bar Height" "16"
SF-COLOR "Glow Color" '(63 252 0)
SF-COLOR "Background Color" '(0 0 0)
SF-TOGGLE "Flatten Image" TRUE)
SF-VALUE _"Bar Length" "480"
SF-VALUE _"Bar Height" "16"
SF-COLOR _"Glow Color" '(63 252 0)
SF-COLOR _"Background Color" '(0 0 0)
SF-TOGGLE _"Flatten Image" TRUE)

View file

@ -75,14 +75,14 @@
(script-fu-register "script-fu-alien-glow-bullet"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Bullet..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Bullet..."
"Create a Bullet with an Alien Glow theme for web pages"
"Adrian Likins"
"Adrian Likins"
"1997"
""
SF-VALUE "Radius" "16"
SF-COLOR "Glow Color" '(63 252 0)
SF-COLOR "Background Color" '(0 0 0)
SF-TOGGLE "Flatten Image?" TRUE)
SF-VALUE _"Radius" "16"
SF-COLOR _"Glow Color" '(63 252 0)
SF-COLOR _"Background Color" '(0 0 0)
SF-TOGGLE _"Flatten Image" TRUE)

View file

@ -129,18 +129,18 @@
; Register!
(script-fu-register "script-fu-alien-glow-button"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Button..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Button..."
"Button with an eerie glow"
"Adrian Likins"
"Adrian Likins"
"July 1997"
""
SF-STRING "Text" "Hello world!"
SF-FONT "Font" "-*-futura_poster-*-*-*-*-22-*-*-*-*-*-*-*"
SF-ADJUSTMENT "Font Size (pixels)" '(22 2 100 1 1 0 1)
SF-COLOR "Text color" '(0 0 0)
SF-COLOR "Glow Color" '(63 252 0)
SF-COLOR "Background Color" '(0 0 0)
SF-VALUE "Padding" "6"
SF-VALUE "Glow Radius" "10"
SF-TOGGLE "Flatten Image?" TRUE)
SF-STRING _"Text" "Hello world!"
SF-FONT _ "Font" "-*-futura_poster-*-*-*-*-22-*-*-*-*-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(22 2 100 1 1 0 1)
SF-COLOR _"Text Color" '(0 0 0)
SF-COLOR _"Glow Color" '(63 252 0)
SF-COLOR _"Background Color" '(0 0 0)
SF-VALUE _"Padding" "6"
SF-VALUE _"Glow Radius" "10"
SF-TOGGLE _"Flatten Image" TRUE)

View file

@ -38,13 +38,13 @@
(script-fu-register "script-fu-alien-glow-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Alien Glow..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Alien Glow..."
"Create an X-Files-esque logo with the specified glow color"
"Spencer Kimball"
"Spencer Kimball"
"1997"
""
SF-STRING "Text String" "ALIEN"
SF-ADJUSTMENT "Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT "Font" "-*-futura_poster-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Glow Color" '(63 252 0))
SF-STRING _"Text" "ALIEN"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-futura_poster-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Glow Color" '(63 252 0))

View file

@ -108,21 +108,21 @@
)
(script-fu-register "script-fu-alien-neon-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Alien Neon..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Alien Neon..."
"Creates a psychedelic effect with outlines of the specified color around the letters"
"Raphael Quinet (quinet@gamers.org)"
"Raphael Quinet"
"1999-2000"
""
SF-STRING "Text String" "The GIMP"
SF-ADJUSTMENT "Font size (in pixels)" '(150 2 1000 1 10 0 1)
SF-FONT "Font" "-*-blippo-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Glow color" '(0 255 0)
SF-COLOR "Background color" '(0 0 0)
SF-ADJUSTMENT "Width of bands" '(2 1 60 1 10 0 0)
SF-ADJUSTMENT "Width of gaps" '(2 1 60 1 10 0 0)
SF-ADJUSTMENT "Number of bands" '(7 1 100 1 10 0 1)
SF-TOGGLE "Fade away?" TRUE
SF-STRING _"Text" "The GIMP"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-blippo-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Glow Color" '(0 255 0)
SF-COLOR _"Background Color" '(0 0 0)
SF-ADJUSTMENT _"Width of Bands" '(2 1 60 1 10 0 0)
SF-ADJUSTMENT _"Width of Gaps" '(2 1 60 1 10 0 0)
SF-ADJUSTMENT _"Number of Bands" '(7 1 100 1 10 0 1)
SF-TOGGLE _"Fade Away" TRUE
)
; end

View file

@ -208,24 +208,24 @@
(script-fu-register
"script-fu-asc-2-img"
"<Toolbox>/Xtns/Script-Fu/Utils/ASCII to Image..."
_"<Toolbox>/Xtns/Script-Fu/Utils/ASCII to Image..."
"Create a new image containing text from a simple text file"
"Chris Gutteridge: cjg@ecs.soton.ac.uk"
"8th April 1998"
"Chris Gutteridge / ECS @ University of Southampton, England"
"bar"
SF-FILENAME "File Name" "afile"
SF-FONT "Font" "-*-Charter-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Font Size (pixels)" '(45 2 1000 1 10 0 1)
SF-COLOR "Text Color" '(0 0 0)
SF-TOGGLE "Transparent BG?" FALSE
SF-COLOR "Background Color" '(255 255 255)
SF-ADJUSTMENT "Buffer amount (% height of text)" '(35 0 100 1 10 0 0)
SF-FILENAME _"File Name" "afile"
SF-FONT _"Font" "-*-Charter-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(45 2 1000 1 10 0 1)
SF-COLOR _"Text Color" '(0 0 0)
SF-TOGGLE _"Transparent Background" FALSE
SF-COLOR _"Background Color" '(255 255 255)
SF-ADJUSTMENT _"Buffer Amount (% Height of Text)" '(35 0 100 1 10 0 0)
)
(script-fu-register
"script-fu-asc-2-img-layer"
"<Image>/Script-Fu/Utils/ASCII to Image Layer..."
_"<Image>/Script-Fu/Utils/ASCII to Image Layer..."
"Create a new layer of text from a simple text file"
"Chris Gutteridge: cjg@ecs.soton.ac.uk"
"30th April 1998"
@ -233,8 +233,8 @@
"*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Layer" 0
SF-FILENAME "File Name" "afile"
SF-FONT "Font" "-*-Charter-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Font Size (pixels)" '(45 2 1000 1 10 0 1)
SF-COLOR "Text Color" '(0 0 0)
SF-FILENAME _"File Name" "afile"
SF-FONT _"Font" "-*-Charter-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(45 2 1000 1 10 0 1)
SF-COLOR _"Text Color" '(0 0 0)
)

View file

@ -35,14 +35,14 @@
(gimp-display-new img)))
(script-fu-register "script-fu-basic1-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Basic I..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Basic I..."
"Creates a simple logo with a drop shadow"
"Spencer Kimball"
"Spencer Kimball"
"1996"
""
SF-STRING "Text String" "The Gimp"
SF-ADJUSTMENT "Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Dragonwick-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Background Color" '(255 255 255)
SF-COLOR "Text Color" '(6 6 206))
SF-STRING _"Text" "The Gimp"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Dragonwick-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(255 255 255)
SF-COLOR _"Text Color" '(6 6 206))

View file

@ -51,14 +51,14 @@
(gimp-display-new img)))
(script-fu-register "script-fu-basic2-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Basic II..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Basic II..."
"Creates a simple logo with a shadow and a highlight"
"Spencer Kimball"
"Spencer Kimball"
"1996"
""
SF-STRING "Text String" "SCRIPT-FU"
SF-ADJUSTMENT "Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT "Font" "-*-futura_poster-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Background Color" '(255 255 255)
SF-COLOR "Text Color" '(206 6 50))
SF-STRING _"Text" "SCRIPT-FU"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-futura_poster-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(255 255 255)
SF-COLOR _"Text Color" '(206 6 50))

View file

@ -152,18 +152,18 @@
; Register!
(script-fu-register "script-fu-button00"
"<Toolbox>/Xtns/Script-Fu/Buttons/Simple Beveled Button..."
_"<Toolbox>/Xtns/Script-Fu/Buttons/Simple Beveled Button..."
"Simple beveled button"
"Federico Mena Quintero"
"Federico Mena Quintero"
"June 1997"
""
SF-STRING "Text" "Hello world!"
SF-ADJUSTMENT "Font Size (pixels)" '(16 2 100 1 1 0 1)
SF-FONT "Font" "-*-helvetica-*-r-*-*-16-*-*-*-p-*-*-*"
SF-COLOR "Upper-left color" '(0 255 127)
SF-COLOR "Lower-right color" '(0 127 255)
SF-COLOR "Text color" '(0 0 0)
SF-VALUE "Padding" "2"
SF-VALUE "Bevel width" "4"
SF-TOGGLE "Pressed?" FALSE)
SF-STRING _"Text" "Hello world!"
SF-ADJUSTMENT _"Font Size (pixels)" '(16 2 100 1 1 0 1)
SF-FONT _"Font" "-*-helvetica-*-r-*-*-16-*-*-*-p-*-*-*"
SF-COLOR _"Upper-Left color" '(0 255 127)
SF-COLOR _"Lower-Right color" '(0 127 255)
SF-COLOR _"Text Color" '(0 0 0)
SF-VALUE _"Padding" "2"
SF-VALUE _"Bevel Width" "4"
SF-TOGGLE _"Pressed" FALSE)

View file

@ -134,12 +134,12 @@
(script-fu-register "script-fu-beveled-pattern-arrow"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Arrow..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Arrow..."
"Beveled pattern arrow"
"Federico Mena Quintero"
"Federico Mena Quintero"
"July 1997"
""
SF-VALUE "Size" "32"
SF-VALUE "Orientation" "'right"
SF-PATTERN "Pattern" "Wood")
SF-VALUE _"Size" "32"
SF-VALUE _"Orientation" "'right"
SF-PATTERN _"Pattern" "Wood")

View file

@ -74,12 +74,12 @@
(script-fu-register "script-fu-beveled-pattern-bullet"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Bullet..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Bullet..."
"Beveled pattern bullet"
"Federico Mena Quintero"
"Federico Mena Quintero"
"July 1997"
""
SF-VALUE "Diameter" "16"
SF-PATTERN "Pattern" "Wood"
SF-TOGGLE "Transparent background" FALSE)
SF-VALUE _"Diameter" "16"
SF-PATTERN _"Pattern" "Wood"
SF-TOGGLE _"Transparent Background" FALSE)

View file

@ -115,15 +115,15 @@
(script-fu-register "script-fu-beveled-pattern-button"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Button..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Button..."
"Beveled pattern button"
"Federico Mena Quintero"
"Federico Mena Quintero"
"July 1997"
""
SF-STRING "Text" "Hello world!"
SF-VALUE "Text size" "32"
SF-FONT "Font" "-*-helvetica-*-r-*-*-32-*-*-*-p-*-*-*"
SF-COLOR "Text color" '(0 0 0)
SF-PATTERN "Pattern" "Wood"
SF-TOGGLE "Pressed?" FALSE)
SF-STRING _"Text" "Hello world!"
SF-VALUE _"Font Size (pixels)" "32"
SF-FONT _"Font" "-*-helvetica-*-r-*-*-32-*-*-*-p-*-*-*"
SF-COLOR _"Text Color" '(0 0 0)
SF-PATTERN _"Pattern" "Wood"
SF-TOGGLE _"Pressed" FALSE)

View file

@ -94,14 +94,14 @@
(script-fu-register "script-fu-beveled-pattern-heading"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Heading..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Heading..."
"Beveled pattern heading"
"Federico Mena Quintero"
"Federico Mena Quintero"
"July 1997"
""
SF-STRING "Text" "Hello world!"
SF-ADJUSTMENT "Text Size (pixels)" '(72 2 200 1 1 0 1)
SF-FONT "Font" "-*-helvetica-*-r-*-*-72-*-*-*-p-*-*-*"
SF-PATTERN "Pattern" "Wood"
SF-TOGGLE "Transparent background" FALSE)
SF-STRING _"Text" "Hello world!"
SF-ADJUSTMENT _"Text Size (pixels)" '(72 2 200 1 1 0 1)
SF-FONT _"Font" "-*-helvetica-*-r-*-*-72-*-*-*-p-*-*-*"
SF-PATTERN _"Pattern" "Wood"
SF-TOGGLE _"Transparent Background" FALSE)

View file

@ -63,12 +63,12 @@
(script-fu-register "script-fu-beveled-pattern-hrule"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Hrule..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Hrule..."
"Beveled pattern hrule"
"Federico Mena Quintero"
"Federico Mena Quintero"
"July 1997"
""
SF-VALUE "Width" "480"
SF-VALUE "Height" "16"
SF-PATTERN "Pattern" "Wood")
SF-VALUE _"Width" "480"
SF-VALUE _"Height" "16"
SF-PATTERN _"Pattern" "Wood")

View file

@ -217,7 +217,7 @@
(gimp-message "Blend Animation needs at least three source layers"))))
(script-fu-register "script-fu-blend-anim"
"<Image>/Script-Fu/Animators/Blend..."
_"<Image>/Script-Fu/Animators/Blend..."
"Blend two or more layers over a background, so that an
animation can be saved"
"Sven Neumann <sven@gimp.org>"
@ -226,6 +226,6 @@
"RGB* GRAY*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "Intermediate Frames" '(3 1 1024 1 10 0 1)
SF-ADJUSTMENT "Max. Blur Radius" '(0 0 1024 1 10 0 1)
SF-TOGGLE "Looped" TRUE)
SF-ADJUSTMENT _"Intermediate Frames" '(3 1 1024 1 10 0 1)
SF-ADJUSTMENT _"Max. Blur Radius" '(0 0 1024 1 10 0 1)
SF-TOGGLE _"Looped" TRUE)

View file

@ -74,17 +74,17 @@
(gimp-display-new img)))
(script-fu-register "script-fu-blended-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Blended..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Blended..."
"Creates logos with blended backgrounds, highlights, and shadows"
"Spencer Kimball"
"Spencer Kimball"
"1996"
""
SF-VALUE "Blend Mode" "FG-BG-RGB"
SF-STRING "Text String" "The GIMP"
SF-ADJUSTMENT "Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Crillee-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Background Color" '(255 255 255)
SF-COLOR "Text Color" '(124 174 255)
SF-COLOR "Starting Blend" '(22 9 129)
SF-COLOR "Ending Blend" '(129 9 82))
SF-VALUE _"Blend Mode" "FG-BG-RGB"
SF-STRING _"Text" "The GIMP"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Crillee-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(255 255 255)
SF-COLOR _"Text Color" '(124 174 255)
SF-COLOR _"Start Blend" '(22 9 129)
SF-COLOR _"End Blend" '(129 9 82))

View file

@ -70,13 +70,13 @@
(script-fu-register "script-fu-bovinated-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Bovination..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Bovination..."
"Makes Cow-spotted logos"
"Brian McFee <keebler@wco.com>"
"Brian McFee"
"April 1998"
""
SF-STRING "Text String" "Fear the Cow"
SF-ADJUSTMENT "Font Size (pixels)" '(80 2 1000 1 10 0 1)
SF-FONT "Font" "-*-roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Background Color" '(255 255 255))
SF-STRING _"Text" "Fear the Cow"
SF-ADJUSTMENT _"Font Size (pixels)" '(80 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(255 255 255))

View file

@ -84,18 +84,18 @@
(script-fu-register
"script-fu-camo-pattern"
"<Toolbox>/Xtns/Script-Fu/Patterns/Camouflage..."
_"<Toolbox>/Xtns/Script-Fu/Patterns/Camouflage..."
"Camouflage pattern"
"Chris Gutteridge: cjg@ecs.soton.ac.uk"
"28th April 1998"
"Chris Gutteridge / ECS @ University of Southampton, England"
""
SF-VALUE "Image Size" "256"
SF-ADJUSTMENT "Granularity (0 - 15)" '(7 0 15 1 1 0 0)
SF-COLOR "Color 1" '(33 100 58)
SF-COLOR "Color 2" '(170 170 60)
SF-COLOR "Color 3" '(150 115 100)
SF-TOGGLE "Smooth?" FALSE
SF-TOGGLE "Flatten?" TRUE
SF-VALUE _"Image Size" "256"
SF-ADJUSTMENT _"Granularity (0 - 15)" '(7 0 15 1 1 0 0)
SF-COLOR _"Color 1" '(33 100 58)
SF-COLOR _"Color 2" '(170 170 60)
SF-COLOR _"Color 3" '(150 115 100)
SF-TOGGLE _"Smooth" FALSE
SF-TOGGLE _"Flatten Image" TRUE
)

View file

@ -177,7 +177,7 @@
(gimp-image-undo-enable img)))
(script-fu-register "script-fu-carve-it"
"<Image>/Script-Fu/Stencil Ops/Carve-It..."
_"<Image>/Script-Fu/Stencil Ops/Carve-It..."
"Use the specified [GRAY] drawable as a stencil to carve from the specified image. The specified image must be either RGB colour or grayscale, not indexed."
"Spencer Kimball"
"Spencer Kimball"
@ -185,5 +185,5 @@
"GRAY"
SF-IMAGE "Mask Image" 0
SF-DRAWABLE "Mask Drawable" 0
SF-DRAWABLE "Image to Carve" 0
SF-TOGGLE "Carve White Areas" TRUE)
SF-DRAWABLE _"Image to Carve" 0
SF-TOGGLE _"Carve White Areas" TRUE)

View file

@ -151,16 +151,15 @@
(gimp-image-undo-enable img)))
(script-fu-register "script-fu-carved-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Carved..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Carved..."
"Carve the text from the specified image. The image will be automatically tiled to accomodate the rendered text string. The \"Carve Raised Text\" parameter determines whether to carve the text itself, or around the text."
"Spencer Kimball"
"Spencer Kimball"
"1997"
""
SF-STRING "Text String" "Marble"
SF-ADJUSTMENT "Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Engraver-*-r-*-*-24-*-*-*-p-*-*-*"
; SF-STRING "Background Img" (string-append "" gimp-data-dir "/scripts/texture3.jpg")
SF-FILENAME "Background Img" (string-append "" gimp-data-dir "/scripts/texture3.jpg")
SF-TOGGLE "Carve Raised Text" FALSE
SF-ADJUSTMENT "Padding Around Text" '(10 0 1000 1 10 0 1))
SF-STRING _"Text" "Marble"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Engraver-*-r-*-*-24-*-*-*-p-*-*-*"
SF-FILENAME _"Background Image" (string-append "" gimp-data-dir "/scripts/texture3.jpg")
SF-TOGGLE _"Carve Raised Text" FALSE
SF-ADJUSTMENT _"Padding Around Text" '(10 0 1000 1 10 0 1))

View file

@ -67,14 +67,14 @@
(gimp-display-new img)))
(script-fu-register "script-fu-chalk-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Chalk..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Chalk..."
"Chalk scribbled logos"
"Manish Singh <msingh@uclink4.berkeley.edu>"
"Manish Singh"
"October 1997"
""
SF-STRING "Text String" "CHALK"
SF-ADJUSTMENT "Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Cooper-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Background Color" '(0 0 0)
SF-COLOR "Chalk Color" '(255 255 255))
SF-STRING _"Text" "CHALK"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Cooper-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(0 0 0)
SF-COLOR _"Chalk Color" '(255 255 255))

View file

@ -113,22 +113,22 @@
(script-fu-register "script-fu-logo-chip-away"
"<Toolbox>/Xtns/Script-Fu/Logos/Chip Away..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Chip Away..."
"Chip away effect"
"Adrian Likins <adrian@gimp.org>"
"Adrian Likins <adrian@gimp.org>"
"1997"
""
SF-STRING "Text String" "Sloth"
SF-FONT "Font" "-*-roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Font Size (pixels)" '(200 2 1000 1 10 0 1)
SF-VALUE "Chip Amount" "30"
SF-VALUE "Blur Amount" "3"
SF-TOGGLE "Invert?" FALSE
SF-TOGGLE "Drop Shadow?" TRUE
SF-TOGGLE "Keep Bump layer?" FALSE
SF-TOGGLE "Fill bg with pattern?" TRUE
SF-TOGGLE "Keep Background?" TRUE
SF-PATTERN "Pattern" "Burlwood")
SF-STRING _"Text" "Sloth"
SF-FONT _"Font" "-*-roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(200 2 1000 1 10 0 1)
SF-VALUE _"Chip Amount" "30"
SF-VALUE _"Blur Amount" "3"
SF-TOGGLE _"Invert" FALSE
SF-TOGGLE _"Drop Shadow" TRUE
SF-TOGGLE _"Keep Bump Layer" FALSE
SF-TOGGLE _"Fill BG with Pattern" TRUE
SF-TOGGLE _"Keep Background" TRUE
SF-PATTERN _"Pattern" "Burlwood")

View file

@ -182,7 +182,7 @@
(gimp-image-undo-enable img)))
(script-fu-register "script-fu-sota-chrome-it"
"<Image>/Script-Fu/Stencil Ops/Chrome-It..."
_"<Image>/Script-Fu/Stencil Ops/Chrome-It..."
"Use the specified [GRAY] drawable as a stencil to run the chrome effect on."
"Spencer Kimball"
"Spencer Kimball"
@ -190,11 +190,10 @@
"GRAY"
SF-IMAGE "Chrome Image" 0
SF-DRAWABLE "Chrome Mask" 0
SF-VALUE "Chrome Saturation" "-80"
SF-VALUE "Chrome Lightness" "-47"
SF-VALUE "Chrome Factor" "0.75"
; SF-STRING "Environment Map" (string-append "" gimp-data-dir "/scripts/beavis.jpg")
SF-FILENAME "Environment Map" (string-append "" gimp-data-dir "/scripts/beavis.jpg")
SF-COLOR "Highlight Balance" '(211 95 0)
SF-COLOR "Chrome Balance" '(0 0 0)
SF-TOGGLE "Chrome White Areas" TRUE)
SF-VALUE _"Chrome Saturation" "-80"
SF-VALUE _"Chrome Lightness" "-47"
SF-VALUE _"Chrome Factor" "0.75"
SF-FILENAME _"Environment Map" (string-append "" gimp-data-dir "/scripts/beavis.jpg")
SF-COLOR _"Highlight Balance" '(211 95 0)
SF-COLOR _"Chrome Balance" '(0 0 0)
SF-TOGGLE _"Chrome White Areas" TRUE)

View file

@ -67,13 +67,13 @@
(gimp-display-new img)))
(script-fu-register "script-fu-chrome-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Chrome..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Chrome..."
"Somewhat simplistic, but cool chromed logos"
"Spencer Kimball"
"Spencer Kimball & Peter Mattis"
"1997"
""
SF-STRING "Text String" "The GIMP"
SF-ADJUSTMENT "Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Bodoni-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Background Color" '(191 191 191))
SF-STRING _"Text" "The GIMP"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Bodoni-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(191 191 191))

View file

@ -121,7 +121,7 @@
(gimp-displays-flush))))
(script-fu-register "script-fu-circuit"
"<Image>/Script-Fu/Render/Circuit..."
_"<Image>/Script-Fu/Render/Circuit..."
"Fills the current selection with something that looks
vaguely like a circuit board."
"Adrian Likins <adrian@gimp.org>"
@ -130,8 +130,8 @@
"RGB* GRAY*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-VALUE "Oilify mask size" "17"
SF-VALUE "Circuit seed" "3"
SF-TOGGLE "No background? (only for seperate layer)" FALSE
SF-TOGGLE "Keep Selection?" TRUE
SF-TOGGLE "Seperate Layer?" TRUE)
SF-VALUE _"Oilify Mask Size" "17"
SF-VALUE _"Circuit Seed" "3"
SF-TOGGLE _"No Background (only for separate layer)" FALSE
SF-TOGGLE _"Keep Selection" TRUE
SF-TOGGLE _"Separate Layer" TRUE)

View file

@ -40,7 +40,7 @@
(script-fu-register "script-fu-clothify"
"<Image>/Script-Fu/Alchemy/Clothify..."
_"<Image>/Script-Fu/Alchemy/Clothify..."
"Render the specified text along the perimeter of a circle"
"Tim Newsome <drz@froody.bloke.com>"
"Tim Newsome"
@ -48,8 +48,8 @@
"RGB* GRAY*"
SF-IMAGE "Input Image" 0
SF-DRAWABLE "Input Drawable" 0
SF-VALUE "X Blur" "9"
SF-VALUE "Y Blur" "9"
SF-VALUE "Azimuth" "135"
SF-VALUE "Elevation" "45"
SF-VALUE "Depth" "3")
SF-VALUE _"Blur X" "9"
SF-VALUE _"Blur Y" "9"
SF-VALUE _"Azimuth" "135"
SF-VALUE _"Elevation" "45"
SF-VALUE _"Depth" "3")

View file

@ -58,7 +58,7 @@
(script-fu-register
"script-fu-coffee-stain"
"<Image>/Script-Fu/Decor/Coffee Stain..."
_"<Image>/Script-Fu/Decor/Coffee Stain..."
"Draws realistic looking coffee stains"
"Chris Gutteridge"
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
@ -66,6 +66,6 @@
"RGB*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-VALUE "Stains" "3"
SF-TOGGLE "Darken Only? (better but only for images with alot of white)" TRUE
SF-VALUE _"Stains" "3"
SF-TOGGLE _"Darken Only\n(Better, but only for Images with alot of White)" TRUE
)

View file

@ -210,7 +210,7 @@
(gimp-display-new image)))
(script-fu-register "script-fu-colorcycling-anim"
"<Image>/Script-Fu/Animators/Color Cycling..."
_"<Image>/Script-Fu/Animators/Color Cycling..."
"Creates an animation with the help of the alienmap plug-in"
"Daniel Cotting (cotting@mygale.org)"
"Daniel Cotting"
@ -218,32 +218,32 @@
"RGB*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-VALUE "Number of frames" "10"
SF-VALUE "Start: red intensity factor (max. 128)" "128"
SF-VALUE "Start: green intensity factor (max. 128)" "128"
SF-VALUE "Start: blue intensity factor (max. 128)" "128"
SF-VALUE "End: red intensity factor (max. 128)" "128"
SF-VALUE "End: green intensity factor (max. 128)" "128"
SF-VALUE "End: blue intensity factor (max. 128)" "128"
SF-VALUE "Red color mode (sin:0/cos:1/none:2)" "0"
SF-VALUE "Green color mode (sin:0/cos:1/none:2)" "0"
SF-VALUE "Blue color mode (sin:0/cos:1/none:2)" "0"
SF-TOGGLE "Red inversion before transformation" FALSE
SF-TOGGLE "Green inversion before transformation" FALSE
SF-TOGGLE "Blue inversion before transformation" FALSE
SF-VALUE "Start: red phase displacement (RAD)" "0"
SF-VALUE "Start: green phase displacement (RAD)" "0"
SF-VALUE "Start: blue phase displacement (RAD)" "0"
SF-VALUE "End: red phase displacement (RAD)" "0"
SF-VALUE "End: green phase displacement (RAD)" "0"
SF-VALUE "End: blue phase displacement (RAD)" "0"
SF-VALUE "Start: red frequency (> 0)" "1"
SF-VALUE "Start: green frequency (> 0)" "1"
SF-VALUE "Start: blue frequency (> 0)" "1"
SF-VALUE "End: red frequency (> 0)" "1"
SF-VALUE "End: green frequency (> 0)" "1"
SF-VALUE "End: blue frequency (> 0)" "1"
SF-TOGGLE "Red inversion after transformation" FALSE
SF-TOGGLE "Green inversion after transformation" FALSE
SF-TOGGLE "Blue inversion after transformation" FALSE)
SF-VALUE _"Number of Frames" "10"
SF-VALUE _"Start: Red Intensity Factor (max. 128)" "128"
SF-VALUE _"Start: Green Intensity Factor (max. 128)" "128"
SF-VALUE _"Start: Blue Intensity Factor (max. 128)" "128"
SF-VALUE _"End: Red Intensity Factor (max. 128)" "128"
SF-VALUE _"End: Green Intensity Factor (max. 128)" "128"
SF-VALUE _"End: Blue Intensity Factor (max. 128)" "128"
SF-VALUE _"Red Color Mode (sin:0/cos:1/none:2)" "0"
SF-VALUE _"Green Color Mode (sin:0/cos:1/none:2)" "0"
SF-VALUE _"Blue Color Mode (sin:0/cos:1/none:2)" "0"
SF-TOGGLE _"Red Inversion before Transformation" FALSE
SF-TOGGLE _"Green Inversion before Transformation" FALSE
SF-TOGGLE _"Blue Inversion before Transformation" FALSE
SF-VALUE _"Start: Red Phase Displacement (RAD)" "0"
SF-VALUE _"Start: Green Phase Displacement (RAD)" "0"
SF-VALUE _"Start: Blue Phase Displacement (RAD)" "0"
SF-VALUE _"End: Red Phase Displacement (RAD)" "0"
SF-VALUE _"End: Green Phase Displacement (RAD)" "0"
SF-VALUE _"End: Blue Phase Displacement (RAD)" "0"
SF-VALUE _"Start: Red Frequency (> 0)" "1"
SF-VALUE _"Start: Green Frequency (> 0)" "1"
SF-VALUE _"Start: Blue Frequency (> 0)" "1"
SF-VALUE _"End: Red Frequency (> 0)" "1"
SF-VALUE _"End: Green Frequency (> 0)" "1"
SF-VALUE _"End: Blue Frequency (> 0)" "1"
SF-TOGGLE _"Red Inversion after Transformation" FALSE
SF-TOGGLE _"Green Inversion after Transformation" FALSE
SF-TOGGLE _"Blue Inversion after Transformation" FALSE)

View file

@ -82,16 +82,16 @@
(script-fu-register "script-fu-comic-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Comic Book..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Comic Book..."
"Comic-book Style Logos"
"Brian McFee <keebler@wco.com>"
"Brian McFee"
"April 1998"
""
SF-STRING "Text String" "Moo"
SF-ADJUSTMENT "Font Size (pixels)" '(85 2 1000 1 10 0 1)
SF-FONT "Font" "-*-tribeca-*-i-*-*-24-*-*-*-p-*-*-*"
SF-GRADIENT "Gradient" "Incandescent"
SF-VALUE "Outline width" "5"
SF-COLOR "Outline color" '(255 255 255)
SF-COLOR "Background color" '(255 255 255))
SF-STRING _"Text" "Moo"
SF-ADJUSTMENT _"Font Size (pixels)" '(85 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-tribeca-*-i-*-*-24-*-*-*-p-*-*-*"
SF-GRADIENT _"Gradient" "Incandescent"
SF-VALUE _"Outline Width" "5"
SF-COLOR _"Outline Color" '(255 255 255)
SF-COLOR _"Background Color" '(255 255 255))

View file

@ -98,14 +98,14 @@
(script-fu-register "script-fu-cool-metal-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Cool Metal..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Cool Metal..."
"Metallic logos with reflections and perspective shadows"
"Spencer Kimball & Rob Malda"
"Spencer Kimball & Rob Malda"
"1997"
""
SF-STRING "Text String" "Cool Metal"
SF-ADJUSTMENT "Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Crillee-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Background Color" '(255 255 255)
SF-GRADIENT "Gradient" "Horizon_1")
SF-STRING _"Text" "Cool Metal"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Crillee-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(255 255 255)
SF-GRADIENT _"Gradient" "Horizon_1")

View file

@ -71,7 +71,7 @@
(gimp-displays-flush)))
(script-fu-register "script-fu-copy-visible"
"<Image>/Edit/Copy Visible"
_"<Image>/Edit/Copy Visible"
"Copy the visible selction"
"Sven Neumann <sven@gimp.org>, Adrian Likins <adrian@gimp.org>"
"Sven Neumann, Adrian Likins"

View file

@ -187,17 +187,15 @@
(script-fu-register "script-fu-crystal-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Crystal..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Crystal..."
"Crystal/Gel effect which displaces the image underneath"
"Spencer Kimball"
"Spencer Kimball"
"1997"
""
SF-VALUE "Chrome Factor" "1.0"
SF-STRING "Text String" "Crystal"
SF-ADJUSTMENT "Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Engraver-*-r-*-*-24-*-*-*-p-*-*-*"
; SF-STRING "Background Img" (string-append "" gimp-data-dir "/scripts/texture1.jpg")
SF-FILENAME "Background Img" (string-append "" gimp-data-dir "/scripts/texture1.jpg")
; SF-STRING "Environment Map" (string-append "" gimp-data-dir "/scripts/beavis.jpg"))
SF-FILENAME "Environment Map" (string-append "" gimp-data-dir "/scripts/beavis.jpg"))
SF-VALUE _"Chrome Factor" "1.0"
SF-STRING _"Text" "Crystal"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Engraver-*-r-*-*-24-*-*-*-p-*-*-*"
SF-FILENAME _"Background Image" (string-append "" gimp-data-dir "/scripts/texture1.jpg")
SF-FILENAME _"Environment Map" (string-append "" gimp-data-dir "/scripts/beavis.jpg"))

View file

@ -88,7 +88,7 @@
(script-fu-register
"script-fu-distress-selection"
"<Image>/Script-Fu/Selection/Distress Selection..."
_"<Image>/Script-Fu/Selection/Distress Selection..."
"No description"
"Chris Gutteridge"
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
@ -96,10 +96,10 @@
"RGB*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-VALUE "Threshold (bigger 1<-->255 smaller)" "127"
SF-VALUE "Spread" "8"
SF-VALUE "Granularity (1 is low)" "4"
SF-VALUE "Smooth" "2"
SF-TOGGLE "Smooth Horizontally?" TRUE
SF-TOGGLE "Smooth Vertically?" TRUE
SF-VALUE _"Threshold (Bigger 1<-->255 Smaller)" "127"
SF-VALUE _"Spread" "8"
SF-VALUE _"Granularity (1 is Low)" "4"
SF-VALUE _"Smooth" "2"
SF-TOGGLE _"Smooth Horizontally" TRUE
SF-TOGGLE _"Smooth Vertically" TRUE
)

View file

@ -88,7 +88,7 @@
(script-fu-register
"script-fu-distress-selection"
"<Image>/Script-Fu/Selection/Distress Selection..."
_"<Image>/Script-Fu/Selection/Distress Selection..."
"No description"
"Chris Gutteridge"
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
@ -96,10 +96,10 @@
"RGB*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-VALUE "Threshold (bigger 1<-->255 smaller)" "127"
SF-VALUE "Spread" "8"
SF-VALUE "Granularity (1 is low)" "4"
SF-VALUE "Smooth" "2"
SF-TOGGLE "Smooth Horizontally?" TRUE
SF-TOGGLE "Smooth Vertically?" TRUE
SF-VALUE _"Threshold (Bigger 1<-->255 Smaller)" "127"
SF-VALUE _"Spread" "8"
SF-VALUE _"Granularity (1 is Low)" "4"
SF-VALUE _"Smooth" "2"
SF-TOGGLE _"Smooth Horizontally" TRUE
SF-TOGGLE _"Smooth Vertically" TRUE
)

View file

@ -156,7 +156,7 @@
(gimp-displays-flush)))
(script-fu-register "script-fu-drop-shadow"
"<Image>/Script-Fu/Shadow/Drop-Shadow..."
_"<Image>/Script-Fu/Shadow/Drop-Shadow..."
"Add a drop-shadow of the current selection or alpha-channel"
"Sven Neumann <sven@gimp.org>"
"Sven Neumann"
@ -164,9 +164,9 @@
"RGB* GRAY*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "X Offset" '(8 -4096 4096 1 10 0 1)
SF-ADJUSTMENT "Y Offset" '(8 -4096 4096 1 10 0 1)
SF-ADJUSTMENT "Blur Radius" '(15 0 1024 1 10 0 1)
SF-COLOR "Color" '(0 0 0)
SF-ADJUSTMENT "Opacity" '(80 0 100 1 10 0 0)
SF-TOGGLE "Allow Resizing" TRUE)
SF-ADJUSTMENT _"Offset X" '(8 -4096 4096 1 10 0 1)
SF-ADJUSTMENT _"Offset Y" '(8 -4096 4096 1 10 0 1)
SF-ADJUSTMENT _"Blur Radius" '(15 0 1024 1 10 0 1)
SF-COLOR _"Color" '(0 0 0)
SF-ADJUSTMENT _"Opacity" '(80 0 100 1 10 0 0)
SF-TOGGLE _"Allow Resizing" TRUE)

View file

@ -21,7 +21,7 @@
(gimp-displays-flush)))
(script-fu-register "script-fu-erase-rows"
"<Image>/Script-Fu/Alchemy/Erase every other Row..."
_"<Image>/Script-Fu/Alchemy/Erase every other Row..."
"Erase every other row/column with the background color"
"Federico Mena Quintero"
"Federico Mena Quintero"
@ -29,5 +29,5 @@
"RGB* GRAY* INDEXED*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-VALUE "Rows/cols" "'rows"
SF-VALUE "Even/odd" "'even")
SF-VALUE _"Rows/Cols" "'rows"
SF-VALUE _"Even/Odd" "'even")

View file

@ -186,7 +186,7 @@
(script-fu-register
"script-fu-fade-outline"
"<Image>/Script-Fu/Selection/Fade Outline..."
_"<Image>/Script-Fu/Selection/Fade Outline..."
"Blend the Layers outline border from one alpha value (opaque) to another (transparent) by generating a Layermask"
"Wolfgang Hofer <hof@hotbot.com>"
"Wolfgang Hofer"
@ -194,10 +194,10 @@
"RGB* GRAY*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-VALUE "Border Size" "10"
SF-VALUE "Fade From (100%-0%)" "100"
SF-VALUE "Fade To (0%-100%)" "0"
SF-TOGGLE "Use Growing Selection?" FALSE
SF-TOGGLE "Apply generated Layermask?" FALSE
SF-TOGGLE "Clear unselected Maskarea?" TRUE
SF-VALUE _"Border Size" "10"
SF-VALUE _"Fade From (100%-0%)" "100"
SF-VALUE _"Fade To (0%-100%)" "0"
SF-TOGGLE _"Use Growing Selection" FALSE
SF-TOGGLE _"Apply Generated Layermask" FALSE
SF-TOGGLE _"Clear Unselected Maskarea" TRUE
)

View file

@ -55,15 +55,15 @@
))
(script-fu-register "script-fu-flatland"
"<Toolbox>/Xtns/Script-Fu/Patterns/Flatland..."
_"<Toolbox>/Xtns/Script-Fu/Patterns/Flatland..."
"A Land Pattern"
"Adrian Likins <aklikins@eos.ncsu.edu>"
"Adrian Likins"
"1997"
""
SF-VALUE "Image Width" "256"
SF-VALUE "Image Height" "256"
SF-VALUE "Random Seed" "80"
SF-VALUE "Detail Level" "3.0"
SF-VALUE "X Scale" "4"
SF-VALUE "Y Scale" "4")
SF-VALUE _"Image Width" "256"
SF-VALUE _"Image Height" "256"
SF-VALUE _"Random Seed" "80"
SF-VALUE _"Detail Level" "3.0"
SF-VALUE _"Scale X" "4"
SF-VALUE _"Scale Y" "4")

View file

@ -61,13 +61,13 @@
(gimp-display-new img)))
(script-fu-register "script-fu-font-map"
"<Toolbox>/Xtns/Script-Fu/Utils/Font Map..."
_"<Toolbox>/Xtns/Script-Fu/Utils/Font Map..."
"Generate a listing of the specified fonts"
"Spencer Kimball"
"Spencer Kimball"
"1997"
""
SF-VALUE "Fonts" "'(\"Agate\" \"AlfredDrake\" \"Becker\" \"Blippo\" \"Bodoni\" \"Dragonwick\" \"Engraver\" \"Futura_Poster\" \"RoostHeavy\")"
SF-ADJUSTMENT "Font Size (pixels)" '(32 2 1000 1 10 0 1)
SF-VALUE "Border" "10"
SF-VALUE _"Fonts" "'(\"Agate\" \"AlfredDrake\" \"Becker\" \"Blippo\" \"Bodoni\" \"Dragonwick\" \"Engraver\" \"Futura_Poster\" \"RoostHeavy\")"
SF-ADJUSTMENT _"Font Size (pixels)" '(32 2 1000 1 10 0 1)
SF-VALUE _"Border" "10"
)

View file

@ -76,13 +76,13 @@
(gimp-display-new img)))
(script-fu-register "script-fu-frosty-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Frosty..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Frosty..."
"Frozen logos with drop shadows"
"Spencer Kimball & Ed Mackey"
"Spencer Kimball & Ed Mackey"
"1997"
""
SF-STRING "Text String" "The GIMP"
SF-ADJUSTMENT "Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Becker-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Background Color" '(255 255 255))
SF-STRING _"Text" "The GIMP"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Becker-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(255 255 255))

View file

@ -148,7 +148,7 @@
(script-fu-register
"script-fu-fuzzy-border"
"<Image>/Script-Fu/Decor/Fuzzy Border..."
_"<Image>/Script-Fu/Decor/Fuzzy Border..."
"Fade border to chosen color"
"Chris Gutteridge"
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
@ -156,12 +156,12 @@
"RGB* GRAY*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-COLOR "Color" '(255 255 255)
SF-VALUE "Border Size" "16"
SF-TOGGLE "Blur Border?" TRUE
SF-VALUE "Granularity (1 is low)" "4"
SF-TOGGLE "Add Shadow?" FALSE
SF-ADJUSTMENT "Shadow-Weight (%)" '(100 0 100 1 10 0 0)
SF-TOGGLE "Work on Copy?" TRUE
SF-TOGGLE "Flatten Layers?" TRUE
SF-COLOR _"Color" '(255 255 255)
SF-VALUE _"Border Size" "16"
SF-TOGGLE _"Blur Border" TRUE
SF-VALUE _"Granularity (1 is Low)" "4"
SF-TOGGLE _"Add Shadow" FALSE
SF-ADJUSTMENT _"Shadow Weight (%)" '(100 0 100 1 10 0 0)
SF-TOGGLE _"Work on Copy" TRUE
SF-TOGGLE _"Flatten Image" TRUE
)

View file

@ -134,41 +134,41 @@
(script-fu-register "script-fu-big-header-gimp-org"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Big Header..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Big Header..."
"Big Gimp.org Header"
"Adrian Likins & Jens Lautenbacher"
"Adrian Likins & Jens Lautenbacher"
"1997"
""
SF-STRING "Text String" "gimp.org"
SF-FONT "Font" "-*-times-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Font Size (pixels)" '(50 2 1000 1 10 0 1)
SF-COLOR "Text Color" '(82 108 159)
SF-COLOR "Higlight Color" '(190 220 250)
SF-COLOR "Dark Color" '(46 74 92)
SF-COLOR "Shadow Color" '(0 0 0)
SF-TOGGLE "AutoCrop?" TRUE
SF-TOGGLE "Remove Background" TRUE
SF-TOGGLE "Index image?" TRUE
SF-VALUE "# of colors" "15")
SF-STRING _"Text" "gimp.org"
SF-FONT _"Font" "-*-times-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(50 2 1000 1 10 0 1)
SF-COLOR _"Text Color" '(82 108 159)
SF-COLOR _"Higlight Color" '(190 220 250)
SF-COLOR _"Dark Color" '(46 74 92)
SF-COLOR _"Shadow Color" '(0 0 0)
SF-TOGGLE _"AutoCrop" TRUE
SF-TOGGLE _"Remove Background" TRUE
SF-TOGGLE _"Index Image" TRUE
SF-VALUE "Number of Colors" "15")
(script-fu-register "script-fu-small-header-gimp-org"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Small Header..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Small Header..."
"Small Gimp.org Header"
"Adrian Likins & Jens Lautenbacher"
"Adrian Likins & Jens Lautenbacher"
"1997"
""
SF-STRING "Text String" "gimp.org"
SF-FONT "Font" "-*-helvetica-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Font Size (pixels)" '(24 2 1000 1 10 0 1)
SF-COLOR "Text Color" '(135 220 220)
SF-COLOR "Higlight Color" '(210 240 245)
SF-COLOR "Dark Color" '(46 74 92)
SF-COLOR "Shadow Color" '(0 0 0)
SF-TOGGLE "AutoCrop?" TRUE
SF-TOGGLE "Remove Background" TRUE
SF-TOGGLE "Index image?" TRUE
SF-VALUE "# of colors" "15"
SF-VALUE "select-by-color threshold" "1")
SF-STRING _"Text" "gimp.org"
SF-FONT _"Font" "-*-helvetica-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(24 2 1000 1 10 0 1)
SF-COLOR _"Text Color" '(135 220 220)
SF-COLOR _"Higlight Color" '(210 240 245)
SF-COLOR _"Dark Color" '(46 74 92)
SF-COLOR _"Shadow Color" '(0 0 0)
SF-TOGGLE _"AutoCrop" TRUE
SF-TOGGLE _"Remove Background" TRUE
SF-TOGGLE _"Index Image" TRUE
SF-VALUE _"Number of Colors" "15"
SF-VALUE _"Select-By-Color Threshold" "1")

View file

@ -105,56 +105,56 @@
(script-fu-register "script-fu-tube-button-label-gimp-org"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Tube Button Label..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Tube Button Label..."
"Tube Button Label Header for gimp.org"
"Adrian Likins & Jens Lautenbacher"
"Adrian Likins & Jens Lautenbacher"
"1997"
""
SF-STRING "Text String" "?"
SF-TOGGLE "Remove Background" TRUE
SF-TOGGLE "Index Image" TRUE)
SF-STRING _"Text" "?"
SF-TOGGLE _"Remove Background" TRUE
SF-TOGGLE _"Index Image" TRUE)
(script-fu-register "script-fu-tube-subbutton-label-gimp-org"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Tube Sub-Button Label..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Tube Sub-Button Label..."
"Tube Button Label Header for gimp.org"
"Adrian Likins & Jens Lautenbacher"
"Adrian Likins & Jens Lautenbacher"
"1997"
""
SF-STRING "Text String" "?"
SF-TOGGLE "Remove Background" TRUE
SF-TOGGLE "Index Image" TRUE)
SF-STRING _"Text" "?"
SF-TOGGLE _"Remove Background" TRUE
SF-TOGGLE _"Index Image" TRUE)
(script-fu-register "script-fu-tube-subsubbutton-label-gimp-org"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Tube Sub-Sub-Button Label..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Tube Sub-Sub-Button Label..."
"Tube Button Label Header for gimp.org"
"Adrian Likins & Jens Lautenbacher"
"Adrian Likins & Jens Lautenbacher"
"1997"
""
SF-STRING "Text String" "?"
SF-TOGGLE "Remove Background" TRUE
SF-TOGGLE "Index Image" TRUE)
SF-STRING _"Text" "?"
SF-TOGGLE _"Remove Background" TRUE
SF-TOGGLE _"Index Image" TRUE)
(script-fu-register "script-fu-labels-gimp-org"
"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/General Tube Labels..."
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/General Tube Labels..."
"Tube Button Label Header for gimp.org"
"Adrian Likins & Jens Lautenbacher"
"Adrian Likins & Jens Lautenbacher"
"1997"
""
SF-STRING "Text String" "Gimp.Org"
SF-FONT "Font" "-*-helvetica-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Font Size (pixels)" '(18 2 1000 1 10 0 1)
SF-COLOR "Text Color" '(130 165 235)
SF-COLOR "Shadow Color" '(0 0 0)
SF-COLOR "Background Color" '(255 255 255)
SF-TOGGLE "Remove Background" TRUE
SF-TOGGLE "Index Image" TRUE
SF-VALUE "# of colors" "15"
SF-VALUE "select-by-color threshold" "1"
SF-VALUE "Y-Offset" "8"
SF-VALUE "X-Offset" "0"
SF-VALUE "Height" "30")
SF-STRING _"Text" "Gimp.Org"
SF-FONT _"Font" "-*-helvetica-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(18 2 1000 1 10 0 1)
SF-COLOR _"Text Color" '(130 165 235)
SF-COLOR _"Shadow Color" '(0 0 0)
SF-COLOR _"Background Color" '(255 255 255)
SF-TOGGLE _"Remove Background" TRUE
SF-TOGGLE _"Index Image" TRUE
SF-VALUE _"Number of Colors" "15"
SF-VALUE _"Select-By-Color Threshold" "1"
SF-VALUE _"Offset X" "8"
SF-VALUE _"Offset Y" "0"
SF-VALUE _"Height" "30")

View file

@ -118,29 +118,29 @@
(gimp-display-new img)))
(script-fu-register "script-fu-glossy-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Glossy..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Glossy..."
"Creates anything you can create with it :)"
"Hrvoje Horvat (hhorvat@open.hr)"
"Hrvoje Horvat"
"14/04/1998"
""
SF-STRING "Text String" "Galaxy"
SF-ADJUSTMENT "Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Eras-*-r-*-*-24-*-*-*-p-*-*-*"
SF-GRADIENT "Blend Gradient (text)" "Shadows_2"
SF-GRADIENT "Blend Gradient (outline)" "Shadows_2"
SF-VALUE "How big outline?" "5"
SF-COLOR "Background Color" '(255 255 255)
SF-TOGGLE "Use pattern for text instead of gradient" FALSE
SF-PATTERN "Pattern (text)" "Electric Blue"
SF-TOGGLE "Use pattern for outline instead of gradient" FALSE
SF-PATTERN "Pattern (outline)" "Electric Blue"
SF-TOGGLE "Use pattern overlay" FALSE
SF-PATTERN "Pattern (overlay)" "Parque #1"
SF-TOGGLE "Default bump-map settings" TRUE
SF-TOGGLE "Shadow?" TRUE
SF-VALUE "Shadow X offset" "8"
SF-VALUE "Shadow Y offset" "8"
SF-TOGGLE "Flatten image?" FALSE)
SF-STRING _"Text" "Galaxy"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Eras-*-r-*-*-24-*-*-*-p-*-*-*"
SF-GRADIENT _"Blend Gradient (Text)" "Shadows_2"
SF-GRADIENT _"Blend Gradient (Outline)" "Shadows_2"
SF-VALUE _"Outline Size" "5"
SF-COLOR _"Background Color" '(255 255 255)
SF-TOGGLE _"Use Pattern for Text instead of Gradient" FALSE
SF-PATTERN _"Pattern (Text)" "Electric Blue"
SF-TOGGLE _"Use Pattern for Outline instead of Gradient" FALSE
SF-PATTERN _"Pattern (Outline)" "Electric Blue"
SF-TOGGLE _"Use Pattern Overlay" FALSE
SF-PATTERN _"Pattern (Overlay)" "Parque #1"
SF-TOGGLE _"Default Bumpmap Settings" TRUE
SF-TOGGLE _"Shadow" TRUE
SF-VALUE _"Shadow X Offset" "8"
SF-VALUE _"Shadow Y Offset" "8"
SF-TOGGLE _"Flatten Image" FALSE)

View file

@ -58,13 +58,13 @@
(script-fu-register "script-fu-glowing-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Glowing Hot..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Glowing Hot..."
"Glowing hot logos"
"Spencer Kimball"
"Spencer Kimball"
"1997"
""
SF-STRING "Text String" "GLOWING"
SF-ADJUSTMENT "Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Slogan-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Background Color" '(7 0 20))
SF-STRING _"Text" "GLOWING"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Slogan-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(7 0 20))

View file

@ -72,15 +72,15 @@
(script-fu-register "script-fu-gradient-bevel-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Gradient Bevel..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Gradient Bevel..."
"Makes Shiny Bevelly text"
"Brian McFee <keebler@wco.com>"
"Brian McFee"
"April 1998"
""
SF-STRING "Text String" "Moo"
SF-ADJUSTMENT "Font Size (pixels)" '(90 2 1000 1 10 0 1)
SF-FONT "Font" "-*-futura_poster-*-r-*-*-24-*-*-*-p-*-*-*"
SF-VALUE "Bevel Height (sharpness)" "40"
SF-VALUE "Bevel Width" "2.5"
SF-COLOR "Background Color" '(255 255 255))
SF-STRING _"Text" "Moo"
SF-ADJUSTMENT _"Font Size (pixels)" '(90 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-futura_poster-*-r-*-*-24-*-*-*-p-*-*-*"
SF-VALUE _"Bevel Height (Sharpness)" "40"
SF-VALUE _"Bevel Width" "2.5"
SF-COLOR _"Background Color" '(255 255 255))

View file

@ -54,11 +54,11 @@
(gimp-display-new img)))
(script-fu-register "script-fu-gradient-example"
"<Toolbox>/Xtns/Script-Fu/Utils/Custom Gradient..."
_"<Toolbox>/Xtns/Script-Fu/Utils/Custom Gradient..."
"Create an example image of a custom gradient"
"Federico Mena Quintero"
"Federico Mena Quintero"
"June 1997"
""
SF-VALUE "Width" "400"
SF-VALUE "Height" "32")
SF-VALUE _"Width" "400"
SF-VALUE _"Height" "32")

View file

@ -72,7 +72,7 @@
(gimp-displays-flush)))
(script-fu-register "script-fu-grid-system"
"<Image>/Script-Fu/Render/Make Grid System..."
_"<Image>/Script-Fu/Render/Make Grid System..."
"Draw grid as specified by X-DIVIDES (list of propotions relative to the drawable) and Y-DIVIDES. The color and width of grid is detemined by the current settings of brush."
"Shuji Narazaki <narazaki@InetQ.or.jp>"
"Shuji Narazaki"
@ -80,8 +80,8 @@
"RGB*, INDEXED*, GRAY*"
SF-IMAGE "Image to use" 0
SF-DRAWABLE "Drawable to draw grid" 0
SF-VALUE "Grids: X" script-fu-grid-system-x-divides
SF-VALUE "Grids: Y" script-fu-grid-system-y-divides
SF-VALUE _"Grids X" script-fu-grid-system-x-divides
SF-VALUE _"Grids Y" script-fu-grid-system-y-divides
)
;;; grid-system.scm ends here

View file

@ -337,7 +337,7 @@
(script-fu-register
"script-fu-hsv-graph"
"<Image>/Script-Fu/Utils/Draw HSV Graph..."
_"<Image>/Script-Fu/Utils/Draw HSV Graph..."
"Draph the graph of H/S/V values on the drawable"
"Shuji Narazaki <narazaki@InetQ.or.jp>"
"Shuji Narazaki"
@ -345,14 +345,14 @@
"RGB*"
SF-IMAGE "Image to analyze" 0
SF-DRAWABLE "Drawable to analyze" 0
SF-VALUE "Graph Scale" (number->string script-fu-hsv-graph-scale)
SF-VALUE "BG Opacity" (number->string script-fu-hsv-graph-opacity)
SF-TOGGLE "Use Selection Bounds instead of belows" script-fu-hsv-graph-bounds?
SF-TOGGLE "from Top-Left to Bottom-Right" script-fu-hsv-graph-left2right?
SF-VALUE "Start X" (number->string script-fu-hsv-graph-beg-x)
SF-VALUE "Start Y" (number->string script-fu-hsv-graph-beg-y)
SF-VALUE "End X" (number->string script-fu-hsv-graph-end-x)
SF-VALUE "End Y" (number->string script-fu-hsv-graph-end-y)
SF-VALUE _"Graph Scale" (number->string script-fu-hsv-graph-scale)
SF-VALUE _"BG Opacity" (number->string script-fu-hsv-graph-opacity)
SF-TOGGLE _"Use Selection Bounds Instead of Belows" script-fu-hsv-graph-bounds?
SF-TOGGLE _"From Top-Left to Bottom-Right" script-fu-hsv-graph-left2right?
SF-VALUE _"Start X" (number->string script-fu-hsv-graph-beg-x)
SF-VALUE _"Start Y" (number->string script-fu-hsv-graph-beg-y)
SF-VALUE _"End X" (number->string script-fu-hsv-graph-end-x)
SF-VALUE _"End Y" (number->string script-fu-hsv-graph-end-y)
)
;;; hsv-graph.scm ends here

View file

@ -86,17 +86,17 @@
(script-fu-register "script-fu-i26-gunya2"
"<Toolbox>/Xtns/Script-Fu/Logos/Imigre-26..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Imigre-26..."
"Two-colored text by hand"
"Shuji Narazaki"
"Shuji Narazaki"
"1997"
""
SF-STRING "Text" "The GIMP"
SF-COLOR "Text Color" '(255 0 0)
SF-COLOR "Frame Color" '(0 34 255)
SF-FONT "Font" "-*-Becker-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-VALUE "Frame Size" "2")
SF-STRING _"Text" "The GIMP"
SF-COLOR _"Text Color" '(255 0 0)
SF-COLOR _"Frame Color" '(0 34 255)
SF-FONT _"Font" "-*-Becker-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-VALUE _"Frame Size" "2")
;;; i26-gunya2.scm ends here

View file

@ -135,7 +135,7 @@
(script-fu-register
"script-fu-show-image-structure"
"<Image>/Script-Fu/Utils/Show Image Structure..."
_"<Image>/Script-Fu/Utils/Show Image Structure..."
"Show the layer structure of the image"
"Shuji Narazaki <narazaki@InetQ.or.jp>"
"Shuji Narazaki"
@ -143,17 +143,17 @@
"RGB*, GRAY*"
SF-IMAGE "image" 0
SF-DRAWABLE "Drawable (unused)" 0
SF-TOGGLE "Make new image" script-fu-show-image-structure-new-image?
SF-VALUE "Space between layers" (number->string script-fu-show-image-structure-space)
SF-VALUE "Shear length (> 0)" (number->string script-fu-show-image-structure-shear-length)
SF-VALUE "Outer Border (>= 0)" (number->string script-fu-show-image-structure-border)
SF-TOGGLE "Apply layer mask (or discard)" script-fu-show-image-structure-apply-layer-mask?
SF-TOGGLE "Insert layer names" script-fu-show-image-structure-with-layer-name?
SF-TOGGLE "Padding for transparent regions" script-fu-show-image-structure-with-pad?
SF-COLOR "Pad Color" script-fu-show-image-structure-padding-color
SF-VALUE "Pad Opacity [0:100]" (number->string script-fu-show-image-structure-padding-opacity)
SF-TOGGLE "Make New Background" script-fu-show-image-structure-with-background?
SF-COLOR "Background Color" script-fu-show-image-structure-background-color
SF-TOGGLE _"Create New Image" script-fu-show-image-structure-new-image?
SF-VALUE _"Space Between Layers" (number->string script-fu-show-image-structure-space)
SF-VALUE _"Shear Length (> 0)" (number->string script-fu-show-image-structure-shear-length)
SF-VALUE _"Outer Border (>= 0)" (number->string script-fu-show-image-structure-border)
SF-TOGGLE _"Apply Layer Mask (or discard)" script-fu-show-image-structure-apply-layer-mask?
SF-TOGGLE _"Insert Layer Names" script-fu-show-image-structure-with-layer-name?
SF-TOGGLE _"Padding for Transparent Regions" script-fu-show-image-structure-with-pad?
SF-COLOR _"Pad Color" script-fu-show-image-structure-padding-color
SF-VALUE _"Pad Opacity [0:100]" (number->string script-fu-show-image-structure-padding-opacity)
SF-TOGGLE _"Make New Background" script-fu-show-image-structure-with-background?
SF-COLOR _"Background Color" script-fu-show-image-structure-background-color
)
;;; image-structure.scm ends here

View file

@ -66,18 +66,18 @@
))
(script-fu-register "script-fu-land"
"<Toolbox>/Xtns/Script-Fu/Patterns/Land..."
_"<Toolbox>/Xtns/Script-Fu/Patterns/Land..."
"A Topgraphic map pattern"
"Adrian Likins <aklikins@eos.ncsu.edu>"
"Adrian Likins"
"1997"
""
SF-VALUE "Image Width" "256"
SF-VALUE "Image Height" "256"
SF-VALUE "Random Seed" "32"
SF-VALUE "Detail Level" "4"
SF-VALUE "Land height" "60"
SF-VALUE "Sea depth" "4"
SF-VALUE "X Scale" "4.0"
SF-VALUE "Y Scale" "4.0"
SF-GRADIENT "gradient" "Land_1")
SF-VALUE _"Image Width" "256"
SF-VALUE _"Image Height" "256"
SF-VALUE _"Random Seed" "32"
SF-VALUE _"Detail Level" "4"
SF-VALUE _"Land Height" "60"
SF-VALUE _"Sea Septh" "4"
SF-VALUE _"Scale X" "4.0"
SF-VALUE _"Scale Y" "4.0"
SF-GRADIENT _"Gradient" "Land_1")

View file

@ -99,7 +99,7 @@
(gimp-displays-flush)))
(script-fu-register "script-fu-lava"
"<Image>/Script-Fu/Render/Lava..."
_"<Image>/Script-Fu/Render/Lava..."
"Fills the current selection with lava."
"Adrian Likins <adrian@gimp.org>"
"Adrian Likins"
@ -107,10 +107,10 @@
"RGB* GRAY*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-VALUE "Seed" "2"
SF-VALUE "Size" "10"
SF-VALUE "Roughness" "7"
SF-GRADIENT "Gradient" "German_flag_smooth"
SF-TOGGLE "Keep Selection?" TRUE
SF-TOGGLE "Seperate Layer?" TRUE
SF-TOGGLE "Use current Gradient?" FALSE)
SF-VALUE _"Seed" "2"
SF-VALUE _"Size" "10"
SF-VALUE _"Roughness" "7"
SF-GRADIENT _"Gradient" "German_flag_smooth"
SF-TOGGLE _"Keep Selection" TRUE
SF-TOGGLE _"Seperate Layer" TRUE
SF-TOGGLE _"Use Current Gradient" FALSE)

View file

@ -71,7 +71,7 @@
(script-fu-register
"script-fu-line-nova"
"<Image>/Script-Fu/Render/Line Nova..."
_"<Image>/Script-Fu/Render/Line Nova..."
"Line Nova. Draw lines with Foreground color from the center of image to the edges. 1st undo cancels bucket-fill. 2nd undo gets orignal selection."
"Shuji Narazaki <narazaki@gimp.org>"
"Shuji Narazaki"
@ -79,9 +79,9 @@
""
SF-IMAGE "Image to use" 0
SF-DRAWABLE "Drawable to draw line" 0
SF-ADJUSTMENT "Number of lines" '(200 40 1000 1 1 0 1)
SF-ADJUSTMENT "Sharpness (deg.)" '(1.0 0.0 10.0 0.1 1 1 1)
SF-ADJUSTMENT "Offset radius" '(100 0 2000 1 1 0 1)
SF-ADJUSTMENT "- randomness" '(30 0 2000 1 1 0 1)
SF-ADJUSTMENT _"Number of Lines" '(200 40 1000 1 1 0 1)
SF-ADJUSTMENT _"Sharpness (degrees)" '(1.0 0.0 10.0 0.1 1 1 1)
SF-ADJUSTMENT _"Offset radius" '(100 0 2000 1 1 0 1)
SF-ADJUSTMENT _"Randomness" '(30 0 2000 1 1 0 1)
)
;;; line-nova.scm ends here

View file

@ -77,16 +77,16 @@
; Register with the PDB
(script-fu-register "script-fu-make-brush-rectangular"
"<Toolbox>/Xtns/Script-Fu/Make Brush/Rectangular..."
_"<Toolbox>/Xtns/Script-Fu/Make Brush/Rectangular..."
"Create size of brush"
"Seth Burgess <sjburges@ou.edu>"
"Seth Burgess"
"1997"
""
SF-STRING "Description" "Rectangle"
SF-VALUE "Width" "20"
SF-VALUE "Height" "20"
SF-VALUE "Spacing" "20"
SF-STRING _"Description" "Rectangle"
SF-VALUE _"Width" "20"
SF-VALUE _"Height" "20"
SF-VALUE _"Spacing" "20"
)
@ -155,17 +155,17 @@
; Register with the PDB
(script-fu-register "script-fu-make-brush-rectangular-feathered"
"<Toolbox>/Xtns/Script-Fu/Make Brush/Rectangular, Feathered..."
_"<Toolbox>/Xtns/Script-Fu/Make Brush/Rectangular, Feathered..."
"Create size of brush"
"Seth Burgess <sjburges@ou.edu>"
"Seth Burgess"
"1997"
""
SF-STRING "Description" "Rectangle"
SF-VALUE "Width" "20"
SF-VALUE "Height" "20"
SF-VALUE "Feathering" "4"
SF-VALUE "Spacing" "25"
SF-STRING _"Description" "Rectangle"
SF-VALUE _"Width" "20"
SF-VALUE _"Height" "20"
SF-VALUE _"Feathering" "4"
SF-VALUE _"Spacing" "25"
)
(define (script-fu-make-brush-elliptical description width height spacing)
@ -226,16 +226,16 @@
; Register with the PDB
(script-fu-register "script-fu-make-brush-elliptical"
"<Toolbox>/Xtns/Script-Fu/Make Brush/Elliptical..."
_"<Toolbox>/Xtns/Script-Fu/Make Brush/Elliptical..."
"Create size of brush"
"Seth Burgess <sjburges@ou.edu>"
"Seth Burgess"
"1997"
""
SF-STRING "Description" "Ellipse"
SF-VALUE "Width" "20"
SF-VALUE "Height" "20"
SF-VALUE "Spacing" "25"
SF-STRING _"Description" "Ellipse"
SF-VALUE _"Width" "20"
SF-VALUE _"Height" "20"
SF-VALUE _"Spacing" "25"
)
@ -306,15 +306,15 @@
; Register with the PDB
(script-fu-register "script-fu-make-brush-elliptical-feathered"
"<Toolbox>/Xtns/Script-Fu/Make Brush/Elliptical, Feathered..."
_"<Toolbox>/Xtns/Script-Fu/Make Brush/Elliptical, Feathered..."
"Makes a feathered elliptical brush of specified size"
"Seth Burgess <sjburges@ou.edu>"
"Seth Burgess"
"1997"
""
SF-STRING "Description" "Ellipse"
SF-VALUE "Width" "20"
SF-VALUE "Height" "20"
SF-VALUE "Feathering" "4"
SF-VALUE "Spacing" "25"
SF-STRING _"Description" "Ellipse"
SF-VALUE _"Width" "20"
SF-VALUE _"Height" "20"
SF-VALUE _"Feathering" "4"
SF-VALUE _"Spacing" "25"
)

View file

@ -165,15 +165,15 @@
(script-fu-register "script-fu-neon-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Neon..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Neon..."
"Neon logos"
"Spencer Kimball"
"Spencer Kimball"
"1997"
""
SF-STRING "Text String" "NEON"
SF-ADJUSTMENT "Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT "Font" "-*-Blippo-*-*-*-*-24-*-*-*-*-*-*-*"
SF-COLOR "Background Color" '(0 0 0)
SF-COLOR "Glow Color" '(38 211 255)
SF-TOGGLE "Create Shadow?" FALSE)
SF-STRING _"Text" "NEON"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-Blippo-*-*-*-*-24-*-*-*-*-*-*-*"
SF-COLOR _"Background Color" '(0 0 0)
SF-COLOR _"Glow Color" '(38 211 255)
SF-TOGGLE _"Create Shadow" FALSE)

View file

@ -61,16 +61,16 @@
(gimp-display-new img)))
(script-fu-register "script-fu-newsprint-text"
"<Toolbox>/Xtns/Script-Fu/Logos/Newsprint Text..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Newsprint Text..."
"Apply a screen to text"
"Austin Donnelly"
"Austin Donnelly"
"1998"
""
SF-STRING "Text String" "Newsprint"
SF-FONT "Font" "-*-Helvetica-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-VALUE "Cell size (in pixels)" "7"
SF-ADJUSTMENT "Density (%)" '(60 0 100 1 10 0 0)
SF-COLOR "Text Color" '(0 0 0)
SF-COLOR "Background Color" '(255 255 255))
SF-STRING _"Text" "Newsprint"
SF-FONT _"Font" "-*-Helvetica-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-VALUE _"Cell Size (pixels)" "7"
SF-ADJUSTMENT _"Density (%)" '(60 0 100 1 10 0 0)
SF-COLOR _"Text Color" '(0 0 0)
SF-COLOR _"Background Color" '(255 255 255))

View file

@ -79,7 +79,7 @@
(script-fu-register
"script-fu-old-photo"
"<Image>/Script-Fu/Decor/Old Photo..."
_"<Image>/Script-Fu/Decor/Old Photo..."
"Makes the image look like an old photo"
"Chris Gutteridge"
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
@ -87,9 +87,9 @@
"RGB* GRAY*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-TOGGLE "Defocus?" TRUE
SF-TOGGLE "Border?" TRUE
SF-TOGGLE "Sepia?" TRUE
SF-TOGGLE "Mottle?" FALSE
SF-TOGGLE "Work on Copy?" TRUE
SF-TOGGLE _"Defocus" TRUE
SF-TOGGLE _"Border" TRUE
SF-TOGGLE _"Sepia" TRUE
SF-TOGGLE _"Mottle" FALSE
SF-TOGGLE _"Work on Copy" TRUE
)

View file

@ -79,7 +79,7 @@
(script-fu-register
"script-fu-old-photo"
"<Image>/Script-Fu/Decor/Old Photo..."
_"<Image>/Script-Fu/Decor/Old Photo..."
"Makes the image look like an old photo"
"Chris Gutteridge"
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
@ -87,9 +87,9 @@
"RGB* GRAY*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-TOGGLE "Defocus?" TRUE
SF-TOGGLE "Border?" TRUE
SF-TOGGLE "Sepia?" TRUE
SF-TOGGLE "Mottle?" FALSE
SF-TOGGLE "Work on Copy?" TRUE
SF-TOGGLE _"Defocus" TRUE
SF-TOGGLE _"Border" TRUE
SF-TOGGLE _"Sepia" TRUE
SF-TOGGLE _"Mottle" FALSE
SF-TOGGLE _"Work on Copy" TRUE
)

View file

@ -178,7 +178,7 @@
(gimp-displays-flush)))
(script-fu-register "script-fu-perspective-shadow"
"<Image>/Script-Fu/Shadow/Perspective..."
_"<Image>/Script-Fu/Shadow/Perspective..."
"Add a perspective shadow"
"Sven Neumann <sven@gimp.org>"
"Sven Neumann"
@ -186,11 +186,11 @@
"RGB* GRAY*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "Angle" '(45 0 180 1 10 1 0)
SF-ADJUSTMENT "Relative horizon distance" '(5 0 24 .1 1 1 1)
SF-ADJUSTMENT "Relative shadow length" '(1 0 24 .1 1 1 1)
SF-ADJUSTMENT "Blur Radius" '(3 0 1024 1 10 0 0)
SF-COLOR "Color" '(0 0 0)
SF-ADJUSTMENT "Opacity" '(80 0 100 1 10 0 0)
SF-TOGGLE "Interpolate?" TRUE
SF-TOGGLE "Allow Resizing?" FALSE)
SF-ADJUSTMENT _"Angle" '(45 0 180 1 10 1 0)
SF-ADJUSTMENT _"Relative Distance of Horizon" '(5 0 24 .1 1 1 1)
SF-ADJUSTMENT _"Relative Length of Shadow" '(1 0 24 .1 1 1 1)
SF-ADJUSTMENT _"Blur Radius" '(3 0 1024 1 10 0 0)
SF-COLOR _"Color" '(0 0 0)
SF-ADJUSTMENT _"Opacity" '(80 0 100 1 10 0 0)
SF-TOGGLE _"Interpolate" TRUE
SF-TOGGLE _"Allow Resizing" FALSE)

View file

@ -96,7 +96,7 @@
(gimp-displays-flush)))
(script-fu-register "script-fu-predator"
"<Image>/Script-Fu/Alchemy/Predator..."
_"<Image>/Script-Fu/Alchemy/Predator..."
"Looks like images from the movie Predator"
"Adrian Likins <adrian@gimp.org>"
"Adrian Likins"
@ -104,8 +104,8 @@
"RGB*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "edge-amount" '(2 0 24 1 1 0 0)
SF-TOGGLE "pixelize?" TRUE
SF-ADJUSTMENT "Pixel Amount" '(3 1 16 1 1 0 0)
SF-TOGGLE "Keep Selection?" TRUE
SF-TOGGLE "Seperate Layer?" TRUE)
SF-ADJUSTMENT _"Edge Amount" '(2 0 24 1 1 0 0)
SF-TOGGLE _"Pixelize" TRUE
SF-ADJUSTMENT _"Pixel Amount" '(3 1 16 1 1 0 0)
SF-TOGGLE _"Keep Selection" TRUE
SF-TOGGLE _"Seperate Layer" TRUE)

View file

@ -190,27 +190,27 @@
; Register!
(script-fu-register "script-fu-round-button"
"<Toolbox>/Xtns/Script-Fu/Buttons/Round Button..."
_"<Toolbox>/Xtns/Script-Fu/Buttons/Round Button..."
"Round button"
"Arturo Espinosa (stolen from quartic's beveled button)"
"Arturo Espinosa & Federico Mena Quintero"
"June 1998"
""
SF-STRING "Text" ""
SF-ADJUSTMENT "Font Size (pixels)" '(16 2 100 1 1 0 1)
SF-FONT "Font" "-*-helvetica-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Upper color" '(192 192 0)
SF-COLOR "Lower color" '(128 108 0)
SF-COLOR "Text color" '(0 0 0)
SF-COLOR "Upper color (active)" '(255 255 0)
SF-COLOR "Lower color (active)" '(128 108 0)
SF-COLOR "Text color (active)" '(0 0 192)
SF-VALUE "xPadding" "4"
SF-VALUE "yPadding" "4"
SF-VALUE "Bevel width" "2"
SF-VALUE "Round ratio" "1"
SF-TOGGLE "Not-pressed " TRUE
SF-TOGGLE "Not-pressed (active)" TRUE
SF-TOGGLE "Pressed " TRUE)
SF-STRING _"Text" "The GIMP"
SF-ADJUSTMENT _"Font Size (pixels)" '(16 2 100 1 1 0 1)
SF-FONT _"Font" "-*-helvetica-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Upper Color" '(192 192 0)
SF-COLOR _"Lower Color" '(128 108 0)
SF-COLOR _"Text Color" '(0 0 0)
SF-COLOR _"Upper Color (Active)" '(255 255 0)
SF-COLOR _"Lower Color (Active)" '(128 108 0)
SF-COLOR _"Text Color (Active)" '(0 0 192)
SF-VALUE _"Padding X" "4"
SF-VALUE _"Padding Y" "4"
SF-VALUE _"Bevel Width" "2"
SF-VALUE _"Round Ratio" "1"
SF-TOGGLE _"Not-Pressed " TRUE
SF-TOGGLE _"Not-Pressed (Active)" TRUE
SF-TOGGLE _"Pressed " TRUE)

View file

@ -66,15 +66,15 @@
(script-fu-register
"script-fu-render-map"
"<Toolbox>/Xtns/Script-Fu/Patterns/Render Map..."
_"<Toolbox>/Xtns/Script-Fu/Patterns/Render Map..."
"Another pattern which resembles a map"
"Chris Gutteridge: cjg@ecs.soton.ac.uk"
"28th April 1998"
"Chris Gutteridge / ECS @ University of Southampton, England"
""
SF-ADJUSTMENT "Image Size" '(256 0 2048 1 10 0 0)
SF-ADJUSTMENT "Granularity" '(4 0 15 1 1 0 0)
SF-GRADIENT "Gradient" "Land_and_Sea"
SF-TOGGLE "TRUE = Detail in middle, FALSE = tile" FALSE
SF-ADJUSTMENT _"Image Size" '(256 0 2048 1 10 0 0)
SF-ADJUSTMENT _"Granularity" '(4 0 15 1 1 0 0)
SF-GRADIENT _"Gradient" "Land_and_Sea"
SF-TOGGLE _"TRUE = Detail in middle, FALSE = tile" FALSE
)

View file

@ -92,7 +92,7 @@
(gimp-display-new out-imagestack))))
(script-fu-register "script-fu-ripply-anim"
"<Image>/Script-Fu/Animators/Rippling..."
_"<Image>/Script-Fu/Animators/Rippling..."
"Ripple any image by creating animation frames as layers"
"Adam D. Moss (adam@foxbox.org)"
"Adam D. Moss"
@ -100,5 +100,5 @@
"RGB* GRAY*"
SF-IMAGE "Image to Animage" 0
SF-DRAWABLE "Drawable to Animate" 0
SF-ADJUSTMENT "Rippling Strentgh" '(3 0 256 1 10 3 0)
SF-ADJUSTMENT "Number of Frames" '(15 0 256 1 10 0 1))
SF-ADJUSTMENT _"Rippling Strength" '(3 0 256 1 10 3 0)
SF-ADJUSTMENT _"Number of Frames" '(15 0 256 1 10 0 1))

View file

@ -115,7 +115,7 @@
(gimp-displays-flush)))
(script-fu-register "script-fu-round-corners"
"<Image>/Script-Fu/Decor/Round Corners..."
_"<Image>/Script-Fu/Decor/Round Corners..."
"Round the corners of an image and optionally adds a drop-shadow and a background"
"Sven Neumann <sven@gimp.org>"
"Sven Neumann"
@ -123,10 +123,10 @@
"RGB GRAY"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "Edge Radius" '(15 0 4096 1 10 0 1)
SF-TOGGLE "Add Drop-Shadow" TRUE
SF-ADJUSTMENT "Shadow X Offset" '(8 -4096 4096 1 10 0 1)
SF-ADJUSTMENT "Shadow Y Offset" '(8 -4096 4096 1 10 0 1)
SF-ADJUSTMENT "Blur Radius" '(15 0 1024 1 10 0 1)
SF-TOGGLE "Add Background" TRUE
SF-TOGGLE "Work on Copy" TRUE)
SF-ADJUSTMENT _"Edge Radius" '(15 0 4096 1 10 0 1)
SF-TOGGLE _"Add Drop-Shadow" TRUE
SF-ADJUSTMENT _"Shadow X Offset" '(8 -4096 4096 1 10 0 1)
SF-ADJUSTMENT _"Shadow Y Offset" '(8 -4096 4096 1 10 0 1)
SF-ADJUSTMENT _"Blur Radius" '(15 0 1024 1 10 0 1)
SF-TOGGLE _"Add Background" TRUE
SF-TOGGLE _"Work on Copy" TRUE)

View file

@ -92,7 +92,7 @@
(script-fu-register "script-fu-selection-to-brush"
; I like this script under the main selection menu, but that doesnt seem quite kosher
; "<Image>/Select/Selection To Brush"
"<Image>/Script-Fu/Selection/To Brush..."
_"<Image>/Script-Fu/Selection/To Brush..."
"Convert a selection to a greyscale brush"
"Adrian Likins <adrian@gimp.org>"
"Adrian Likins"
@ -101,9 +101,9 @@
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
; SF-STRING "Home directory" "/home/aklikins/"
SF-STRING "Description" "Brush"
SF-STRING "Filename" "SlothBrush"
SF-STRING _"Description" "Brush"
SF-STRING _"Filename" "SlothBrush"
; SF-VALUE "Spacing" "25")
SF-ADJUSTMENT "Spacing" '(25 0 1000 1 1 1 0))
SF-ADJUSTMENT _"Spacing" '(25 0 1000 1 1 1 0))

View file

@ -70,7 +70,7 @@
; I prefer this to go under the main selection menu, but this seems more
; approriate for mass consumption
; "<Image>/Select/Selection to Image"
"<Image>/Script-Fu/Selection/To Image"
_"<Image>/Script-Fu/Selection/To Image"
"Convert a selection to an image"
"Adrian Likins <adrian@gimp.org>"
"Adrian Likins"

View file

@ -92,7 +92,7 @@
(script-fu-register "script-fu-selection-to-brush"
; I like this script under the main selection menu, but that doesnt seem quite kosher
; "<Image>/Select/Selection To Brush"
"<Image>/Script-Fu/Selection/To Brush..."
_"<Image>/Script-Fu/Selection/To Brush..."
"Convert a selection to a greyscale brush"
"Adrian Likins <adrian@gimp.org>"
"Adrian Likins"
@ -101,9 +101,9 @@
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
; SF-STRING "Home directory" "/home/aklikins/"
SF-STRING "Description" "Brush"
SF-STRING "Filename" "SlothBrush"
SF-STRING _"Description" "Brush"
SF-STRING _"Filename" "SlothBrush"
; SF-VALUE "Spacing" "25")
SF-ADJUSTMENT "Spacing" '(25 0 1000 1 1 1 0))
SF-ADJUSTMENT _"Spacing" '(25 0 1000 1 1 1 0))

View file

@ -70,7 +70,7 @@
; I prefer this to go under the main selection menu, but this seems more
; approriate for mass consumption
; "<Image>/Select/Selection to Image"
"<Image>/Script-Fu/Selection/To Image"
_"<Image>/Script-Fu/Selection/To Image"
"Convert a selection to an image"
"Adrian Likins <adrian@gimp.org>"
"Adrian Likins"

View file

@ -123,7 +123,7 @@
(script-fu-register "script-fu-selection-round"
"<Image>/Script-Fu/Selection/Round..."
_"<Image>/Script-Fu/Selection/Round..."
"Rounds the active selection. The selection should be rectangular."
"Sven Neumann <sven@gimp.org>"
"Sven Neumann"
@ -131,4 +131,4 @@
"*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "Relative Radius" '(1 0 128 .1 1 1 1))
SF-ADJUSTMENT _"Relative Radius" '(1 0 128 .1 1 1 1))

View file

@ -225,7 +225,7 @@
(gimp-displays-flush)))
(script-fu-register "script-fu-slide"
"<Image>/Script-Fu/Decor/Slide..."
_"<Image>/Script-Fu/Decor/Slide..."
"Gives the image the look of a slide"
"Sven Neumann <sven@gimp.org>"
"Sven Neumann"
@ -233,8 +233,8 @@
"RGB GRAY"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-STRING "Text" "The GIMP"
SF-STRING "Number" "32"
SF-FONT "Font" "-*-utopia-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Font Color" '(255 180 0)
SF-TOGGLE "Work on copy" TRUE)
SF-STRING _"Text" "The GIMP"
SF-STRING _"Number" "32"
SF-FONT _"Font" "-*-utopia-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Font Color" '(255 180 0)
SF-TOGGLE _"Work on Copy" TRUE)

View file

@ -182,18 +182,18 @@
(gimp-display-new img)))
(script-fu-register "script-fu-sota-chrome-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/SOTA Chrome..."
_"<Toolbox>/Xtns/Script-Fu/Logos/SOTA Chrome..."
"State of the art chromed logos"
"Spencer Kimball"
"Spencer Kimball"
"1997"
""
SF-ADJUSTMENT "Chrome Saturation" '(-80 -100 100 1 10 0 0)
SF-ADJUSTMENT "Chrome Lightness" '(-47 -100 100 1 10 0 0)
SF-ADJUSTMENT "Chrome Factor" '(.75 0 1 .1 .01 2 0)
SF-STRING "Text String" "The GIMP"
SF-ADJUSTMENT "Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT "Font" "-*-RoostHeavy-*-r-*-*-24-*-*-*-p-*-*-*"
SF-FILENAME "Environment Map" (string-append "" gimp-data-dir "/scripts/beavis.jpg")
SF-COLOR "Highlight Balance" '(211 95 0)
SF-COLOR "Chrome Balance" '(0 0 0))
SF-ADJUSTMENT _"Chrome Saturation" '(-80 -100 100 1 10 0 0)
SF-ADJUSTMENT _"Chrome Lightness" '(-47 -100 100 1 10 0 0)
SF-ADJUSTMENT _"Chrome Factor" '(.75 0 1 .1 .01 2 0)
SF-STRING _"Text" "The GIMP"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-FONT _"Font" "-*-RoostHeavy-*-r-*-*-24-*-*-*-p-*-*-*"
SF-FILENAME _"Environment Map" (string-append "" gimp-data-dir "/scripts/beavis.jpg")
SF-COLOR _"Highlight Balance" '(211 95 0)
SF-COLOR _"Chrome Balance" '(0 0 0))

View file

@ -78,15 +78,15 @@
(gimp-display-new img)))
(script-fu-register "script-fu-speed-text"
"<Toolbox>/Xtns/Script-Fu/Logos/Speed Text..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Speed Text..."
"give text a speedy effect"
"Austin Donnelly"
"Austin Donnelly"
"1998"
""
SF-STRING "Text String" "Speed!"
SF-FONT "Font" "-*-Charter-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-ADJUSTMENT "Density (%)" '(80 0 100 1 10 0 0)
SF-COLOR "Text Color" '(0 0 0)
SF-COLOR "Background Color" '(255 255 255))
SF-STRING _"Text" "Speed!"
SF-FONT _"Font" "-*-Charter-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 2 1000 1 10 0 1)
SF-ADJUSTMENT _"Density (%)" '(80 0 100 1 10 0 0)
SF-COLOR _"Text Color" '(0 0 0)
SF-COLOR _"Background Color" '(255 255 255))

View file

@ -50,14 +50,14 @@
(gimp-display-new img)))
(script-fu-register "script-fu-sphere"
"<Toolbox>/Xtns/Script-Fu/Misc/Sphere..."
_"<Toolbox>/Xtns/Script-Fu/Misc/Sphere..."
"Simple sphere with a drop shadow"
"Spencer Kimball"
"Spencer Kimball"
"1996"
""
SF-VALUE "Radius (in pixels)" "100"
SF-VALUE "Lighting (degrees)" "45"
SF-TOGGLE "Shadow?" TRUE
SF-COLOR "Background Color" '(255 255 255)
SF-COLOR "Sphere Color" '(255 0 0))
SF-VALUE _"Radius (pixels)" "100"
SF-VALUE _"Lighting (degrees)" "45"
SF-TOGGLE _"Shadow" TRUE
SF-COLOR _"Background Color" '(255 255 255)
SF-COLOR _"Sphere Color" '(255 0 0))

View file

@ -101,7 +101,7 @@
(script-fu-register
"script-fu-spinning-globe"
"<Image>/Script-Fu/Animators/Spinning Globe..."
_"<Image>/Script-Fu/Animators/Spinning Globe..."
"Maps the image on an animated spinning globe"
"Chris Gutteridge"
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
@ -109,11 +109,11 @@
"RGB* GRAY*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-VALUE "Frames:" "10"
SF-VALUE _"Frames" "10"
; SF-ADJUSTMENT "Frames:" '(10 1 256 1 10 0 1)
SF-TOGGLE "Turn from left to right?" FALSE
SF-TOGGLE "Transparant Background?" TRUE
SF-VALUE "Index of n Colors (0 = Remain RGB):" "63"
SF-TOGGLE _"Turn from Left to Right" FALSE
SF-TOGGLE _"Transparent Background" TRUE
SF-VALUE _"Index to n Colors (0 = Remain RGB):" "63"
; SF-ADJUSTMENT "Index of n Colors (0 = Remain RGB):" '(63 2 256 1 10 0 1)
SF-TOGGLE "Work on Copy?" TRUE
SF-TOGGLE _"Work on Copy" TRUE
)

View file

@ -101,7 +101,7 @@
(script-fu-register
"script-fu-spinning-globe"
"<Image>/Script-Fu/Animators/Spinning Globe..."
_"<Image>/Script-Fu/Animators/Spinning Globe..."
"Maps the image on an animated spinning globe"
"Chris Gutteridge"
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
@ -109,11 +109,11 @@
"RGB* GRAY*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-VALUE "Frames:" "10"
SF-VALUE _"Frames" "10"
; SF-ADJUSTMENT "Frames:" '(10 1 256 1 10 0 1)
SF-TOGGLE "Turn from left to right?" FALSE
SF-TOGGLE "Transparant Background?" TRUE
SF-VALUE "Index of n Colors (0 = Remain RGB):" "63"
SF-TOGGLE _"Turn from Left to Right" FALSE
SF-TOGGLE _"Transparent Background" TRUE
SF-VALUE _"Index to n Colors (0 = Remain RGB):" "63"
; SF-ADJUSTMENT "Index of n Colors (0 = Remain RGB):" '(63 2 256 1 10 0 1)
SF-TOGGLE "Work on Copy?" TRUE
SF-TOGGLE _"Work on Copy" TRUE
)

View file

@ -66,16 +66,14 @@
(script-fu-register "script-fu-starburst-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Starburst..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Starburst..."
"Starburst as inspired by GIMP News"
"Spencer Kimball & Xach Beane"
"Spencer Kimball & Xach Beane"
"1997"
""
SF-STRING "Text String" "GIMP"
; SF-ADJUSTMENT "Font Size (pixels)" '(150 2 1000 1 10 0 1)
SF-ADJUSTMENT "Font Size (pixels)" '(150 0 512 1 10 0 1)
; SF-FONT "Font" "-*-Blippo-*-r-*-*-24-*-*-*-p-*-*-*"
SF-FONT "Font" "-*-blippo-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Burst Color" '(60 196 33)
SF-COLOR "BG Color" '(255 255 255))
SF-STRING _"Text" "GIMP"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 0 512 1 10 0 1)
SF-FONT _"Font" "-*-blippo-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Burst Color" '(60 196 33)
SF-COLOR _"Background Color" '(255 255 255))

View file

@ -106,13 +106,13 @@
(script-fu-register "script-fu-starscape-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Starscape..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Starscape..."
"Starscape using the Nova plug-in"
"Spencer Kimball"
"Spencer Kimball"
"1997"
""
SF-STRING "Text String" "Nova"
SF-ADJUSTMENT "Font Size (pixels)" '(150 1 1000 1 10 0 1)
SF-FONT "Font" "-*-engraver-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Glow Color" '(28 65 188))
SF-STRING _"Text" "Nova"
SF-ADJUSTMENT _"Font Size (pixels)" '(150 1 1000 1 10 0 1)
SF-FONT _"Font" "-*-engraver-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Glow Color" '(28 65 188))

View file

@ -38,18 +38,18 @@
(gimp-image-undo-enable img)))
(script-fu-register "script-fu-swirl-tile"
"<Toolbox>/Xtns/Script-Fu/Patterns/Swirl-Tile..."
_"<Toolbox>/Xtns/Script-Fu/Patterns/Swirl-Tile..."
"Create an interesting swirled tile"
"Adrian Likins <aklikins@eos.ncsu.edu>"
"Adrian Likins"
"1997"
""
SF-ADJUSTMENT "Depth" '(10 0 64 1 1 0 0)
SF-ADJUSTMENT "Azimuth" '(135 0 360 1 10 0 0)
SF-ADJUSTMENT "Elevation" '(45 0 90 1 10 0 0)
SF-ADJUSTMENT "Blur Radius" '(3 0 128 1 10 0 0)
SF-ADJUSTMENT "Height" '(256 0 1024 1 10 0 1)
SF-ADJUSTMENT "Width" '(256 0 1024 1 10 0 1)
SF-ADJUSTMENT "Whirl Amount" '(320 0 360 1 10 0 0)
SF-ADJUSTMENT "Roughness" '(.5 0 1 .1 .01 2 1)
SF-COLOR "Backgound Color" '(255 255 255))
SF-ADJUSTMENT _"Depth" '(10 0 64 1 1 0 0)
SF-ADJUSTMENT _"Azimuth" '(135 0 360 1 10 0 0)
SF-ADJUSTMENT _"Elevation" '(45 0 90 1 10 0 0)
SF-ADJUSTMENT _"Blur Radius" '(3 0 128 1 10 0 0)
SF-ADJUSTMENT _"Height" '(256 0 1024 1 10 0 1)
SF-ADJUSTMENT _"Width" '(256 0 1024 1 10 0 1)
SF-ADJUSTMENT _"Whirl Amount" '(320 0 360 1 10 0 0)
SF-ADJUSTMENT _"Roughness" '(.5 0 1 .1 .01 2 1)
SF-COLOR _"Background Color" '(255 255 255))

View file

@ -78,12 +78,12 @@
(gimp-display-new img)))
(script-fu-register "script-fu-swirly-pattern"
"<Toolbox>/Xtns/Script-Fu/Patterns/Swirly (tileable)..."
_"<Toolbox>/Xtns/Script-Fu/Patterns/Swirly (tileable)..."
"Create a swirly pattern"
"Federico Mena Quintero"
"Federico Mena Quintero"
"June 1997"
""
SF-ADJUSTMENT "Quarter size" '(20 0 2048 1 10 0 1)
SF-ADJUSTMENT "Whirl Angle" '(90 0 360 1 1 0 0)
SF-ADJUSTMENT "Numer of times to whirl" '(4 0 128 1 1 0 1))
SF-ADJUSTMENT _"Quarter Size" '(20 0 2048 1 10 0 1)
SF-ADJUSTMENT _"Whirl Angle" '(90 0 360 1 1 0 0)
SF-ADJUSTMENT _"Number of Times to Whirl" '(4 0 128 1 1 0 1))

View file

@ -78,19 +78,19 @@
(gimp-display-new img)))
(script-fu-register "script-fu-t-o-p-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Particle Trace..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Particle Trace..."
"Trace of Particles Effect"
"Shuji Narazaki (narazaki@InetQ.or.jp)"
"Shuji Narazaki"
"1997"
""
SF-STRING "Text String" "The GIMP"
SF-ADJUSTMENT "Font size (in pixels)" '(100 1 1000 1 10 0 1)
SF-FONT "Font" "-*-becker-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Hit Rate [0.0,1.0]" '(0.2 0 1 .01 .01 2 0)
SF-ADJUSTMENT "Edge Width" '(2 0 128 1 1 0 0)
SF-TOGGLE "Edge Only?" FALSE
SF-COLOR "Base Color" '(0 40 0)
SF-COLOR "Background Color" '(255 255 255))
SF-STRING _"Text" "The GIMP"
SF-ADJUSTMENT _"Font Size (pixels)" '(100 1 1000 1 10 0 1)
SF-FONT _"Font" "-*-becker-*-r-*-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT _"Hit Rate" '(0.2 0 1 .01 .01 2 0)
SF-ADJUSTMENT _"Edge Width" '(2 0 128 1 1 0 0)
SF-TOGGLE _"Edge Only" FALSE
SF-COLOR _"Base Color" '(0 40 0)
SF-COLOR _"Background Color" '(255 255 255))
; end of t-o-p.scm

View file

@ -174,7 +174,7 @@
SF-PATTERN "Pattern" "Maple Leaves"
SF-GRADIENT "Gradient" "Deep_Sea"
SF-FONT "Font" "-freefont-agate-normal-r-normal-*-24-*-*-*-p-*-*-*"
SF-ADJUSTMENT "Font size (in pixels)" '(50 1 1000 1 10 0 1)
SF-ADJUSTMENT "Font Size (pixels)" '(50 1 1000 1 10 0 1)
SF-FILENAME "Environment Map" (string-append "" gimp-data-dir "/scripts/beavis.jpg"))

View file

@ -164,19 +164,19 @@
(script-fu-register
"script-fu-text-circle"
"<Toolbox>/Xtns/Script-Fu/Logos/Text Circle..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Text Circle..."
"Render the specified text along the perimeter of a circle"
"Shuji Narazaki <narazaki@gimp.org>"
"Shuji Narazaki"
"1997-1998"
""
SF-STRING "Text" "The GNU Image Manipulation Program Version 1.1 "
SF-ADJUSTMENT "Radius" '(80 1 8000 1 1 0 1)
SF-ADJUSTMENT "Start-angle[-180:180]" '(0 -180 180 1 1 0 1)
SF-ADJUSTMENT "Fill-angle [-360:360]" '(360 -360 360 1 1 0 1)
SF-ADJUSTMENT "Font Size (pixel)" '(18 1 1000 1 1 0 1)
SF-TOGGLE "Antialias" TRUE
SF-FONT "Font name" "-adobe-helvetica-bold-r-normal-*-30-*-*-*-p-*-*-*"
SF-STRING _"Text" "The GNU Image Manipulation Program Version 1.1 "
SF-ADJUSTMENT _"Radius" '(80 1 8000 1 1 0 1)
SF-ADJUSTMENT _"Start Angle" '(0 -180 180 1 1 0 1)
SF-ADJUSTMENT _"Fill Angle" '(360 -360 360 1 1 0 1)
SF-ADJUSTMENT _"Font Size (pixels)" '(18 1 1000 1 1 0 1)
SF-TOGGLE _"Antialias" TRUE
SF-FONT _"Font" "-adobe-helvetica-bold-r-normal-*-30-*-*-*-p-*-*-*"
)
;; text-circle.scm ends here

View file

@ -78,17 +78,17 @@
(gimp-display-new img)))
(script-fu-register "script-fu-textured-logo"
"<Toolbox>/Xtns/Script-Fu/Logos/Textured..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Textured..."
"Creates textured logos with blended backgrounds, highlights, and shadows"
"Spencer Kimball"
"Spencer Kimball"
"1996"
""
SF-PATTERN "Text Pattern" "Fibers"
SF-ADJUSTMENT "Mosaic Tile Type\n Squares 0, Hex 1, Oct 2" '(0 0 2 1 1 0 1)
SF-STRING "Text String" "The GIMP"
SF-ADJUSTMENT "Font Size (pixels)" '(200 1 1000 1 10 0 1)
SF-FONT "Font" "-*-cuneifontlight-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR "Background Color" '(255 255 255)
SF-COLOR "Starting Blend" '(32 106 0)
SF-COLOR "Ending Blend" '(0 0 106))
SF-PATTERN _"Text Pattern" "Fibers"
SF-ADJUSTMENT _"Mosaic Tile Type\nSquares 0, Hex 1, Oct 2" '(0 0 2 1 1 0 1)
SF-STRING _"Text" "The GIMP"
SF-ADJUSTMENT _"Font Size (pixels)" '(200 1 1000 1 10 0 1)
SF-FONT _"Font" "-*-cuneifontlight-*-r-*-*-24-*-*-*-p-*-*-*"
SF-COLOR _"Background Color" '(255 255 255)
SF-COLOR _"Starting Blend" '(32 106 0)
SF-COLOR _"Ending Blend" '(0 0 106))

View file

@ -62,7 +62,7 @@
(script-fu-register
"script-fu-tile-blur"
"<Image>/Filters/Blur/Tileable Blur..."
_"<Image>/Filters/Blur/Tileable Blur..."
"Blurs image edges so that the final result tiles seamlessly"
"Chris Gutteridge"
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
@ -70,8 +70,10 @@
"RGB*"
SF-IMAGE "The Image" 0
SF-DRAWABLE "The Layer" 0
SF-ADJUSTMENT "Radius" '(5 0 128 1 1 0 0)
SF-TOGGLE "Blur Vertically?" TRUE
SF-TOGGLE "Blur Horizontally?" TRUE
SF-TOGGLE "Blur Type: TRUE=RLE, FALSE=IIR" FALSE
SF-ADJUSTMENT _"Radius" '(5 0 128 1 1 0 0)
SF-TOGGLE _"Blur Vertically" TRUE
SF-TOGGLE _"Blur Horizontally" TRUE
SF-TOGGLE _"Blur Type: TRUE=RLE, FALSE=IIR" FALSE
)

View file

@ -167,12 +167,12 @@ verted to use the *-fontname form.
(gimp-display-new img)))
(script-fu-register "script-fu-title-header"
"<Toolbox>/Xtns/Script-Fu/Logos/Web Title Header..."
_"<Toolbox>/Xtns/Script-Fu/Logos/Web Title Header..."
"Web title header"
"Federico Mena Quintero"
"Federico Mena Quintero"
"June 1997"
""
SF-STRING "Text" "Hello world!"
SF-ADJUSTMENT "Text size" '(32 2 256 1 10 0 0)
SF-FONT "Font" "-adobe-helvetica-bold-r-normal-*-30-*-*-*-p-*-*-*")
SF-STRING _"Text" "Hello world!"
SF-ADJUSTMENT _"Text Size" '(32 2 256 1 10 0 0)
SF-FONT _"Font" "-adobe-helvetica-bold-r-normal-*-30-*-*-*-p-*-*-*")

View file

@ -384,18 +384,18 @@
(gimp-displays-flush)))
(script-fu-register "script-fu-trochoid"
"<Toolbox>/Xtns/Script-Fu/Patterns/Trochoid..."
_"<Toolbox>/Xtns/Script-Fu/Patterns/Trochoid..."
"Draw Trochoid Curve"
"Shuji Narazaki <narazaki@InetQ.or.jp>"
"Shuji Narazaki"
"1997"
""
SF-ADJUSTMENT "Base radius (pixel)" '(40 0 512 1 1 0 0)
SF-ADJUSTMENT "Wheel Radius (hypo < 0 < epi)" '(60 0 512 1 1 0 0)
SF-ADJUSTMENT "Pen rad./wheel rad. [0.0:1.0]" '(0.8 0 1 .01 .01 2 0)
SF-ADJUSTMENT "Hue Rate" '(1.0 0 1 .01 .01 2 0)
SF-VALUE "Erase before draw? [0/1]" "0"
SF-BRUSH "Use brush" '("Circle (05)" 1.0 44 2)
SF-ADJUSTMENT _"Base Radius (pixel)" '(40 0 512 1 1 0 0)
SF-ADJUSTMENT _"Wheel Radius (hypo < 0 < epi)" '(60 0 512 1 1 0 0)
SF-ADJUSTMENT _"Pen Rad. / Wheel Rad. [0.0:1.0]" '(0.8 0 1 .01 .01 2 0)
SF-ADJUSTMENT _"Hue Rate" '(1.0 0 1 .01 .01 2 0)
SF-VALUE _"Erase before Draw" "0"
SF-BRUSH _"Use Brush" '("Circle (05)" 1.0 44 2)
)
;;; trochoid.scm ends here

View file

@ -144,17 +144,17 @@
)
(script-fu-register "script-fu-truchet"
"<Toolbox>/Xtns/Script-Fu/Patterns/Truchet..."
_"<Toolbox>/Xtns/Script-Fu/Patterns/Truchet..."
"Create a Truchet pattern \n\nWorks best with even sized thicknesses"
"Adrian Likins <aklikins@eos.ncsu.edu>"
"Adrian Likins"
"1997"
""
SF-ADJUSTMENT "Block Size" '(32 2 512 1 10 1 1)
SF-ADJUSTMENT "Thickness" '(2 1 512 1 10 1 1)
SF-COLOR "Background Color" '(255 255 255)
SF-COLOR "Foreground Color" '(0 0 0)
SF-ADJUSTMENT "Number of Xtiles" '(5 1 512 1 10 1 1)
SF-ADJUSTMENT "Number of Ytile" '(5 1 512 1 10 1 1)
SF-ADJUSTMENT _"Block Size" '(32 2 512 1 10 1 1)
SF-ADJUSTMENT _"Thickness" '(2 1 512 1 10 1 1)
SF-COLOR _"Background Color" '(255 255 255)
SF-COLOR _"Foreground Color" '(0 0 0)
SF-ADJUSTMENT _"Number of Xtiles" '(5 1 512 1 10 1 1)
SF-ADJUSTMENT _"Number of Ytile" '(5 1 512 1 10 1 1)
)

View file

@ -59,7 +59,7 @@
(script-fu-register
"script-fu-unsharp-mask"
"<Image>/Script-Fu/Alchemy/Unsharp Mask..."
_"<Image>/Script-Fu/Alchemy/Unsharp Mask..."
"Make a sharp image of IMAGE's DRAWABLE by applying unsharp mask method"
"Shuji Narazaki <narazaki@gimp.org>"
"Shuji Narazaki"
@ -67,8 +67,13 @@
""
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable to apply" 0
SF-ADJUSTMENT "Mask size" '(5 1 100 1 1 0 1)
SF-ADJUSTMENT "Mask opacity" '(50 0 100 1 1 0 1)
SF-ADJUSTMENT _"Mask Size" '(5 1 100 1 1 0 1)
SF-ADJUSTMENT _"Mask Opacity" '(50 0 100 1 1 0 1)
)
;;; unsharp-mask.scm ends here

View file

@ -85,7 +85,7 @@
(gimp-display-new image)))
(script-fu-register "script-fu-waves-anim"
"<Image>/Script-Fu/Animators/Waves..."
_"<Image>/Script-Fu/Animators/Waves..."
"Animate an image like a stone's been thrown into it"
"Sven Neumann <sven@gimp.org>"
"Sven Neumann"
@ -93,7 +93,7 @@
"RGB* GRAY*"
SF-IMAGE "Image" 0
SF-DRAWABLE "Drawable" 0
SF-ADJUSTMENT "Amplitude" '(10 1 101 1 10 1 0)
SF-ADJUSTMENT "Wavelength" '(10 .10 100 1 10 1 0)
SF-ADJUSTMENT "Number of Frames" '(6 1 512 1 10 0 1)
SF-TOGGLE "Invert direction?" FALSE)
SF-ADJUSTMENT _"Amplitude" '(10 1 101 1 10 1 0)
SF-ADJUSTMENT _"Wavelength" '(10 .10 100 1 10 1 0)
SF-ADJUSTMENT _"Number of Frames" '(6 1 512 1 10 0 1)
SF-TOGGLE _"Invert direction" FALSE)

View file

@ -350,18 +350,18 @@
; Register!
(script-fu-register "script-fu-weave"
"<Image>/Script-Fu/Alchemy/Weave..."
_"<Image>/Script-Fu/Alchemy/Weave..."
"Weave effect like Alien Skin"
"Federico Mena Quintero"
"Federico Mena Quintero"
"June 1997"
"RGB* GRAY*"
SF-IMAGE "Image to weave" 0
SF-DRAWABLE "Drawable to weave" 0
SF-ADJUSTMENT "Ribbon width" '(30 0 256 1 10 1 1)
SF-ADJUSTMENT "Ribbon spacing" '(10 0 256 1 10 1 1)
SF-ADJUSTMENT "Shadow darkness" '(75 0 100 1 10 1 1)
SF-ADJUSTMENT "Shadow depth" '(75 0 100 1 10 1 1)
SF-ADJUSTMENT "Thread length" '(200 0 256 1 10 1 1)
SF-ADJUSTMENT "Thread density" '(50 0 100 1 10 1 1)
SF-ADJUSTMENT "Thread intensity" '(100 0 512 1 10 1 1))
SF-IMAGE "Image to Weave" 0
SF-DRAWABLE "Drawable to Weave" 0
SF-ADJUSTMENT _"Ribbon Width" '(30 0 256 1 10 1 1)
SF-ADJUSTMENT _"Ribbon Spacing" '(10 0 256 1 10 1 1)
SF-ADJUSTMENT _"Shadow Darkness" '(75 0 100 1 10 1 1)
SF-ADJUSTMENT _"Shadow Depth" '(75 0 100 1 10 1 1)
SF-ADJUSTMENT _"Thread Length" '(200 0 256 1 10 1 1)
SF-ADJUSTMENT _"Thread Density" '(50 0 100 1 10 1 1)
SF-ADJUSTMENT _"Thread Intensity" '(100 0 512 1 10 1 1))

Some files were not shown because too many files have changed in this diff Show more