Skip to content

Instantly share code, notes, and snippets.

@jruz
Last active October 11, 2016 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jruz/0bb6d654909f9071bc0e to your computer and use it in GitHub Desktop.
Save jruz/0bb6d654909f9071bc0e to your computer and use it in GitHub Desktop.
Imagemagick CLI CheatSheet
# image info
indentify /path/image.jpg
# format convert
convert original.jpg converted.png
# resize
convert original.jpg -resize 100x100 converted.jpg
# gif to jpg
convert -flatten original.gif converted.jpg
# pgn with transparency to jpg with white backgorund
convert original.png -background white -flatten converted.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment