1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-16 15:17:51 +02:00
cheatsheets/imagemagick.md
Rico Sta. Cruz 6e2a22b82b Update
2016-01-07 12:47:48 +08:00

683 B

title
Imagemagick

Stuff

-resize 100x40
-crop 40x30+10+10   # (width)x(height)+(x)+y
-crop 40x30-10-10   # (width)x(height)+(x)+y
-flip               # vertical
-flop               # horizontal
-transpose          # flip vertical + rotate 90deg
-transverse         # flip horizontal + rotate 270deg
-trim               # trim image edges
-rotate 90

Resize to fit

convert input.jpg -resize 80x80^ -gravity center -extent 80x80 icon.png

Convert all images to another format

mogrify -format jpg -quality 85 *.png

Make a pdf

convert *.jpg hello.pdf

References