Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shakyShane/1293e9815ba1e2bdec4170f933bc13f0 to your computer and use it in GitHub Desktop.
Save shakyShane/1293e9815ba1e2bdec4170f933bc13f0 to your computer and use it in GitHub Desktop.
ImageMagick cheat sheet

####Resize all JPEGs in the current folder to a 760px width, preserve aspect ratio mogrify -resize 760x *.jpg

####Crop the bottom 20% of all images in the current folder mogrify -gravity north -crop 100x80% +repage *.jpg

####Lower quality to 60% on all files mogrify -quality 60 *.jpg

####Invert colours mogrify -negate *.png

####Make grayscale convert flash-sale.png -colorspace Gray flash-sale.png

###Put image in centre of larger image convert codecentric.png -resize 600x -size 1280x720 xc:white +swap -gravity center -composite output/codecentric.png

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment