Audrey M. Roy Greenfeld

Quietly building the future.

ImageMagick Convert to Resize Images With Aspect Ratio

2024-06-04

To resize a large logo file to a smaller size, use the convert command from ImageMagick:

convert logo.jpg -resize 290x logo-290.png

This will resize the logo.jpg image to a width of 290 pixels while maintaining the aspect ratio, and save the result as logo-290.png.