Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 213 Bytes

imagemagick.md

File metadata and controls

17 lines (12 loc) · 213 Bytes

ImageMagick

Rotate image:

# clockwise:
mogrify -rotate 90 *.jpg

# counterclockwise:
mogrify -rotate -90 *.jpg

Resize image with keeping aspect ratio:

mogrify -geometry 1000x *.jpg