mirror of
https://github.com/tiyn/wiki.git
synced 2025-04-03 15:27:45 +02:00
667 B
667 B
ImageMagick
ImageMagick is a free and open-source, cross-platform software suite for displaying, creating and editing (raster) images.
Usage
The following section addresses different uses ImageMagick. For most of ImageMagicks features the command-line interface can be used.
Rotate an Image
To rotate an image and save the edited copy of the image run the following command.
origin.png
is the image to be rotated and target.png
is the rotated image.
90
is the degrees the image origin.png
will be turned by.
Change these values as needed.
convert origin.png -rotate 90 target.png