Re: [Gimp-user] Script-Fu help?

2007-11-07 Thread Tobias Jakobs
On Nov 7, 2007 8:53 PM, Dave 77459 <[EMAIL PROTECTED]> wrote: > I have some scripts I am upgrading to work with 2.4. What is the best place > to find help? This list is the right place. I think the fastes way to get help is the GIMP IRC channel. If you are updating from 2.2 to 2.4 you can find he

Re: [Gimp-user] Script-fu help

2007-05-29 Thread RalfGesellensetter
Am Montag 28 Mai 2007 21:13 schrieb ASJF: > I > have change something but I don't remember what... > Can someone help me? Don't you have a working copy? If you don't use a CVS/SVN, you might get help from diff (or kdiff3 if you use KDE). Otherwise: Thanks for sharing your script ;) _

Re: [Gimp-user] Script-fu help

2007-05-28 Thread saulgoode
Quoting ASJF <[EMAIL PROTECTED]>: > Hi everybody ! > > I have made a script to resize picture... but it doesn't work anymore, I > have change something but I don't remember what... > Can someone help me? I suspect that you are using the development version (2.3) of the GIMP and your difficulty

Re: [Gimp-user] Script-fu help?

2006-08-04 Thread saulgoode
Quoting William Fishburne <[EMAIL PROTECTED]>: I'm processing text images for Project Gutenberg (www.gutenberg.net) and I'd like to have a script-fu script that would take a list of files (preferably a file glob) and do the following: * read in the file (a png file that is RGB) * Desaturate HSV

RE: [Gimp-user] Script-Fu Help

2003-09-28 Thread G . DeSercey
-Modify all three defines to include one more parameter, as such: (define (... s-offset-y bg-colour) -Modify the call to apply-3d-outline-logo-effect in the two (script-fu-3d-outline-... to include the same parameter: (apply-3d-outline-logo-effect ... s-offset-y bg-colour) -In each script-fu-regi

Re: [Gimp-user] Script-Fu Help

2003-09-26 Thread Zeke Lightwave
Jeff Trefftzs wrote: On Thu, 2003-09-25 at 23:20, Zeke Lightwave wrote: I'm trying to edit the 3D-Outline script so I can change the background to being something non-white, can anybody help me with this? I've looked at the source and tried changing the colors where it set's the bg/fg, but that

Re: [Gimp-user] Script-Fu Help

2003-09-26 Thread Jeff Trefftzs
On Thu, 2003-09-25 at 23:20, Zeke Lightwave wrote: > I'm trying to edit the 3D-Outline script so I can change the background > to being something non-white, can anybody help me with this? I've looked > at the source and tried changing the colors where it set's the bg/fg, > but that didn't help .

Re: [Gimp-user] Script-Fu Help (beginner)

2002-09-06 Thread Jeff Trefftzs
Hi Keith - I just tried the same thing on a Linux system - I think the problem is with the dynamic text layer. Try using Layer to Imagesize on that layer first, before calling the alpha to logo script-fu. I haven't had a chance to look at the neon script-fu code yet, but it looks like it's n

RE: [Gimp-user] Script-Fu Help (beginner)

2002-09-06 Thread Walker, Sam
too large, and completely blurred out the image I was trying to use. I reduced it by a third and the results were much better. Regards, Sam -Original Message- From: Patrick [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 10:36 AM To: '[EMAIL PROTECTED]' Subject: Re: [

Re: [Gimp-user] Script-Fu Help (beginner)

2002-09-06 Thread Patrick
On Friday 06 September 2002 11:08, Allen, Keith wrote: > Hi, > > I'm trying to create a simple GIF with some "fancy" text for > inclusion on a web page. I want to use the "neon" script-fu to make > the text look like it is neon-lighted. I created a new image (RGB) > with a white background. The

Re: [Gimp-user] Script-fu help, problems using gimp-file-save

2001-04-09 Thread Ryan Schuermann
worked great, thanks! Ryan Jeff Trefftzs wrote: > (set! layer-save (gimp-image-merge-visible-layers img > EXPAND-AS-NECESSARY)) > (gimp-convert-indexed img 0 2 0 0 0 "") > (gimp-file-save 1 img layer-save "test.gif" "test.gif") > > Have you tried > (gimp-file-save 1 img (car layer-save) "test.g

Re: [Gimp-user] Script-fu help, problems using gimp-file-save

2001-04-09 Thread Jeff Trefftzs
(set! layer-save (gimp-image-merge-visible-layers img EXPAND-AS-NECESSARY)) (gimp-convert-indexed img 0 2 0 0 0 "") (gimp-file-save 1 img layer-save "test.gif" "test.gif") Have you tried (gimp-file-save 1 img (car layer-save) "test.gif" "test.gif") The gimp functions all return a list, not jus