Re: [Gimp-user] Resizing *many* images?

2003-11-17 Thread Nick Wilson
* and then Geoffrey declared Does anyone know if there is a way to 'batch resize'? - I have about 1000 images that all need to be 20% of the original size... In ksh and I think it works in bash too: for fn in $(listoffiles); do convert -resize 20% $fn 20-${fn} done Great,

Re: [Gimp-user] Resizing *many* images?

2003-11-17 Thread Nick Wilson
* and then David Hodson declared Does anyone know if there is a way to 'batch resize'? - I have about 1000 images that all need to be 20% of the original size... If you want to stay inside Gimp, try David's Batch Processor (DBP) at http://members.ozemail.com.au/~hodsond/dbp.html

Re: [Gimp-user] Resizing *many* images?

2003-11-14 Thread David Hodson
Nick Wilson wrote: Does anyone know if there is a way to 'batch resize'? - I have about 1000 images that all need to be 20% of the original size... If you want to stay inside Gimp, try David's Batch Processor (DBP) at http://members.ozemail.com.au/~hodsond/dbp.html It provides the most common

Re: [Gimp-user] Resizing *many* images?

2003-11-13 Thread Geoffrey
Nick Wilson wrote: Hi everyone, Does anyone know if there is a way to 'batch resize'? - I have about 1000 images that all need to be 20% of the original size... Many thanks! In ksh and I think it works in bash too: for fn in $(listoffiles); do convert -resize 20% $fn 20-${fn} done

Re: [Gimp-user] Resizing *many* images?

2003-11-13 Thread Jeff Trefftzs
On Thu, 2003-11-13 at 15:00, Nick Wilson wrote: Hi everyone, Does anyone know if there is a way to 'batch resize'? - I have about 1000 images that all need to be 20% of the original size... Many thanks! man ImageMagick man convert man mogrify etc. ImageMagick is your friend for this