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