Difference between revisions of "ImageMagick/Cheatsheet"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
{| class="wikitable sortable collpsible" |
{| class="wikitable sortable collpsible" |
||
! Keyword !! Description !! Command |
! Keyword !! Description !! Command |
||
|- |
|||
| Adjust || Automatically adjust gamma values || <tt>convert <span class="input"><InputImage></span> -auto-gamma <span class="input"><OutputImage></span></tt> |
|||
|- |
|||
| Adjust || Automatically adjust levels || <tt>convert <span class="input"><InputImage></span> -auto-level <span class="input"><OutputImage></span></tt> |
|||
|- |
|- |
||
| Fonts || List available fonts || <tt>convert -list font</tt> |
| Fonts || List available fonts || <tt>convert -list font</tt> |
||
Line 13: | Line 17: | ||
|- |
|- |
||
| Mirror || Mirror horizontally || <tt>convert <span class="input"><InputImage></span> -flop <span class="input"><OutputImage></span></tt> |
| Mirror || Mirror horizontally || <tt>convert <span class="input"><InputImage></span> -flop <span class="input"><OutputImage></span></tt> |
||
|- |
|||
| Montage || Create an image index or collage || <tt>montage <span class="input"><InputImages></span> -geometry <span class="input"><Width></span>x<span class="input"><Height></span> <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 || 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> |
Latest revision as of 09:22, 17 July 2012
This is a collection of commands thought to be useful.
Keyword | Description | Command |
---|---|---|
Adjust | Automatically adjust gamma values | convert <InputImage> -auto-gamma <OutputImage> |
Adjust | Automatically adjust levels | convert <InputImage> -auto-level <OutputImage> |
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> |
Montage | Create an image index or collage | montage <InputImages> -geometry <Width>x<Height> <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> |