Tutorials and tips on Fedora Linux, Python programming, and software development. Clear guides, source code, and practical examples by Catalin George Festila.
Pages
▼
Tuesday, December 18, 2012
ImageMagick resize with preserve aspect ratio.
ImageMagick is used to change images.
In this case, I will show how to resize images and preserve aspect ratio:
...with height: 600 pixels
convert -resize x600 *.png
...with width: 600 pixels
convert -resize 600x *.png
If you know more about ImageMagick send me one email.