Hans wrote:

> Could someone please tell me the syntax for resizing a bunch of JPEG files
> with convert? I tried various things like 'convert -geometry 50x50 *.jpg'
> but it won't fly. Thanks, --Hans

Convert does only one filename at a time.
You'll have to do the loop with the shell, e.g. in tcsh:

mkdir 750x600
foreach F (*.jpg)
 convert -geometry 750x600 $F 750x600/$F
end



Reply via email to