Home»Howto»Graphics/Video/Audio»Resize JPG
Resize mass images
Resize all jpg images and put them to directory tmp.
In terminal:
mogrify -format jpg -path tmp -quality 75 -resize "150x80" -strip *
This rescale image to exact x-dimension: 150px. For rescaling to exact xy-dimensions use following:
mogrify -format jpg -path tmp -quality 75 -resize 150x80! -strip *