Resizing and cropping images
Posted: 2007-09-26T09:44:30-07:00
Hello,
I am using the following to crop and resize images
This works about 90% of the time, then other times it does not seem to force the size of 120x160... Is there something extra I need to add in for it to force that size?
Thanks!
I am using the following to crop and resize images
Code: Select all
convert image_big.jpg -thumbnail x200 -gravity center -crop 120x160+0+0 +repage -format jpg -quality 91 image_120x160.jpg
Thanks!