sunroof

msg:3648281 | 9:17 pm on May 12, 2008 (gmt 0) |
Better question is: How to make copies of all files in the specific directory? Something like: cp *.jpg w_*.jpg ?
|
physics

msg:3648313 | 10:12 pm on May 12, 2008 (gmt 0) |
You could do this with a perl script or a shell script. Shell might be: for x in `ls *.jpg`; do `convert -resize 176 $x w_$x; convert -crop w_$x`; done To simply make a copy is similar to the above...
|
Sharper

msg:3652712 | 7:21 pm on May 17, 2008 (gmt 0) |
Imagemagick already has a tool designed for batch processing of images, mogrify. See [imagemagick.org...] for exact details.
|
|