Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Hi,
I am trying to convert a image from 500X280 (16:9) to a specific box size of 377x248. I am using the resize and crop methodlogy and below is my command.
But the resultant images has the dimensions 248x139. I thought the idea of the above command to deal with aspect change and I saw the same things from Fred's script also.
I would leave out the width in your case so -resize 248x248^ becomes -resize x248
Either way you need to escape the ^ with another ^ so it would be -resize 248x248^^
See http://www.imagemagick.org/Usage/api/