PageRenderTime 49ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 1ms

/ImageMagick/script/conjure.html

https://gitlab.com/ImageMagick/ImageMagick
HTML | 1134 lines | 854 code | 280 blank | 0 comment | 0 complexity | 2d06d4847eb158b859f88e3663714ed2 MD5 | raw file
Possible License(s): MPL-2.0-no-copyleft-exception
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
  5. <title>ImageMagick: Command-line Tools: Conjure</title>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  7. <meta name="application-name" content="ImageMagick"/>
  8. <meta name="description" content="ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-2000, GIF, WebP, Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves."/>
  9. <meta name="application-url" content="http://www.imagemagick.org"/>
  10. <meta name="generator" content="PHP"/>
  11. <meta name="keywords" content="command-line, tools:, conjure, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
  12. <meta name="rating" content="GENERAL"/>
  13. <meta name="robots" content="INDEX, FOLLOW"/>
  14. <meta name="generator" content="ImageMagick Studio LLC"/>
  15. <meta name="author" content="ImageMagick Studio LLC"/>
  16. <meta name="revisit-after" content="2 DAYS"/>
  17. <meta name="resource-type" content="document"/>
  18. <meta name="copyright" content="Copyright (c) 1999-2015 ImageMagick Studio LLC"/>
  19. <meta name="distribution" content="Global"/>
  20. <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1"/>
  21. <link rel="icon" href="../image/wand.png"/>
  22. <link rel="shortcut icon" href="../image/wand.ico"/>
  23. <link rel="stylesheet" href="../css/magick.php"/>
  24. </head>
  25. <body>
  26. <div class="main">
  27. <div class="magick-masthead">
  28. <div class="container">
  29. <script async="async" src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle"
  30. style="display:block"
  31. data-ad-client="ca-pub-3129977114552745"
  32. data-ad-slot="6345125851"
  33. data-ad-format="auto"></ins>
  34. <script>
  35. (adsbygoogle = window.adsbygoogle || []).push({});
  36. </script>
  37. <nav class="magick-nav">
  38. <a class="magick-nav-item " href="../index.php">Home</a>
  39. <a class="magick-nav-item " href="binary-releases.php">Download</a>
  40. <a class="magick-nav-item " href="command-line-tools.php">Tools</a>
  41. <a class="magick-nav-item " href="command-line-processing.php">Command-line</a>
  42. <a class="magick-nav-item " href="resources.php">Resources</a>
  43. <a class="magick-nav-item " href="api.php">Develop</a>
  44. <a class="magick-nav-item " href="search.php">Search</a>
  45. <a class="magick-nav-item pull-right" href="http://www.imagemagick.org/discourse-server/">Community</a>
  46. </nav>
  47. </div>
  48. </div>
  49. <div class="container">
  50. <div class="magick-header">
  51. <p class="text-center"><a href="conjure.php#usage">Example Usage</a> <a href="conjure.php#options">Option Summary</a> <a href="conjure.php#msl">Magick Scripting Language (MSL)</a> </p>
  52. <p class="lead magick-description">The <code>conjure</code> program gives you the ability to perform custom image processing tasks from a script written in the Magick Scripting Language (MSL). MSL is XML-based and consists of action statements with attributes. Actions include reading an image, processing an image, getting attributes from an image, writing an image, and more. An attribute is a key/value pair that modifies the behavior of an action. See <a href="command-line-processing.php">Command Line Processing</a> for advice on how to structure your <code>conjure</code> command or see below for example usages of the command.</p>
  53. <h2 class="magick-header"><a id="usage"></a>Example Usage</h2>
  54. <p>We list a few examples of the <code>conjure</code> command here to illustrate its usefulness and ease of use. To get started, here is simple <code>conjure</code> command:</p>
  55. <pre>
  56. conjure -dimensions 400x400 incantation.msl
  57. </pre>
  58. <p>The MSL script <a href="../source/incantation.msl">incantation.msl</a> used above is here:</p>
  59. <pre>
  60. &lt;?xml version="1.0" encoding="UTF-8"?&gt;
  61. &lt;image&gt;
  62. &lt;read filename="image.gif" /&gt;
  63. &lt;get width="base-width" height="base-height" /&gt;
  64. &lt;resize geometry="%[dimensions]" /&gt;
  65. &lt;get width="resize-width" height="resize-height" /&gt;
  66. &lt;print output="Image sized from %[base-width]x%[base-height] to %[resize-width]x%[resize-height].\n" /&gt;
  67. &lt;write filename="image.png" /&gt;
  68. &lt;/image&gt;
  69. </pre>
  70. <p>In this example, a family stayed home for their vacation but as far as their friends are concerned they went to a beautiful beach in the Caribbean:</p>
  71. <pre>
  72. &lt;?xml version="1.0" encoding="UTF-8"?>
  73. &lt;group>
  74. &lt;image id="family">
  75. &lt;read filename="family.gif"/>
  76. &lt;resize geometry="300x300"/>
  77. &lt;/image>
  78. &lt;image id="palm-trees">
  79. &lt;read filename="palm-trees.gif"/>
  80. &lt;resize geometry="300x100"/>
  81. &lt;/image>
  82. &lt;image>
  83. &lt;read filename="beach.jpg"/>
  84. &lt;composite image="family" geometry="+30+40"/>
  85. &lt;composite image="palm-trees" geometry="+320+90"/>
  86. &lt;/image>
  87. &lt;write filename="family-vacation.png"/>
  88. &lt;/group>
  89. </pre>
  90. <p>Here we display the width in pixels of text for a particular font and pointsize.</p>
  91. <pre>
  92. &lt;?xml version="1.0" encoding="UTF-8"?&gt;
  93. &lt;image&gt;
  94. &lt;query-font-metrics text="ImageMagick" font="helvetica" pointsize="48" /&gt;
  95. &lt;print output="Text width is %[msl:font-metrics.width] pixels.\n" /&gt;
  96. &lt;/image&gt;
  97. </pre>
  98. <p>The <code>query-font-metrics</code> tag supports these properties:</p>
  99. <pre>
  100. msl:font-metrics.pixels_per_em.x
  101. msl:font-metrics.pixels_per_em.y
  102. msl:font-metrics.ascent
  103. msl:font-metrics.descent
  104. msl:font-metrics.width
  105. msl:font-metrics.height
  106. msl:font-metrics.max_advance
  107. msl:font-metrics.bounds.x1
  108. msl:font-metrics.bounds.y1
  109. msl:font-metrics.bounds.x2
  110. msl:font-metrics.bounds.y2
  111. msl:font-metrics.origin.x
  112. msl:font-metrics.origin.y
  113. </pre>
  114. <p>MSL supports most methods and attributes discussed in the <a href="perl-magick.php">Perl API for ImageMagick</a>.
  115. </p>
  116. <p>In addition, MSL supports the <code>swap</code> element with a single <code>indexes</code> element.</p>
  117. <p>You can find additional examples of using <code>conjure</code> in <a href="http://www.ibm.com/developerworks/library/l-graf/?ca=dnt-428">Graphics from the Command Line</a>. Further discussion is available in <a href="http://www.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine">More Graphics from the Command Line</a> and <a href="http://www.imagemagick.org/Usage/">Examples of ImageMagick Usage</a>.</p>
  118. <h2 class="magick-header"><a id="options"></a>Option Summary</h2>
  119. <p>The <code>conjure</code> command recognizes these options. Click on an option to get more details about how that option works.</p>
  120. <table class="table table-condensed table-striped">
  121. <tbody>
  122. <tr>
  123. <th align="left">Option</th>
  124. <th align="left">Description</th>
  125. </tr>
  126. <tr>
  127. <td><a href="command-line-options.php#debug">-debug <var>events</var></a></td>
  128. <td>display copious debugging information</td>
  129. </tr>
  130. <tr>
  131. <td><a href="command-line-options.php#help">-help</a></td>
  132. <td>print program options</td>
  133. </tr>
  134. <tr>
  135. <td><a href="command-line-options.php#log">-log <var>format</var></a></td>
  136. <td>format of debugging information</td>
  137. </tr>
  138. <tr>
  139. <td><a href="command-line-options.php#monitor">-monitor</a></td>
  140. <td>monitor progress</td>
  141. </tr>
  142. <tr>
  143. <td><a href="command-line-options.php#quiet">-quiet</a></td>
  144. <td>suppress all warning messages</td>
  145. </tr>
  146. <tr>
  147. <td><a href="command-line-options.php#regard-warnings">-regard-warnings</a></td>
  148. <td>pay attention to warning messages.</td>
  149. </tr>
  150. <tr>
  151. <td><a href="command-line-options.php#seed">-seed <var>value</var></a></td>
  152. <td>seed a new sequence of pseudo-random numbers</td>
  153. </tr>
  154. <tr>
  155. <td><a href="command-line-options.php#verbose">-verbose</a></td>
  156. <td>print detailed information about the image</td>
  157. </tr>
  158. <tr>
  159. <td><a href="command-line-options.php#version">-version</a></td>
  160. <td>print version information</td>
  161. </tr>
  162. </tbody>
  163. </table>
  164. <h2 class="magick-header"><a id="msl"></a>Magick Scripting Language</h2>
  165. <p>The <code>conjure</code> command recognizes these MSL elements. Any element with a strike-thru is not supported yet.</p>
  166. <table class="table table-condensed table-striped">
  167. <caption>Magick Scripting Language (MSL)</caption>
  168. <tbody>
  169. <tr>
  170. <th>Method</th>
  171. <th style="width: 40%;">Parameters</th>
  172. <th style="width: 40%;">Description</th>
  173. </tr>
  174. <tr>
  175. <td><strike>adaptiveblur</strike></td>
  176. <td>geometry="geometry", radius="double", sigma="double", bias="double", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  177. <td>adaptively blur the image with a Gaussian operator of the given radius and standard deviation (sigma). Decrease the effect near edges.</td>
  178. </tr>
  179. <tr>
  180. <td><strike>adaptiveresize</strike></td>
  181. <td>geometry="geometry", width="integer", height="integer", filter="Point, Box, Triangle, Hermite, Hanning, Hamming, Blackman, Gaussian, Quadratic, Cubic, Catrom, Mitchell, Lanczos, Bessel, Sinc", support="double", blur="double"</td>
  182. <td>adaptively resize image using data dependant triangulation. Specify blur &gt; 1 for blurry or &lt; 1 for sharp</td>
  183. </tr>
  184. <tr>
  185. <td><strike>adaptivesharpen</strike></td>
  186. <td>geometry="geometry", radius="double", sigma="double", bias="double", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  187. <td>adaptively sharpen the image with a Gaussian operator of the given radius and standard deviation (sigma). Increase the effect near edges.</td>
  188. </tr>
  189. <tr>
  190. <td><strike>adaptivethreshold</strike></td>
  191. <td>geometry="geometry", width="integer", height="integer", offset="integer"</td>
  192. <td>local adaptive thresholding.</td>
  193. </tr>
  194. <tr>
  195. <td><strike>addnoise</strike></td>
  196. <td>noise="Uniform, Gaussian, Multiplicative, Impulse, Laplacian, Poisson", attenuate="double", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  197. <td>add noise to an image</td>
  198. </tr>
  199. <tr>
  200. <td><strike>affinetransform</strike></td>
  201. <td>affine="array of float values", translate="float, float", scale= "float, float", rotate="float", skewX="float", skewY="float", interpolate="Average, Bicubic, Bilinear, Filter, Integer, Mesh, NearestNeighbor", background="color name"</td>
  202. <td>affine transform image</td>
  203. </tr>
  204. <tr>
  205. <td><strike>affinity</strike></td>
  206. <td>image="image-handle", method="None, FloydSteinberg, Riemersma"</td>
  207. <td>choose a particular set of colors from this image</td>
  208. </tr>
  209. <tr>
  210. <td>&lt;annotate&gt;</td>
  211. <td>text="string", font="string", family="string", style="Normal, Italic, Oblique, Any", stretch="Normal, UltraCondensed, ExtraCondensed, Condensed, SemiCondensed, SemiExpanded, Expanded, ExtraExpanded, UltraExpanded", weight="integer", pointsize="integer", density="geometry", stroke="color name", strokewidth="integer", fill="color name", undercolor="color name", kerning="float", geometry="geometry", gravity="NorthWest, North, NorthEast, West, Center, East, SouthWest, South, SouthEast", antialias="true, false", x="integer", y="integer", affine="array of float values", translate="float, float", scale="float, float", rotate="float". skewX="float", skewY= "float", align="Left, Center, Right", encoding="UTF-8", interline-spacing="double", interword-spacing="double", direction="right-to-left, left-to-right"</td>
  212. <td>annotate an image with text. See QueryFontMetrics to get font metrics without rendering any text.</td>
  213. </tr>
  214. <tr>
  215. <td><strike>autogamma</strike></td>
  216. <td>channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  217. <td>automagically adjust gamma level of image</td>
  218. </tr>
  219. <tr>
  220. <td><strike>autolevel</strike></td>
  221. <td>channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  222. <td>automagically adjust color levels of image</td>
  223. </tr>
  224. <tr>
  225. <td><strike>autoorient</strike></td>
  226. <td> </td>
  227. <td>adjusts an image so that its orientation is suitable for viewing (i.e. top-left orientation)</td>
  228. </tr>
  229. <tr>
  230. <td><strike>blackthreshold</strike></td>
  231. <td>threshold="string", , channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  232. <td>force all pixels below the threshold intensity into black</td>
  233. </tr>
  234. <tr>
  235. <td><strike>blueshift</strike></td>
  236. <td>factor="double",</td>
  237. <td>simulate a scene at nighttime in the moonlight. Start with a factor of 1.5.</td>
  238. </tr>
  239. <tr>
  240. <td>&lt;blur&gt;</td>
  241. <td>geometry="geometry", radius="double", sigma="double", bias="double", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  242. <td>reduce image noise and reduce detail levels with a Gaussian operator of the given radius and standard deviation (sigma).</td>
  243. </tr>
  244. <tr>
  245. <td>&lt;border&gt;</td>
  246. <td>geometry="geometry", width="integer", height="integer", bordercolor="color name", compose="Undefined, Add, Atop, Blend, Bumpmap, Clear, ColorBurn, ColorDodge, Colorize, CopyBlack, CopyBlue, CopyCMYK, Cyan, CopyGreen, Copy, CopyMagenta, CopyOpacity, CopyRed, RGB, CopyYellow, Darken, Dst, Difference, Displace, Dissolve, DstAtop, DstIn, DstOut, DstOver, Dst, Exclusion, HardLight, Hue, In, Lighten, Luminize, Minus, Modulate, Multiply, None, Out, Overlay, Over, Plus, ReplaceCompositeOp, Saturate, Screen, SoftLight, Src, SrcAtop, SrcIn, SrcOut, SrcOver, Src, Subtract, Threshold, Xor ",</td>
  247. <td>surround the image with a border of color</td>
  248. </tr>
  249. <tr>
  250. <td>&lt;charcoal&gt;</td>
  251. <td>geometry="geometry", radius="double", sigma="double"</td>
  252. <td>simulate a charcoal drawing</td>
  253. </tr>
  254. <tr>
  255. <td>&lt;chop&gt;</td>
  256. <td>geometry="geometry", width="integer", height="integer", x="integer", y="integer"</td>
  257. <td>chop an image</td>
  258. </tr>
  259. <tr>
  260. <td><strike>clamp</strike></td>
  261. <td>channel="Red, RGB, All, etc."</td>
  262. <td>set each pixel whose value is below zero to zero and any the pixel whose value is above the quantum range to the quantum range (e.g. 65535) otherwise the pixel value remains unchanged.</td>
  263. </tr>
  264. <tr>
  265. <td><strike>clip</strike></td>
  266. <td>id="name", inside=""true, false"",</td>
  267. <td>apply along a named path from the 8BIM profile.</td>
  268. </tr>
  269. <tr>
  270. <td><strike>clipmask</strike></td>
  271. <td>mask="image-handle"</td>
  272. <td>clip image as defined by the image mask</td>
  273. </tr>
  274. <tr>
  275. <td><strike>clut</strike></td>
  276. <td>image="image-handle", interpolate="Average, Bicubic, Bilinear, Filter, Integer, Mesh, NearestNeighbor", channel="Red, RGB, All, etc."</td>
  277. <td>apply a color lookup table to an image sequence</td>
  278. </tr>
  279. <tr>
  280. <td><strike>coalesce</strike></td>
  281. <td> </td>
  282. <td>merge a sequence of images</td>
  283. </tr>
  284. <tr>
  285. <td><strike>color</strike></td>
  286. <td>color="color name"</td>
  287. <td>set the entire image to this color.</td>
  288. </tr>
  289. <tr>
  290. <td><strike>colordecisionlist</strike></td>
  291. <td>filename="string",</td>
  292. <td>color correct with a color decision list.</td>
  293. </tr>
  294. <tr>
  295. <td>&lt;colorize&gt;</td>
  296. <td>fill="color name", blend="string"</td>
  297. <td>colorize the image with the fill color</td>
  298. </tr>
  299. <tr>
  300. <td><strike>colormatrix</strike></td>
  301. <td>matrix="array of float values"</td>
  302. <td>apply color correction to the image. Although you can use variable sized matrices, typically you use a 5 x 5 for an RGBA image and a 6x6 for CMYKA. A 6x6 matrix is required for offsets (populate the last column with normalized values).</td>
  303. </tr>
  304. <tr>
  305. <td>&lt;comment&gt;</td>
  306. <td>string</td>
  307. <td>add a comment to your image</td>
  308. </tr>
  309. <tr>
  310. <td><strike>comparelayers</strike></td>
  311. <td>method="any, clear, overlay"</td>
  312. <td>compares each image with the next in a sequence and returns the minimum bounding region of any pixel differences it discovers. Images do not have to be the same size, though it is best that all the images are coalesced (images are all the same size, on a flattened canvas, so as to represent exactly how a specific frame should look).</td>
  313. </tr>
  314. <tr>
  315. <td>&lt;composite&gt;</td>
  316. <td>image="image-handle", compose="Undefined, Add, Atop, Blend, Bumpmap, Clear, ColorBurn, ColorDodge, Colorize, CopyBlack, CopyBlue, CopyCMYK, Cyan, CopyGreen, Copy, CopyMagenta, CopyOpacity, CopyRed, RGB, CopyYellow, Darken, Dst, Difference, Displace, Dissolve, DstAtop, DstIn, DstOut, DstOver, Dst, Exclusion, HardLight, Hue, In, Lighten, Luminize, Minus, Modulate, Multiply, None, Out, Overlay, Over, Plus, ReplaceCompositeOp, Saturate, Screen, SoftLight, Src, SrcAtop, SrcIn, SrcOut, SrcOver, Src, Subtract, Threshold, Xor ", mask="image-handle", geometry="geometry", x="integer", y="integer", gravity="NorthWest, North, NorthEast, West, Center, East, SouthWest, South, SouthEast", opacity="integer", tile="True, False", rotate="double", color="color name", blend="geometry", interpolate="undefined, average, bicubic, bilinear, filter, integer, mesh, nearest-neighbor, spline"</td>
  317. <td>composite one image onto another. Use the rotate parameter in concert with the tile parameter.</td>
  318. </tr>
  319. <tr>
  320. <td>&lt;contrast&gt;</td>
  321. <td>sharpen="True, False"</td>
  322. <td>enhance or reduce the image contrast</td>
  323. </tr>
  324. <tr>
  325. <td><strike>contraststretch</strike></td>
  326. <td>levels="string", 'black-point'="double", 'white-point'="double", channel="Red, RGB, All, etc."</td>
  327. <td>improve the contrast in an image by `stretching' the range of intensity values</td>
  328. </tr>
  329. <tr>
  330. <td><strike>convolve</strike></td>
  331. <td>coefficients="array of float values", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow", bias="double"</td>
  332. <td>apply a convolution kernel to the image. Given a kernel "order" , you would supply "order*order" float values (e.g. 3x3 implies 9 values).</td>
  333. </tr>
  334. <tr>
  335. <td>&lt;crop&gt;</td>
  336. <td>geometry="geometry", width="integer", height="integer", x="integer", y="integer", fuzz="double", gravity="NorthWest, North, NorthEast, West, Center, East, SouthWest, South, SouthEast"</td>
  337. <td>crop an image</td>
  338. </tr>
  339. <tr>
  340. <td><strike>cyclecolormap</strike></td>
  341. <td>amount="integer"</td>
  342. <td>displace image colormap by amount</td>
  343. </tr>
  344. <tr>
  345. <td><strike>decipher</strike></td>
  346. <td>passphrase="string"</td>
  347. <td>convert cipher pixels to plain pixels</td>
  348. </tr>
  349. <tr>
  350. <td><strike>deconstruct</strike></td>
  351. <td> </td>
  352. <td>break down an image sequence into constituent parts</td>
  353. </tr>
  354. <tr>
  355. <td><strike>deskew</strike></td>
  356. <td>geometry="string",threshold="double"</td>
  357. <td>straighten the image</td>
  358. </tr>
  359. <tr>
  360. <td>&lt;despeckle&gt;</td>
  361. <td> </td>
  362. <td>reduce the speckles within an image</td>
  363. </tr>
  364. <tr>
  365. <td><strike>difference</strike></td>
  366. <td>image="image-handle"</td>
  367. <td>compute the difference metrics between two images </td>
  368. </tr>
  369. <tr>
  370. <td><strike>distort</strike></td>
  371. <td>points="array of float values", method="Affine, AffineProjection, Bilinear, Perspective, Resize, ScaleRotateTranslate", virtual-pixel="Background Black Constant Dither Edge Gray Mirror Random Tile Transparent White", best-fit="True, False"</td>
  372. <td>distort image</td>
  373. </tr>
  374. <tr>
  375. <td>&lt;draw&gt;</td>
  376. <td>primitive="point, line, rectangle, arc, ellipse, circle, path, polyline, polygon, bezier, color, matte, text, @"filename"", points="string" , method=""Point, Replace, Floodfill, FillToBorder, Reset"", stroke="color name", fill="color name", font="string", pointsize="integer", strokewidth="float", antialias="true, false", bordercolor="color name", x="float", y="float", dash-offset="float", dash-pattern="array of float values", affine="array of float values", translate="float, float", scale="float, float", rotate="float", skewX="float", skewY="float", interpolate="undefined, average, bicubic, bilinear, mesh, nearest-neighbor, spline", kerning="float", text="string", vector-graphics="string", interline-spacing="double", interword-spacing="double", direction="right-to-left, left-to-right"</td>
  377. <td>annotate an image with one or more graphic primitives.</td>
  378. </tr>
  379. <tr>
  380. <td><strike>encipher</strike></td>
  381. <td>passphrase="string"</td>
  382. <td>convert plain pixels to cipher pixels</td>
  383. </tr>
  384. <tr>
  385. <td>&lt;edge&gt;</td>
  386. <td>radius="double"</td>
  387. <td>enhance edges within the image with a convolution filter of the given radius.</td>
  388. </tr>
  389. <tr>
  390. <td>&lt;emboss&gt;</td>
  391. <td>geometry="geometry", radius="double", sigma="double"</td>
  392. <td>emboss the image with a convolution filter of the given radius and standard deviation (sigma).</td>
  393. </tr>
  394. <tr>
  395. <td>&lt;enhance&gt;</td>
  396. <td> </td>
  397. <td>apply a digital filter to enhance a noisy image</td>
  398. </tr>
  399. <tr>
  400. <td>&lt;equalize&gt;</td>
  401. <td>channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow" </td>
  402. <td>perform histogram equalization to the image</td>
  403. </tr>
  404. <tr>
  405. <td><strike>extent</strike></td>
  406. <td>geometry="geometry", width="integer", height="integer", x="integer", y="integer", fuzz="double", background="color name", gravity="NorthWest, North, NorthEast, West, Center, East, SouthWest, South, SouthEast"</td>
  407. <td>set the image size</td>
  408. </tr>
  409. <tr>
  410. <td><strike>evaluate</strike></td>
  411. <td>value="double", operator=""Add, And, Divide, LeftShift, Max, Min, Multiply, Or, Rightshift, Subtract, Xor"", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow" </td>
  412. <td>apply an arithmetic, relational, or logical expression to the image</td>
  413. </tr>
  414. <tr>
  415. <td><strike>filter</strike></td>
  416. <td>kernel="string", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow", bias="double"</td>
  417. <td>apply a convolution kernel to the image.</td>
  418. </tr>
  419. <tr>
  420. <td>&lt;flip&gt;</td>
  421. <td> </td>
  422. <td>reflect the image scanlines in the vertical direction</td>
  423. </tr>
  424. <tr>
  425. <td>&lt;flop&gt;</td>
  426. <td> </td>
  427. <td>reflect the image scanlines in the horizontal direction</td>
  428. </tr>
  429. <tr>
  430. <td><strike>floodfillpaint</strike></td>
  431. <td>geometry="geometry", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow", x="integer", y="integer" , fill="color name", bordercolor="color name", fuzz="double", invert="True, False"</td>
  432. <td>changes the color value of any pixel that matches the color of the target pixel and is a neighbor. If you specify a border color, the color value is changed for any neighbor pixel that is not that color.</td>
  433. </tr>
  434. <tr>
  435. <td><strike>forwardfouriertransform</strike></td>
  436. <td>magnitude="True, False"</td>
  437. <td>implements the forward discrete Fourier transform (DFT)</td>
  438. </tr>
  439. <tr>
  440. <td>&lt;frame&gt;</td>
  441. <td>geometry="geometry", width="integer", height="integer", inner="integer", outer="integer", fill="color name", compose="Undefined, Add, Atop, Blend, Bumpmap, Clear, ColorBurn, ColorDodge, Colorize, CopyBlack, CopyBlue, CopyCMYK, Cyan, CopyGreen, Copy, CopyMagenta, CopyOpacity, CopyRed, RGB, CopyYellow, Darken, Dst, Difference, Displace, Dissolve, DstAtop, DstIn, DstOut, DstOver, Dst, Exclusion, HardLight, Hue, In, Lighten, Luminize, Minus, Modulate, Multiply, None, Out, Overlay, Over, Plus, ReplaceCompositeOp, Saturate, Screen, SoftLight, Src, SrcAtop, SrcIn, SrcOut, SrcOver, Src, Subtract, Threshold, Xor ",</td>
  442. <td>surround the image with an ornamental border</td>
  443. </tr>
  444. <tr>
  445. <td><strike>function</strike></td>
  446. <td>parameters="array of float values", function="Sin", virtual-pixel="Background Black Constant Dither Edge Gray Mirror Random Tile Transparent White"</td>
  447. <td>apply a function to the image</td>
  448. </tr>
  449. <tr>
  450. <td>&lt;gamma&gt;</td>
  451. <td>gamma="string", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  452. <td>gamma correct the image</td>
  453. </tr>
  454. <tr>
  455. <td><strike>gaussianblur</strike></td>
  456. <td>geometry="geometry", radius="double", sigma="double", bias="double", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  457. <td>reduce image noise and reduce detail levels with a Gaussian operator of the given radius and standard deviation (sigma).</td>
  458. </tr>
  459. <tr>
  460. <td><strike>getpixel</strike></td>
  461. <td>geometry="geometry", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow", normalize="true, false", x="integer", y="integer"</td>
  462. <td>get a single pixel. By default normalized pixel values are returned.</td>
  463. </tr>
  464. <tr>
  465. <td><strike>getpixels</strike></td>
  466. <td>geometry="geometry", width="integer", height="integer", x="integer", y="integer", map="string", normalize="true, false"</td>
  467. <td>get image pixels as defined by the map (e.g. "RGB", "RGBA", etc.). By default non-normalized pixel values are returned.</td>
  468. </tr>
  469. <tr>
  470. <td><strike>grayscale</strike></td>
  471. <td>channel="Average, Brightness, Lightness, Rec601Luma, Rec601Luminance, Rec709Luma, Rec709Luminance, RMS"</td>
  472. <td>convert image to grayscale</td>
  473. </tr>
  474. <tr>
  475. <td><strike>haldclut</strike></td>
  476. <td>image="image-handle", channel="Red, RGB, All, etc."</td>
  477. <td>apply a Hald color lookup table to an image sequence</td>
  478. </tr>
  479. <tr>
  480. <td><strike>identify</strike></td>
  481. <td>file="file", features="distance", unique="True, False"</td>
  482. <td>identify the attributes of an image</td>
  483. </tr>
  484. <tr>
  485. <td>&lt;implode&gt;</td>
  486. <td>amount="double", interpolate="undefined, average, bicubic, bilinear, mesh, nearest-neighbor, spline"</td>
  487. <td>implode image pixels about the center</td>
  488. </tr>
  489. <tr>
  490. <td><strike>inversediscretefouriertransform</strike></td>
  491. <td>magnitude="True, False"</td>
  492. <td>implements the inverse discrete Fourier transform (DFT)</td>
  493. </tr>
  494. <tr>
  495. <td>&lt;label&gt;</td>
  496. <td>string</td>
  497. <td>assign a label to an image</td>
  498. </tr>
  499. <tr>
  500. <td><strike>layers</strike></td>
  501. <td>method="coalesce, compare-any, compare-clear, compare-over, composite, dispose, flatten, merge, mosaic, optimize, optimize-image, optimize-plus, optimize-trans, remove-dups, remove-zero", compose="Undefined, Add, Atop, Blend, Bumpmap, Clear, ColorBurn, ColorDodge, Colorize, CopyBlack, CopyBlue, CopyCMYK, Cyan, CopyGreen, Copy, CopyMagenta, CopyOpacity, CopyRed, RGB, CopyYellow, Darken, Dst, Difference, Displace, Dissolve, DstAtop, DstIn, DstOut, DstOver, Dst, Exclusion, HardLight, Hue, In, Lighten, LinearLight, Luminize, Minus, Modulate, Multiply, None, Out, Overlay, Over, Plus, ReplaceCompositeOp, Saturate, Screen, SoftLight, Src, SrcAtop, SrcIn, SrcOut, SrcOver, Src, Subtract, Threshold, Xor ", dither="true, false"</td>
  502. <td>compare each image the GIF disposed forms of the previous image in the sequence. From this, attempt to select the smallest cropped image to replace each frame, while preserving the results of the animation.</td>
  503. </tr>
  504. <tr>
  505. <td>&lt;level&gt;</td>
  506. <td>levels="string", 'black-point'="double", 'gamma'="double", 'white-point'="double", channel="Red, RGB, All, etc."</td>
  507. <td>adjust the level of image contrast</td>
  508. </tr>
  509. <tr>
  510. <td><strike>levelcolors</strike></td>
  511. <td>invert=&gt;"True, False", 'black-point'="string", 'white-point'="string", channel="Red, RGB, All, etc."</td>
  512. <td>level image with the given colors</td>
  513. </tr>
  514. <tr>
  515. <td><strike>linearstretch</strike></td>
  516. <td>levels="string", 'black-point'="double", 'white-point'="double"</td>
  517. <td>linear with saturation stretch</td>
  518. </tr>
  519. <tr>
  520. <td><strike>liquidresize</strike></td>
  521. <td>geometry="geometry", width="integer", height="integer", delta-x="double", rigidity="double"</td>
  522. <td>rescale image with seam-carving.</td>
  523. </tr>
  524. <tr>
  525. <td>&lt;magnify&gt;</td>
  526. <td> </td>
  527. <td>double the size of the image with pixel art scaling</td>
  528. </tr>
  529. <tr>
  530. <td><strike>mask</strike></td>
  531. <td>mask="image-handle"</td>
  532. <td>composite image pixels as defined by the mask</td>
  533. </tr>
  534. <tr>
  535. <td><strike>mattefloodfill</strike></td>
  536. <td>geometry="geometry", x="integer", y="integer" , matte="integer", bordercolor="color name", fuzz="double", invert="True, False"</td>
  537. <td>changes the matte value of any pixel that matches the color of the target pixel and is a neighbor. If you specify a border color, the matte value is changed for any neighbor pixel that is not that color.</td>
  538. </tr>
  539. <tr>
  540. <td><strike>medianfilter</strike></td>
  541. <td>geometry="geometry", width="integer", height="integer", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  542. <td>replace each pixel with the median intensity pixel of a neighborhood.</td>
  543. </tr>
  544. <tr>
  545. <td>&lt;minify&gt;</td>
  546. <td> </td>
  547. <td>half the size of an image</td>
  548. </tr>
  549. <tr>
  550. <td><strike>mode</strike></td>
  551. <td>geometry="geometry", width="integer", height="integer", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  552. <td>make each pixel the "predominant color" of the neighborhood.</td>
  553. </tr>
  554. <tr>
  555. <td>&lt;modulate&gt;</td>
  556. <td>factor="geometry", brightness="double", saturation="double", hue="double", lightness="double", whiteness="double", blackness="double" </td>
  557. <td>vary the brightness, saturation, and hue of an image by the specified percentage</td>
  558. </tr>
  559. <tr>
  560. <td><strike>morphology</strike></td>
  561. <td>kernel="string", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow", iterations="integer"</td>
  562. <td>apply a morphology method to the image.</td>
  563. </tr>
  564. <tr>
  565. <td><strike>motionblur</strike></td>
  566. <td>geometry="geometry", radius="double", sigma="double", angle="double", bias="double", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  567. <td>reduce image noise and reduce detail levels with a Gaussian operator of the given radius and standard deviation (sigma) at the given angle to simulate the effect of motion</td>
  568. </tr>
  569. <tr>
  570. <td>&lt;negate&gt;</td>
  571. <td>gray="True, False", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  572. <td>replace each pixel with its complementary color (white becomes black, yellow becomes blue, etc.)</td>
  573. </tr>
  574. <tr>
  575. <td>&lt;normalize&gt;</td>
  576. <td>channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow" </td>
  577. <td>transform image to span the full range of color values</td>
  578. </tr>
  579. <tr>
  580. <td><strike>oilpaint</strike></td>
  581. <td>radius="integer"</td>
  582. <td>simulate an oil painting</td>
  583. </tr>
  584. <tr>
  585. <td>&lt;opaque&gt;</td>
  586. <td>color="color name",
  587. fill="color name", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow", invert="True, False"</td>
  588. <td>change this color to the fill color within the image</td>
  589. </tr>
  590. <tr>
  591. <td><strike>ordereddither</strike></td>
  592. <td>threshold="threshold, checks, o2x2, o3x3, o4x4, o8x8, h4x4a, h6x6a, h8x8a, h4x4o, h6x6o, h8x8o, h16x16o, hlines6x4", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  593. <td>order dither image</td>
  594. </tr>
  595. <tr>
  596. <td><strike>perceptible</strike></td>
  597. <td>epsilon="double", channel="Red, RGB, All, etc."</td>
  598. <td>set each pixel whose value is less than |"epsilon"| to "-epsilon" or "epsilon" (whichever is closer) otherwise the pixel value remains unchanged..</td>
  599. </tr>
  600. <tr>
  601. <td><strike>polaroid</strike></td>
  602. <td>caption="string", angle="double", pointsize="double", font="string", stroke= "color name", strokewidth="integer", fill="color name", gravity="NorthWest, North, NorthEast, West, Center, East, SouthWest, South, SouthEast", background="color name"</td>
  603. <td>simulate a Polaroid picture.</td>
  604. </tr>
  605. <tr>
  606. <td><strike>posterize</strike></td>
  607. <td>levels="integer", dither="True, False"</td>
  608. <td>reduce the image to a limited number of color level</td>
  609. </tr>
  610. <tr>
  611. <td>&lt;profile&gt;</td>
  612. <td>name="string", profile="blob", rendering-intent="Undefined, Saturation, Perceptual, Absolute, Relative", black-point-compensation="True, False"</td>
  613. <td>add or remove ICC or IPTC image profile; name is formal name (e.g. ICC or filename; set profile to '' to remove profile</td>
  614. </tr>
  615. <tr>
  616. <td>&lt;quantize&gt;</td>
  617. <td>colors="integer", colorspace="RGB, Gray, Transparent, OHTA, XYZ, YCbCr, YIQ, YPbPr, YUV, CMYK, sRGB, HSL, HSB", treedepth= "integer", dither="True, False", dither-method="Riemersma, Floyd-Steinberg", measure_error="True, False", global_colormap="True, False", transparent-color="color"</td>
  618. <td>preferred number of colors in the image</td>
  619. </tr>
  620. <tr>
  621. <td><strike>radialblur</strike></td>
  622. <td>geometry="geometry", angle="double", bias="double", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  623. <td>radial blur the image.</td>
  624. </tr>
  625. <tr>
  626. <td>&lt;raise&gt;</td>
  627. <td>geometry="geometry", width="integer", height="integer", x="integer", y="integer", raise="True, False"</td>
  628. <td>lighten or darken image edges to create a 3-D effect</td>
  629. </tr>
  630. <tr>
  631. <td><strike>reducenoise</strike></td>
  632. <td>geometry="geometry", width="integer", height="integer", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  633. <td>reduce noise in the image with a noise peak elimination filter</td>
  634. </tr>
  635. <tr>
  636. <td><strike>remap</strike></td>
  637. <td>image="image-handle", dither="true, false", dither-method="Riemersma, Floyd-Steinberg"</td>
  638. <td>replace the colors of an image with the closest color from a reference image.</td>
  639. </tr>
  640. <tr>
  641. <td>&lt;resample&gt;</td>
  642. <td>density="geometry", x="double", y="double", filter="Point, Box, Triangle, Hermite, Hanning, Hamming, Blackman, Gaussian, Quadratic, Cubic, Catrom, Mitchell, Lanczos, Bessel, Sinc", support="double"</td>
  643. <td>resample image to desired resolution. Specify blur &gt; 1 for blurry or &lt; 1 for sharp</td>
  644. </tr>
  645. <tr>
  646. <td>&lt;resize&gt;</td>
  647. <td>geometry="geometry", width="integer", height="integer", filter="Point, Box, Triangle, Hermite, Hanning, Hamming, Blackman, Gaussian, Quadratic, Cubic, Catrom, Mitchell, Lanczos, Bessel, Sinc", support="double", blur="double"</td>
  648. <td>scale image to desired size. Specify blur &gt; 1 for blurry or &lt; 1 for sharp</td>
  649. </tr>
  650. <tr>
  651. <td>&lt;roll&gt;</td>
  652. <td>geometry="geometry", x="integer", y="integer"</td>
  653. <td>roll an image vertically or horizontally</td>
  654. </tr>
  655. <tr>
  656. <td>&lt;rotate&gt;</td>
  657. <td>degrees="double", background="color name"</td>
  658. <td>rotate an image</td>
  659. </tr>
  660. <tr>
  661. <td>&lt;sample&gt;</td>
  662. <td>geometry="geometry", width="integer", height="integer"</td>
  663. <td>scale image with pixel sampling.</td>
  664. </tr>
  665. <tr>
  666. <td>&lt;scale&gt;</td>
  667. <td>geometry="geometry", width="integer", height="integer"</td>
  668. <td>scale image to desired size</td>
  669. </tr>
  670. <tr>
  671. <td>&lt;segment&gt;</td>
  672. <td>colorspace="RGB, Gray, Transparent, OHTA, XYZ, YCbCr, YCC, YIQ, YPbPr, YUV, CMYK", verbose="True, False", cluster-threshold="double", smoothing-threshold="double"</td>
  673. <td>segment an image by analyzing the histograms of the color components and identifying units that are homogeneous</td>
  674. </tr>
  675. <tr>
  676. <td><strike>selectiveblur</strike></td>
  677. <td>geometry="geometry", radius="double", sigma="double", threshold="double", bias="double", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  678. <td>selectively blur pixels within a contrast threshold.</td>
  679. </tr>
  680. <tr>
  681. <td><strike>separate</strike></td>
  682. <td>channel="Red, RGB, All, etc."</td>
  683. <td>separate a channel from the image into a grayscale image</td>
  684. </tr>
  685. <tr>
  686. <td>&lt;shade&gt;</td>
  687. <td>geometry="geometry", azimuth="double", elevation="double", gray="true, false"</td>
  688. <td>shade the image using a distant light source</td>
  689. </tr>
  690. <tr>
  691. <td><strike>setpixel</strike></td>
  692. <td>geometry="geometry", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow", color="array of float values", x="integer", y="integer", color="array of float values"</td>
  693. <td>set a single pixel. By default normalized pixel values are expected.</td>
  694. </tr>
  695. <tr>
  696. <td>&lt;shadow&gt;</td>
  697. <td>geometry="geometry", opacity="double", sigma="double", x="integer", y="integer"</td>
  698. <td>simulate an image shadow</td>
  699. </tr>
  700. <tr>
  701. <td>&lt;sharpen&gt;</td>
  702. <td>geometry="geometry", radius="double", sigma="double", bias="double", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  703. <td>sharpen the image with a Gaussian operator of the given radius and standard deviation (sigma).</td>
  704. </tr>
  705. <tr>
  706. <td>&lt;shave&gt;</td>
  707. <td>geometry="geometry", width="integer", height="integer"</td>
  708. <td>shave pixels from the image edges</td>
  709. </tr>
  710. <tr>
  711. <td>&lt;shear&gt;</td>
  712. <td>geometry="geometry", x="double", y="double" fill="color name"</td>
  713. <td>shear the image along the X or Y axis by a positive or negative shear angle</td>
  714. </tr>
  715. <tr>
  716. <td><strike>sigmoidalcontrast</strike></td>
  717. <td>geometry="string", 'contrast'="double", 'mid-point'="double" channel="Red, RGB, All, etc.", sharpen="True, False"</td>
  718. <td>sigmoidal non-lineraity contrast control. Increase the contrast of the image using a sigmoidal transfer function without saturating highlights or shadows. Contrast" indicates how much to increase the contrast (0 is none; 3 is typical; 20 is a lot); mid-point" indicates where midtones fall in the resultant image (0 is white; 50% is middle-gray; 100% is black). To decrease contrast, set sharpen to False.</td>
  719. </tr>
  720. <tr>
  721. <td>&lt;signature&gt;</td>
  722. <td> </td>
  723. <td>generate an SHA-256 message digest for the image pixel stream</td>
  724. </tr>
  725. <tr>
  726. <td><strike>sketch</strike></td>
  727. <td>geometry="geometry", radius="double", sigma="double", angle="double"</td>
  728. <td>sketch the image with a Gaussian operator of the given radius and standard deviation (sigma) at the given angle</td>
  729. </tr>
  730. <tr>
  731. <td>&lt;solarize&gt;</td>
  732. <td>geometry="string", threshold="double", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  733. <td>negate all pixels above the threshold level</td>
  734. </tr>
  735. <tr>
  736. <td><strike>sparsecolor</strike></td>
  737. <td>points="array of float values", method="Barycentric, Bilinear, Shepards, Voronoi", virtual-pixel="Background Black Constant Dither Edge Gray Mirror Random Tile Transparent White"</td>
  738. <td>interpolate the image colors around the supplied points</td>
  739. </tr>
  740. <tr>
  741. <td><strike>splice</strike></td>
  742. <td>geometry="geometry", width="integer", height="integer", x="integer", y="integer", fuzz="double", background="color name", gravity="NorthWest, North, NorthEast, West, Center, East, SouthWest, South, SouthEast"</td>
  743. <td>splice an image</td>
  744. </tr>
  745. <tr>
  746. <td>&lt;spread&gt;</td>
  747. <td>radius="double", interpolate="undefined, average, bicubic, bilinear, mesh, nearest-neighbor, spline"</td>
  748. <td>displace image pixels by a random amount</td>
  749. </tr>
  750. <tr>
  751. <td><strike>statistic</strike></td>
  752. <td>geometry="geometry", width="integer", height="integer", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow", type="Median, Mode, Mean, Maximum, Minimum, ReduceNoise"</td>
  753. <td>replace each pixel with corresponding statistic from the neighborhood.</td>
  754. </tr>
  755. <tr>
  756. <td>&lt;stegano&gt;</td>
  757. <td>image="image-handle", offset="integer"</td>
  758. <td>hide a digital watermark within the image</td>
  759. </tr>
  760. <tr>
  761. <td>&lt;stereo&gt;</td>
  762. <td>image="image-handle", x="integer", y="integer"</td>
  763. <td>composites two images and produces a single image that is the composite of a left and right image of a stereo pair</td>
  764. </tr>
  765. <tr>
  766. <td>&lt;strip&gt;</td>
  767. <td> </td>
  768. <td>strip an image of all profiles and comments.</td>
  769. </tr>
  770. <tr>
  771. <td>&lt;swirl&gt;</td>
  772. <td>degrees="double", interpolate="undefined, average, bicubic, bilinear, mesh, nearest-neighbor, spline"</td>
  773. <td>swirl image pixels about the center</td>
  774. </tr>
  775. <tr>
  776. <td><strike>texture</strike></td>
  777. <td>texture="image-handle"</td>
  778. <td>name of texture to tile onto the image background</td>
  779. </tr>
  780. <tr>
  781. <td><strike>thumbnail</strike></td>
  782. <td>geometry="geometry", width="integer", height="integer"</td>
  783. <td>changes the size of an image to the given dimensions and removes any associated profiles.</td>
  784. </tr>
  785. <tr>
  786. <td>&lt;threshold&gt;</td>
  787. <td>threshold="string", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  788. <td>threshold the image</td>
  789. </tr>
  790. <tr>
  791. <td><strike>tint</strike></td>
  792. <td>fill="color name", blend="string"</td>
  793. <td>tint the image with the fill color.</td>
  794. </tr>
  795. <tr>
  796. <td>&lt;transparent&gt;</td>
  797. <td>color="color name", invert="True, False"</td>
  798. <td>make this color transparent within the image</td>
  799. </tr>
  800. <tr>
  801. <td><strike>transpose</strike></td>
  802. <td> </td>
  803. <td>flip image in the vertical direction and rotate 90 degrees</td>
  804. </tr>
  805. <tr>
  806. <td><strike>transverse</strike></td>
  807. <td> </td>
  808. <td>flop image in the horizontal direction and rotate 270 degrees</td>
  809. </tr>
  810. <tr>
  811. <td>&lt;trim&gt;</td>
  812. <td> </td>
  813. <td>remove edges that are the background color from the image</td>
  814. </tr>
  815. <tr>
  816. <td><strike>unsharpmask</strike></td>
  817. <td>geometry="geometry", radius="double", sigma="double", gain="double", threshold="double"</td>
  818. <td>sharpen the image with the unsharp mask algorithm.</td>
  819. </tr>
  820. <tr>
  821. <td><strike>vignette</strike></td>
  822. <td>geometry="geometry", radius="double", sigma="double", x="integer", y="integer", background="color name"</td>
  823. <td>offset the edges of the image in vignette style</td>
  824. </tr>
  825. <tr>
  826. <td><strike>wave</strike></td>
  827. <td>geometry="geometry", amplitude="double", wavelength="double", interpolate="undefined, average, bicubic, bilinear, mesh, nearest-neighbor, spline"</td>
  828. <td>alter an image along a sine wave</td>
  829. </tr>
  830. <tr>
  831. <td><strike>whitethreshold</strike></td>
  832. <td>threshold="string", , channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray, Green, Index, Magenta, Opacity, Red, RGB, Yellow"</td>
  833. <td>force all pixels above the threshold intensity into white</td>
  834. </tr>
  835. </tbody>
  836. </table>
  837. </div>
  838. <footer class="magick-footer">
  839. <p><a href="support.php">Donate</a> •
  840. <a href="sitemap.php">Sitemap</a> •
  841. <a href="links.php">Related</a> •
  842. <a href="architecture.php">Architecture</a>
  843. </p>
  844. <p><a href="conjure.php#">Back to top</a> •
  845. <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> •
  846. <a href="contact.php">Contact Us</a></p>
  847. <p><small>© 1999-2016 ImageMagick Studio LLC</small></p>
  848. </footer>
  849. </div><!-- /.container -->
  850. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  851. <script src="http://nextgen.imagemagick.org/js/magick.php"></script>
  852. </div>
  853. </body>
  854. </html>