Reputation: 6705
I'm using imagemagick to resize photographs in my app, but I'm having trouble getting it to work as I need it to.
Can someone please help me come up with the right combination of option configurations to meet the following requirements:
Upvotes: 0
Views: 627
Reputation: 53212
In ImageMagick, try
convert image -resize x213 -gravity center -background white -extent 320x213 result
Upvotes: 3