Re: [Gimp-user] Console problem

2002-02-20 Thread John Beppu
[ date ] 2002/02/19 | Tuesday | 09:32 AM [ author ] Mike McIntyre [EMAIL PROTECTED] It's getting the first command done okay, but none of the subsequent ones. What simple but important thing am I missing ? Try wrapping all those s-expressions inside a begin. For example: ;

[Gimp-user] Console problem

2002-02-18 Thread Mike McIntyre
Hi I'm trying to open jpeg files and close them again with lower quality with the intention of reducing the file size, making the files load quicker in browsers. The code I'm trying to use is .. gimp -c -i -b \ '(set! theImage (gimp-file-load 1

Re: [Gimp-user] Console problem

2002-02-18 Thread Jeff Trefftzs
Hi Mike - At the risk of sounding like a broken record, you really don't want to use the GIMP for this task. It's ever so much easier with ImageMagick. Try something like this: for image in *.jpg do convert -quality 50 $image loqual_$image done Read man convert for all the details. There