[ImageMagick]
[promote]

The ImageMagick command line can be as simple as

  convert image.jpg image.png

or as complex as

  convert label.gif +matte \
    \( +clone  -shade 110x90 -normalize -negate +clone  -compose Plus -composite \) \
    \( -clone 0 -shade 110x50 -normalize -channel BG -fx 0 +channel -matte \) \
    -delete 0 +swap  -compose Multiply -composite  button.gif

Without knowing much about ImageMagick, you can probably figure out that the first command converts an image in the JPEG format to one in the PNG format. However, very few may realize the second, more complex command, gives a flat two-dimensional label a three-dimensional look with rich textures and simulated depth:

label ==> button

In the next sections we dissect the anatomy of the ImageMagick command line. Hopefully after carefully reading and better understanding how the command line works, you will be able to accomplish complex image-processing tasks without resorting to the sometimes daunting program interfaces.

The Anatomy of the Command Line

The ImageMagick command line consists of

  1. one or more required input filenames.
  2. zero, one, or more image settings.
  3. zero, one, or more image operators.
  4. zero, one, or more image sequence operators.
  5. zero, one, or more image stacks.
  6. zero or one output image filenames (required by convert, composite, montage, compare, import, and conjure).

You can find a detailed explanation of each of the constituent parts of the command line in the sections that follow.

Input Filename

ImageMagick extends the concept of a filename to include filename globbing, specifying an explicit image format, using built-in images and patterns, reading an image from standard in, selecting certain frames from an image, and selecting a region of an image. Each of these extensions are explained in the next few paragraphs.

    Filename Globbing
    In Unix shells, certain characters such as the asterisk (*) and question mark (?) automatically cause lists of filenames to be generated based on pattern matches. This feature is known as globbing. ImageMagick supports filename globbing for systems, such as Windows, that does not natively supports it. For example, suppose you want to convert 1.jpg, 2.jpg, 3.jpg, 4.jpg, and 5.jpg in your current directory to a GIF animation, you can refer to all of the files with this command:
      convert *.jpg images.gif
    

    Explicit Image Format
    Images are stored in a mryiad of image formats including the better known JPEG, PNG, TIFF and others. ImageMagick must know the format of the image before it can be read and processed. Most formats have a signature within the image that uniquely identifies the format. Failing that, ImageMagick leverages the filename extension to determine the format. For example, image.jpg tells ImageMagick it is reading an image in the JPEG format. In some cases the image may not contain a signature and/or the filename does not identify the image format. In these cases an explicit image format must be specified. For example, suppose our image is named image and contains raw red, green, and blue intensity values. ImageMagick has no way to determine the image format so we explicitly set one:
      convert -size 640x480 -depth 8 rgb:image image.png
    

    Built-in Images and Patterns
    ImageMagick has a number of built-in images and patterns. To utilize the checker board pattern, for example, use:
      convert -size 640x480 pattern:checkerboard checkerboard.png
    

    Standard In
    Unix and Linux permits the output of one command to be piped to another. ImageMagick permits piping one command to another with a filename of -. In this example we pipe the output of one convert to another:
      convert magick:logo gif:- | convert gif:- image.jpg
    
    Here the explicit format is optional. The GIF image format has a unique signature within the image so ImageMagick can readily recognize the format as GIF.

    Selecting Frames
    Some images formats contain more than one image frame. Perhaps you only want the first image or the last or some number of images in-between. You can specify which image frames to read by appending the image filename with the frame range enclosed in brackets. Here out image contains more than one frame but we only want the first:
      convert images.gif[0] image.png
    
    Unix shells generally interpret backets so we must enclose the filename in quotes:
      convert 'images.gif[0]' image.png
    
    You can read for than one image from a sequence with a frame range:
      convert 'images.gif[0-4]' images.mng
    
    Finally, you can read more than one image from a sequence out-of-order:
      convert 'images.gif[3,2,4]' images.mng
    
    This reads the third image in the sequence followed by the second and than the fourth.

    Selecting an Image Region
    Raw images are a sequence of color intensities without additional meta information such as width, height, or image signature. With raw image formats, you can specify a region of the image to read. In out example, the image is in the raw RGB format and is 6000 pixels wide and 4000 pixels high. However, we only want a region of 600 by 400 near the center of the image:
      convert -size 6000x4000 -depth 8 'rgb:image[600x400+1900+2900]' image.jpg
    
    You can get the same results with the -extract option:
      convert -size 6000x4000 -depth 8 'rgb:image' -extract 600x400+1900+2900 image.jpg
    

Image Setting

An image setting persists as it appears on the command line and may affect subsequent processing such as reading an image, an image operator, or when writing an image as appropriate. An image setting stays in effect until it is reset or the command line terminates. The image settings include:

Image Operator

An image operator differs from a setting in that it affects an image immediately as it appears on the command line. An operator is any command line option not listed as a image setting or image sequence operator. Unlike an image setting which persists until the command line terminates, an opterator is applied to an image and forgotten.

Image Sequence Operator

An image sequence operator differs from a setting in that it affects an image sequence immediately as it appears on the command line.

Image Stack

...

Output Filename

An output image filename is similar to an input filename except

 
© 1999-2005 ImageMagick Studio LLC