I am using this command:
Code: Select all
convert -quality 100 -resize 500x500 "input.jpg" "output.png"
So, having this in mind, shouldn't the output.png image have height 500px and width 500px as well?
My generated output.png image, however, seems to have 500x313 (!)
It seems that somehow the convert command respects the original's image division: IMAGE_WIDTH/IMAGE_HEIGHT or something like this...
How do I force it not to?
Thanks in advance for any answers!