blob: e6d791de62021db401afbb9a4ad4dbc5dc5db8ff [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001Introduction to ImageMagick
2
cristye68f5992015-03-03 17:44:51 +00003 ImageMagick® is a software suite to create, edit, compose, or convert
4 bitmap images. It can read and write images in a variety of formats (over
5 200) including PNG, JPEG, JPEG-2000, GIF, TIFF, DPX, EXR, WebP, Postscript,
6 PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort,
7 shear and transform images, adjust image colors, apply various special
8 effects, or draw text, lines, polygons, ellipses and Bézier curves.
cristya1410932010-11-06 18:16:16 +00009
cristyc1c61662009-09-30 14:04:37 +000010 The functionality of ImageMagick is typically utilized from the command
11 line or you can use the features from programs written in your favorite
12 programming language. Choose from these interfaces: G2F (Ada), MagickCore
13 (C), MagickWand (C), ChMagick (Ch), ImageMagickObject (COM+), Magick++
14 (C++), JMagick (Java), L-Magick (Lisp), NMagick (Neko/haXe), MagickNet
15 (.NET), PascalMagick (Pascal), PerlMagick (Perl), MagickWand for PHP
16 (PHP), IMagick (PHP), PythonMagick (Python), RMagick (Ruby), or TclMagick
17 (Tcl/TK). With a language interface, use ImageMagick to modify or create
18 images dynamically and automagically.
cristyed8d54c2015-05-25 13:48:40 +000019
dirkb8dc6242015-06-06 11:09:29 +000020 ImageMagick utilizes multiple computational threads to increase performance
cristyed8d54c2015-05-25 13:48:40 +000021 and can read, process, or write mega-, giga-, or tera-pixel image sizes.
cristya1410932010-11-06 18:16:16 +000022
cristyc1c61662009-09-30 14:04:37 +000023 ImageMagick is free software delivered as a ready-to-run binary distribution
cristya1410932010-11-06 18:16:16 +000024 or as source code that you may freely use, copy, modify, and distribute
25 in both open and proprietary applications. It is distributed under the
26 Apache 2.0 license, approved by the OSI and recommended for use by the OSSCC.
27
cristy1bd5c4d2010-06-11 13:55:20 +000028 The ImageMagick development process ensures a stable API and ABI. Before
29 each ImageMagick release, we perform a comprehensive security assessment
cristya1410932010-11-06 18:16:16 +000030 that includes memory and thread error detection to prevent security
31 vulnerabilities.
cristyc1c61662009-09-30 14:04:37 +000032
cristye68f5992015-03-03 17:44:51 +000033 ImageMagick is available from http://www.imagemagick.org/download to
34 download. It runs on Linux, Windows, Mac Os X, iOS, Android OS, and others.
35
36 The authoritative ImageMagick web site is http://www.imagemagick.org.
37
38
cristy3ed852e2009-09-05 21:47:34 +000039Features and Capabilities
cristya1410932010-11-06 18:16:16 +000040
cristyc1c61662009-09-30 14:04:37 +000041 Here are just a few examples of what ImageMagick can do:
cristya1410932010-11-06 18:16:16 +000042
43 * Format conversion: convert an image from one format to another (e.g.
44 PNG to JPEG).
45 * Transform: resize, rotate, crop, flip or trim an image.
46 * Transparency: render portions of an image invisible.
47 * Draw: add shapes or text to an image.
48 * Decorate: add a border or frame to an image.
49 * Special effects: blur, sharpen, threshold, or tint an image.
50 * Animation: create a GIF animation sequence from a group of images.
51 * Text & comments: insert descriptive or artistic text in an image.
52 * Image identification: describe the format and attributes of an image.
53 * Composite: overlap one image over another.
54 * Montage: juxtapose image thumbnails on an image canvas.
55 * Generalized pixel distortion: correct for, or induce image distortions
56 including perspective.
cristy698968d2014-04-11 16:39:25 +000057 * Computer vision: Canny edge detection.
cristya1410932010-11-06 18:16:16 +000058 * Morphology of shapes: extract features, describe shapes and recognize
59 patterns in images.
60 * Motion picture support: read and write the common image formats used in
61 digital film work.
62 * Image calculator: apply a mathematical expression to an image or image
63 channels.
cristy4bc91a12014-12-27 01:45:49 +000064 * Connected component labeling: uniquely label connected regions in an
65 image.
cristya1410932010-11-06 18:16:16 +000066 * Discrete Fourier transform: implements the forward and inverse DFT.
cristydf6cf212014-01-29 18:06:41 +000067 * Perceptual hash: maps visually identical images to the same or similar
cristyeab3d612014-01-29 18:09:51 +000068 hash-- useful in image retrieval, authentication, indexing, or copy
69 detection as well as digital watermarking.
cristy48002432014-01-29 15:31:47 +000070 * Color management: accurate color management with color profiles or in
71 lieu of-- built-in gamma compression or expansion as demanded by the
72 colorspace.
cristya1410932010-11-06 18:16:16 +000073 * High dynamic-range images: accurately represent the wide range of
74 intensity levels found in real scenes ranging from the brightest direct
75 sunlight to the deepest darkest shadows.
76 * Encipher or decipher an image: convert ordinary images into
77 unintelligible gibberish and back again.
78 * Virtual pixel support: convenient access to pixels outside the image
79 region.
80 * Large image support: read, process, or write mega-, giga-, or
81 tera-pixel image sizes.
82 * Threads of execution support: ImageMagick is thread safe and most
83 internal algorithms are OpenMP-enabled to take advantage of speed-ups
84 offered by multicore processor chips.
cristy37aa5592013-01-27 22:59:34 +000085 * Distributed pixel cache: offload intermediate pixel storage to one or
86 more remote servers.
cristya1410932010-11-06 18:16:16 +000087 * Heterogeneous distributed processing: certain algorithms are
88 OpenCL-enabled to take advantage of speed-ups offered by executing in
89 concert across heterogeneous platforms consisting of CPUs, GPUs, and
90 other processors.
91 * ImageMagick on the iPhone: convert, edit, or compose images on your
92 iPhone.
93
94 Examples of ImageMagick Usage, http://www.imagemagick.org/Usage/, shows how
95 to use ImageMagick from the command-line to accomplish any of these tasks and
96 much more. Also, see Fred's ImageMagick Scripts,
97 http://www.fmwconcepts.com/imagemagick/: a plethora of command-line scripts
98 that perform geometric transforms, blurs, sharpens, edging, noise removal,
cristyc1c61662009-09-30 14:04:37 +000099 and color manipulations.
cristy4bc91a12014-12-27 01:45:49 +0000100