image resolution and geometry is the same thing?

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
yxs4406

image resolution and geometry is the same thing?

Post by yxs4406 »

how to change 30x512 image to 512x512 image? Thanks so much
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

To convert a 30x512 image to 512x512, use this example:
  • convert image.jpg -resize 512x512! resize.jpg
Post Reply