]> granicus.if.org Git - imagemagick/blob - README.txt
(no commit message)
[imagemagick] / README.txt
1 Introduction to ImageMagick
2
3   ImageMagick®, http://www.imagemagick.org, is a software suite to create,
4   edit, and compose bitmap images. It can read, convert and write images in
5   a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000,
6   PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. Use ImageMagick to scale,
7   flip, mirror, rotate, distort, shear and transform images, adjust image
8   colors, apply various special effects, or draw text, lines, polygons,
9   ellipses and Bézier curves.
10   
11   The functionality of ImageMagick is typically utilized from the command
12   line or you can use the features from programs written in your favorite
13   programming language. Choose from these interfaces: G2F (Ada), MagickCore
14   (C), MagickWand (C), ChMagick (Ch), ImageMagickObject (COM+), Magick++
15   (C++), JMagick (Java), L-Magick (Lisp), NMagick (Neko/haXe), MagickNet
16   (.NET), PascalMagick (Pascal), PerlMagick (Perl), MagickWand for PHP
17   (PHP), IMagick (PHP), PythonMagick (Python), RMagick (Ruby), or TclMagick
18   (Tcl/TK). With a language interface, use ImageMagick to modify or create
19   images dynamically and automagically.
20   
21   ImageMagick is free software delivered as a ready-to-run binary distribution
22   or as source code that you may freely use, copy, modify, and distribute
23   in both open and proprietary applications. It is distributed under the
24   Apache 2.0 license, approved by the OSI and recommended for use by the OSSCC.
25   
26   The ImageMagick development process ensures a stable API and ABI. Before
27   each ImageMagick release, we perform a comprehensive security assessment
28   that includes memory and thread error detection to prevent security
29   vulnerabilities.
30
31 Features and Capabilities
32   
33   Here are just a few examples of what ImageMagick can do:
34   
35       * Format conversion: convert an image from one format to another (e.g.
36         PNG to JPEG).
37       * Transform: resize, rotate, crop, flip or trim an image.
38       * Transparency: render portions of an image invisible.
39       * Draw: add shapes or text to an image.
40       * Decorate: add a border or frame to an image.
41       * Special effects: blur, sharpen, threshold, or tint an image.
42       * Animation: create a GIF animation sequence from a group of images.
43       * Text & comments: insert descriptive or artistic text in an image.
44       * Image identification: describe the format and attributes of an image.
45       * Composite: overlap one image over another.
46       * Montage: juxtapose image thumbnails on an image canvas.
47       * Generalized pixel distortion: correct for, or induce image distortions
48         including perspective.
49       * Morphology of shapes: extract features, describe shapes and recognize
50         patterns in images.
51       * Motion picture support: read and write the common image formats used in
52         digital film work.
53       * Image calculator: apply a mathematical expression to an image or image
54         channels.
55       * Discrete Fourier transform: implements the forward and inverse DFT.
56       * High dynamic-range images: accurately represent the wide range of
57         intensity levels found in real scenes ranging from the brightest direct
58         sunlight to the deepest darkest shadows.
59       * Encipher or decipher an image: convert ordinary images into
60         unintelligible gibberish and back again.
61       * Virtual pixel support: convenient access to pixels outside the image
62         region.
63       * Large image support: read, process, or write mega-, giga-, or
64         tera-pixel image sizes.
65       * Threads of execution support: ImageMagick is thread safe and most
66         internal algorithms are OpenMP-enabled to take advantage of speed-ups
67         offered by multicore processor chips.
68       * Distributed pixel cache: offload intermediate pixel storage to one or
69         more remote servers.
70       * Heterogeneous distributed processing: certain algorithms are
71         OpenCL-enabled to take advantage of speed-ups offered by executing in
72         concert across heterogeneous platforms consisting of CPUs, GPUs, and
73         other processors.
74       * ImageMagick on the iPhone: convert, edit, or compose images on your
75         iPhone.
76   
77   Examples of ImageMagick Usage, http://www.imagemagick.org/Usage/, shows how
78   to use ImageMagick from the command-line to accomplish any of these tasks and
79   much more. Also, see Fred's ImageMagick Scripts,
80   http://www.fmwconcepts.com/imagemagick/: a plethora of command-line scripts
81   that perform geometric transforms, blurs, sharpens, edging, noise removal,
82   and color manipulations.