ImageMagick is a collection of command-line tools that can be used to modify and manipulate images. While many people are used to using graphical user interfaces (GUIs) like [Gimp](images/GIMP.md) or Photoshop to edit images individually, these tools may not always be practical. For instance, if you need to process an image dynamically from a web script or apply the same operations to multiple images, or if you need to repeat a specific operation on the same or different images at different times, using a command-line utility like ImageMagick may be more efficient.
Blend will average the images together ('plus') according to the percentages given and each pixels transparency. If only a single percentage value is given it sets the weight of the composite or 'source' image, while the background image is weighted by the exact opposite amount. That is a `-blend 30%` merges 30% of the 'source' image with 70% of the 'destination' image. Thus it is equivalent to `-blend 30x70%`.
Brightness and Contrast values apply changes to the input image. They are not absolute settings. A brightness or contrast value of zero means no change. The range of values is -100 to +100 on each. Positive values increase the brightness or contrast and negative values decrease the brightness or contrast. To control only contrast, set the brightness=0. To control only brightness, set contrast=0 or just leave it off.
#### `-channel type`
Specify those image color channels to which subsequent operators are limited.
The channels above can also be specified as a comma-separated list or can be abbreviated as a concatenation of the letters 'R', 'G', 'B', 'A', 'O', 'C', 'M', 'Y', 'K'.
#### `-chop geometry`
Remove pixels from the interior of an image.
#### `-colorize value`
Colorize the image by an amount specified by value using the color specified by the most recent `-fill` setting.
Specify the amount of colorization as a percentage. Separate colorization values can be applied to the red, green, and blue channels of the image with a comma-delimited list of colorization values (e.g., `-colorize 0,0,50`).
#### `-composite`
Take the first image 'destination' and overlay the second 'source' image. The location of the 'source' or 'overlay' image is controlled according to `-gravity`, and `-geometry` settings.
#### `-contrast`
Enhance or reduce the image contrast.
#### `-copy geometry offset`
Copy pixels from one area of an image to another.
#### `-crop geometry{@}{!}`
Cut out one or more rectangular regions of the image.
#### `-draw string`
Annotate an image with one or more graphic primitives.
The shape primitives:
-`point x,y`
-`line x0,y0 x1,y1`
-`rectangle x0,y0 x1,y1`
-`roundRectangle x0,y0 x1,y1 wc,hc`
-`arc x0,y0 x1,y1 a0,a1`
-`ellipse x0,y0 rx,ry a0,a1`
-`circle x0,y0 x1,y1`
-`polyline x0,y0 ... xn,yn`
-`polygon x0,y0 ... xn,yn`
-`bezier x0,y0 ... xn,yn`
-`image operator x0,y0 w,h filename`
#### `-extract geometry`
Extract the specified area from image.
#### `-fill color`
Color to use when filling a graphic primitive.
#### `-flip`
Create a mirror image
reflect the scanlines in the vertical direction. The image will be mirrored upside-down.
#### `-flop`
Create a mirror image.
Reflect the scanlines in the horizontal direction, just like the image in a vertical mirror.
#### `-gaussian-blur radius`
Blur the image with a Gaussian operator.
#### `-geometry geometry`
Set the preferred size and location of the image.
#### `-gravity type`
Sets the current gravity suggestion for various other settings and options.