ImageMagick

I've written about ImageMagick before. It is a very useful tool with a great interface. It seems that whatever I want to do to an image is just one command away.

I used ImageMagick again yesterday when I wrote my first post with images. I needed to resize the images and combine two together. In an effort to not have to go searching every time I want to do some image manipulation I'm going to keep this living cheatsheet of commands I've found useful.

Convert HEIC to JPG

See my previous post.

Resize an image

convert original.jpg -resize 1000x1000! resized.jpg

Combine two images side-by-side

convert +append left.jpg right.jpg combo.jpg