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-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 $( > convert -resize 20% $fn 20-${fn} > done Great, that wor

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 David Neary
Hi, 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... for i in ; do convert -scale 20% $i small_$i done (in other words, I'd use ImageMagick). Cheers, Dave. -- David Neary, Lyo

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 th

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 $( convert -resize 20% $fn 20-${fn} done listoffiles is a file

[Gimp-user] Resizing *many* images?

2003-11-13 Thread Nick Wilson
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! -- Nick W ___ Gimp-user mailing list [EMAIL PROTECTED] http://lists.xcf.berkeley.edu/mailman/lis