Last active
October 11, 2016 11:52
-
-
Save jruz/0bb6d654909f9071bc0e to your computer and use it in GitHub Desktop.
Imagemagick CLI CheatSheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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