[ImageMagick]
[sponsor]

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 the ImageMagick command line, 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 should 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 an input filename to include: 1) filename globbing; 2) an explicit image format; 3) using built-in images and patterns; 4) reading an image from standard in; 5) selecting certain frames from an image; and 6) 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 conveniently refer to all of the JPEG 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 automagically 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 checkerboard pattern, for example, use:
      convert -size 640x480 pattern:checkerboard checkerboard.png
    

    Standard In
    Unix 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 convert to the display program:
      convert logo: gif:- | display gif:-
    
    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 our 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 more than one image from a sequence with a frame range. For example, suppose you want the first four frames of an image sequence:
      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 then 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 must specify the image width and height but you can also specify a region of the image to read. In our example, the image is in the raw 8-bit 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 -extract 600x400+1900+2900 rgb:image image.jpg
    

    Inline Image Resizing
    It is sometimes convenient to resize an image as they are read. Suppose you have hundreds of large JPEG images you want to convert to a sequence of PNG thumbails:
      convert '*.jpg' -resize 120x120 thumbnail%03d.png
    
    Here all the images are read first and subsequently resized. It is faster and less resource intensive to resize each image as they are read:
      convert '*.jpg[120x120]' thumbnail%03d.png
    

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:

In this example, –channel applies to each of the images since as we mentioned, settings persist:

  convert -channel RGB wand.png wizard.png images.png

Image Operator

An image operator differs from a setting in that it affects the 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 operator is applied to an image and forgotten. Choose from these image operators:

In this example, –negate negates the wand image but not the wizard:

  convert wand.png -negate wizard.png images.png

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. Choose from these image sequence operators:

Image Stack

In school, your teacher probably permitted you to work on problems on a scrap of paper and then copy the results to your test paper. An image stack is similiar. It permits you to work on an image or image sequence in isolation and then introduce the results back into the command line. The image stack is delineated with parenthesis. Image operators only affect images in the current stack. For example, we can limit the image rotation to just the wizard image like this:

  convert wand.gif \( wizard.gif -rotate 30 \) +append images.gif

Notice the parenthesis are escaped. That is there are preceded by a backslash. This is required under Unix since parenthesis are special shell characters. The backslash tells the shell not to interpret these characters and pass them to the ImageMagick command line.

In addition to the image operators already discussed, these image operators are most useful when processing images in an image stack:

The arguments to these operators are indexes into the image sequence by number, starting with zero, for the first image, and so on. However if you give a negative index, the images are indexed from the end (last image added). That is a index of -1 is the last image in the current image sequence, -2 for the second last and so on.

Output Filename

ImageMagick extends the concept of an output filename to include: 1) an explicit image format; 2) writing to standard out; and 3) specifying a TIFF tile size. Each of these extensions are explained in the next few paragraphs.

    Explicit Image Format
    Images can be stored in a mryiad of image formats including the better known JPEG, PNG, TIFF and others. ImageMagick must know the desired format of the image before it is written. ImageMagick leverages the filename extension to determine the format. For example, image.jpg tells ImageMagick to write the image in the JPEG format. In some cases the filename does not identify the image format. In these cases, the image is written in the format it was originally read unless an explicit image format is specified. For example, suppose we want to write our image to a filename of image in the raw red, green, and blue intensity format:
      convert image.jpg rgb:image
    

    Standard Out
    Unix 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 convert to the display program:
      convert logo: gif:- | display gif:-
    
    Here the explicit format is optional. The GIF image format has a signiture that uniquely identifies it so ImageMagick can readily recognize the format as GIF.

    TIFF Tile Size
    You can specify the TIFF tile size by appending the image filename with the tile width and height enclosed in brackets. Here, we write image tiles that are 64 pixels wide and 64 pixels high with this command:
      convert wizard.png wizard.tif[64x64]
    
    Unix shells generally interpret backets so we should enclose the filename in quotes:
      convert wizard.png 'wizard.tif[64x64]'
    
 
© 1999-2006 ImageMagick Studio LLC