Forum Moderators: bakedjake
I have a directory with 100K jpg images dimensions 264x198 pixels, which need to be resized to 176 pixels width and cropped to 176x110 from the top. The original images should be left as they are.
I can manualy resize and crop one image at a time with these two commands:
convert -resize 176 000000001.jpg w_000000001.jpg
convert -crop 176x110+0+0 w_000000001.jpg
How can I do this for all images (*.jpg) in the current directory?
Thanks a lot.
See [imagemagick.org...] for exact details.