1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-15 23:18:52 +02:00
cheatsheets/imagemagick.md
Rico Sta. Cruz 511de900ba
Formatting updates (#2133)
- Update some sheets which have very long sections
- Remove `layout: 2017/sheet` (everything has the same layout now)
- Remove outdated sheets
2024-04-03 18:30:24 +11:00

1.1 KiB

title, intro
title intro
Imagemagick A quick reference for common [Imagemagick](https://www.imagemagick.org) commands and switches.

Common options

Option Description
-resize 100x40 Resize to a dimension
-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 Rotate 90 degrees

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