Batch resize images into new folder using ImageMagick

convert is designed to handle a single input file as far as I can tell, although I have to admit I don’t understand the output you’re getting. mogrify is better suited for batch processing in the following style: mogrify -path ../dsc_small -define jpeg:extent=2MB dsc_big/* But honestly I consider it dangerous for general usage (it’ll overwrite … Read more