Difference between revisions of "ImageMagick/Cheatsheet"
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
| Grayscale || Convert to grayscale || <tt>convert <span class="input"><InputImage></span> -type grayscale <span class="input"><OutputImage></span></tt> |
| Grayscale || Convert to grayscale || <tt>convert <span class="input"><InputImage></span> -type grayscale <span class="input"><OutputImage></span></tt> |
||
|- |
|- |
||
| |
| Mirror || Mirror vertically || <tt>convert <span class="input"><InputImage></span> -flip <span class="input"><OutputImage></span></tt> |
||
|- |
|||
| Mirror || Mirror horizontally || <tt>convert <span class="input"><InputImage></span> -flop <span class="input"><OutputImage></span></tt> |
|||
|- |
|||
| Rotate || Auto rotate photos using [http://en.wikipedia.org/wiki/Exchangeable_image_file_format EXIF] tags || <tt>mogrify -auto-orient <span class="input"><Image></span></tt> |
|||
|- |
|- |
||
| Rotate || Rotate Image clockwise by '''N''' degrees || <tt>convert <span class="input"><InputImage></span> -rotate <span class="input">+90</span> <span class="input"><OutputImage></span></tt> |
| Rotate || Rotate Image clockwise by '''N''' degrees || <tt>convert <span class="input"><InputImage></span> -rotate <span class="input">+90</span> <span class="input"><OutputImage></span></tt> |
Revision as of 10:48, 15 July 2012
This is a collection of commands thought to be useful.
Keyword | Description | Command |
---|---|---|
Fonts | List available fonts | convert -list font |
Formats | List supported formats | convert -list format |
Grayscale | Convert to grayscale | convert <InputImage> -type grayscale <OutputImage> |
Mirror | Mirror vertically | convert <InputImage> -flip <OutputImage> |
Mirror | Mirror horizontally | convert <InputImage> -flop <OutputImage> |
Rotate | Auto rotate photos using EXIF tags | mogrify -auto-orient <Image> |
Rotate | Rotate Image clockwise by N degrees | convert <InputImage> -rotate +90 <OutputImage> |
Rotate | Rotate Image counter clockwise by N degrees | convert <InputImage> -rotate -90 <OutputImage> |