README.txt 5.4 KB

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