Cannot Resize to 150

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?".
Post Reply
Lanny

Cannot Resize to 150

Post by Lanny »

I just installed ImageMagick 5.4.2 on AIX. I wanted to resize 14000 jpgs to a max size of 150 along the larger side. No matter what I try, the sizes vary and I cannot achieve the 150 - I get, for example 253x360.
I used
mogrify -size 150 *.jpg

Any reading suggestions or advice appreciated.
Wolfman

Re: Cannot Resize to 150

Post by Wolfman »

I'm not an IM expert, but what people will certainly tell you is that you should always use the most current version.

Aside of that, you could try

Code: Select all

mogrify -resize 150x150 *.jpg
After all, I suppose IM will want to know if you are referring to width or height.
Lanny

Re: Cannot Resize to 150

Post by Lanny »

Thank you for your response and advice, which I will follow.
Post Reply