• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2
3
4
5<!doctype html>
6<html lang="en">
7<head>
8  <meta charset="utf-8"  />
9  <meta name="viewport" content="width=device-width, initial-scale=1"  />
10  <title>ImageMagick - Porting to ImageMagick Version 7</title>
11  <meta name="application-name" content="ImageMagick" />
12  <meta name="description" content="Use ImageMagick® to create, edit, compose, and convert digital images. Resize an image, crop it, change its shades and colors, add captions, and more." />
13  <meta name="application-url" content="https://imagemagick.org" />
14  <meta name="generator" content="PHP" />
15  <meta name="keywords" content="porting, to, imagemagick, version, 7, image processing software" />
16  <meta name="rating" content="GENERAL" />
17  <meta name="robots" content="INDEX, FOLLOW" />
18  <meta name="generator" content="ImageMagick Studio LLC" />
19  <meta name="author" content="ImageMagick Studio LLC" />
20  <meta name="revisit-after" content="2 DAYS" />
21  <meta name="resource-type" content="document" />
22  <meta name="copyright" content="Copyright (c) 1999-2020 ImageMagick Studio LLC" />
23  <meta name="distribution" content="Global" />
24  <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1" />
25  <meta property='og:url' content='../' />
26  <meta property='og:title' content='ImageMagick' />
27  <meta property='og:image' content='../images/logo.png' />
28  <meta property='og:type' content='website' />
29  <meta property='og:site_name' content='ImageMagick' />
30  <meta property='og:description' content="Create, Edit, Compose, or Convert Digital Images" />
31  <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
32  <link href="porting.html" rel="canonical" />
33  <link href="../images/wand.png" rel="icon" />
34  <link href="../images/wand.ico" rel="shortcut icon" />
35  <link href="assets/magick.css" rel="stylesheet" />
36</head>
37<body>
38  <nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
39  <div class="container-fluid">
40    <a class="navbar-brand" href="../"><img class="d-block" id="icon" alt="ImageMagick" width="32" height="32" src="../images/wand.ico"/></a>
41    <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#magick-navbars" aria-controls="magick-navbars" aria-expanded="false" aria-label="Toggle navigation">
42      <span class="navbar-toggler-icon"></span>
43    </button>
44
45    <div class="collapse navbar-collapse" id="magick-navbars">
46      <ul class="navbar-nav me-auto mb-2 mb-md-0">
47        <li class="nav-item">
48          <a class="nav-link " href="../www/index.html">Home</a>
49        </li>
50        <li class="nav-item">
51          <a class="nav-link " href="../www/download.html">Download</a>
52        </li>
53        <li class="nav-item">
54          <a class="nav-link " href="../www/command-line-tools.html">Tools</a>
55        </li>
56        <li class="nav-item">
57          <a class="nav-link " href="../www/command-line-processing.html">CLI</a>
58        </li>
59        <li class="nav-item">
60          <a class="nav-link " href="../www/develop.html">Develop</a>
61        </li>
62        <li class="nav-item">
63          <a class="nav-link" target="_blank" href="https://github.com/ImageMagick/ImageMagick/discussions">Community</a>
64        </li>
65        <li class="nav-item">
66          <iframe src="https://github.com/sponsors/ImageMagick/button" title="Sponsor ImageMagick" height="35" width="107" style="border: 0;"></iframe>
67        </li>
68      </ul>
69      <form class="d-flex form-inline" action="search.html">
70        <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
71        <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
72      </form>
73    </div>
74  </div>
75  </nav>
76
77  <div class="container">
78    <script async="async" src="https://localhost/pagead/js/adsbygoogle.js"></script>
79    <ins class="adsbygoogle"
80      style="display:block"
81      data-ad-client="ca-pub-3129977114552745"
82      data-ad-slot="6345125851"
83      data-full-width-responsive="true"
84      data-ad-format="horizontal"></ins>
85    <script>
86      (adsbygoogle = window.adsbygoogle || []).push({});
87    </script>
88
89  </div>
90
91  <main class="container">
92  <div class="magick-template">
93<div class="magick-header">
94<h1 class="text-center">Porting Guide</h1>
95<p class="text-center"><a href="porting.html#imv7">ImageMagick Version 7</a> • <a href="porting.html#hdri">High Dynamic Range Imaging</a> • <a href="porting.html#channels">Pixel Channels</a> • <a href="porting.html#alpha">Alpha</a> • <a href="porting.html#grayscale">Grayscale</a> • <a href="porting.html#mask">Masks</a> • <a href="porting.html#core">MagickCore API</a> • <a href="porting.html#headers">Header Files</a>  • <a href="porting.html#deprecate">Deprecated Features Removed</a> • <a href="porting.html#cli">Command-line Interface</a> • <a href="porting.html#summary">Version 7 Change Summary</a> </p>
96
97<p class="lead magick-description">The design of ImageMagick is an evolutionary process, with the design and implementation efforts serving to influence and guide further progress in the other.  With ImageMagick version 7, we improved the design based on lessons learned from the version 6 implementation.  ImageMagick was originally designed to display RGB images to an X Windows server.  Over time we extended support to RGBA images and then to the CMYK and CMYKA image format.  With ImageMagick version 7, we extend support to arbitrary colorspaces with an arbitrary number of pixel channels.  In addition, ImageMagick 7 stores pixel channels as floats permitting out of band values (e.g. negative) and reduces rounding error.  There are numerous other design enhancements described within.</p>
98
99<p>To support variable pixel channels in the MagickCore API, pixel handling has changed when getting or setting the pixel channels.  You can access channels as an array, <var>pixel[i]</var>, or use an accessor method such as GetPixelRed() or SetPixelRed().  There are some modest changes to the MagickCore and MagickWand API's.   The Magick++ and PerlMagick API's have not changed and matches that of the ImageMagick version 6.</p>
100
101<p>The shell API (command line) of ImageMagick version 7 has undergone
102a major overhaul, with specific emphasis on the ability to read 'options' not
103only from the command line, but also from scripts, and file streams. This
104allows for the use of 'co-processing' programming techniques or performing
105image handling using 'daemon/server backends', and even multi-machine
106distributed processing.</p>
107
108<p>With the shell API overhaul other improvements were made, including:
109better reporting of which option failed, the consolidation and deprecation of
110options, and more global use of 'image properties' (more commonly known as
111'percent escapes' in option arguments. </p>
112
113<p>ImageMagick version 7 is available now as a <a href="../download">production</a> release.</p>
114
115<p>Now that ImageMagick version 7 is released, we continue to support and enhance version 6 for a minimum of 10 years.</p>
116
117<h2><a class="anchor" id="hdri"></a>High Dynamic Range Imaging</h2>
118<p>ImageMagick version 7 enables <a href="../www/high-dynamic-range.html">high dynamic range imaging</a> (HDRI) by default.  HDRI accurately represents the wide range of intensity levels found in real scenes ranging from the brightest direct sunlight to the deepest darkest shadows.  In addition, image processing results are more accurate.  The disadvantage is it requires more memory and may result in slower processing times.  If you see differences in the results of your version 6 command-line with version 7, it is likely due to HDRI.  You may need to add <code>-clamp</code> to your command-line to constrain pixels to the 0 .. QuantumRange range, or disable HDRI when you build ImageMagick version 7.  To disable HDRI (recommended for smart phone builds such as iOS or production sites where performance is a premium), simply add <code>--disable-hdri</code> to the configure script command line when building ImageMagick.</p>
119
120<h2><a class="anchor" id="channels"></a>Pixel Channels</h2>
121<p>A pixel is comprised of one or more color values, or <var>channels</var> (e.g. red pixel channel).</p>
122<p>Prior versions of ImageMagick (4-6), support 4 to 5 pixel channels (RGBA or CMYKA).  The first 4 channels are accessed with the PixelPacket data structure.   The structure includes 4 members of type Quantum (typically 16-bits) of red, green, blue, and opacity.  The black channel or colormap indexes are supported by a separate method and structure, IndexPacket.  As an example, here is a code snippet from ImageMagick version 6 that negates the color components (but not the alpha component) of the image pixels:</p>
123
124<pre class="pre-scrollable highlight"><code>for (y=0; y &lt; (ssize_t) image->rows; y++)
125{
126  IndexPacket
127    *indexes;
128
129  PixelPacket
130    *q;
131
132  q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
133  if (q == (PixelPacket *) NULL)
134    {
135      status=MagickFalse;
136      continue;
137    }
138  indexes=GetCacheViewAuthenticIndexQueue(image_view);
139  for (x=0; x &lt; (ssize_t) image->columns; x++)
140  {
141    if ((channel &amp; RedChannel) != 0)
142      q->red=(Quantum) QuantumRange-q->red;
143    if ((channel &amp; GreenChannel) != 0)
144      q->green=(Quantum) QuantumRange-q->green;
145    if ((channel &amp; BlueChannel) != 0)
146      q->blue=(Quantum) QuantumRange-q->blue;
147    if (((channel &amp; IndexChannel) != 0) &amp;&amp;
148        (image->colorspace == CMYKColorspace))
149      indexes[x]=(IndexPacket) QuantumRange-indexes[x];
150    q++;
151  }
152  if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
153    status=MagickFalse;
154}</code></pre>
155
156<p>ImageMagick version 7 supports any number of channels from 1 to 64 (and beyond) and simplifies access with a single method that returns an array of pixel channels of type Quantum.   Source code that compiles against prior versions of ImageMagick requires refactoring to work with ImageMagick version 7.  We illustrate with an example.  Let's naively refactor the version 6 code snippet from above so it works with the ImageMagick version 7 API:</p>
157
158<pre class="pre-scrollable highlight"><code>for (y=0; y &lt; (ssize_t) image->rows; y++)
159{
160  Quantum
161    *q;
162
163  q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
164  if (q == (Quantum *) NULL)
165    {
166      status=MagickFalse;
167      continue;
168    }
169  for (x=0; x &lt; (ssize_t) image->columns; x++)
170  {
171    if ((GetPixelRedTraits(image) &amp; UpdatePixelTrait) != 0)
172      SetPixelRed(image,QuantumRange-GetPixelRed(image,q),q);
173    if ((GetPixelGreenTraits(image) &amp; UpdatePixelTrait) != 0)
174      SetPixelGreen(image,QuantumRange-GetPixelGreen(image,q),q);
175    if ((GetPixelBlueTraits(image) &amp; UpdatePixelTrait) != 0)
176      SetPixelBlue(image,QuantumRange-GetPixelBlue(image,q),q);
177    if ((GetPixelBlackTraits(image) &amp; UpdatePixelTrait) != 0)
178      SetPixelBlack(image,QuantumRange-GetPixelBlack(image,q),q);
179    if ((GetPixelAlphaTraits(image) &amp; UpdatePixelTrait) != 0)
180      SetPixelAlpha(image,QuantumRange-GetPixelAlpha(image,q),q);
181    q+=GetPixelChannels(image);
182  }
183  if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
184    status=MagickFalse;
185}</code></pre>
186
187<p>Let's do that again but take full advantage of the new variable pixel channel support:</p>
188
189<pre class="pre-scrollable highlight"><code>for (y=0; y &lt; (ssize_t) image->rows; y++)
190{
191  Quantum
192    *q;
193
194  q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
195  if (q == (Quantum *) NULL)
196    {
197      status=MagickFalse;
198      continue;
199    }
200  for (x = 0; x &lt; (ssize_t) image->columns; x++)
201  {
202    ssize_t
203      i;
204
205    if (GetPixelWriteMask(image,q) &lt;= (QuantumRange/2))
206      {
207        q+=GetPixelChannels(image);
208        continue;
209      }
210    for (i=0; i &lt; (ssize_t) GetPixelChannels(image); i++)
211    {
212      PixelChannel channel = GetPixelChannelChannel(image,i);
213      PixelTrait traits = GetPixelChannelTraits(image,channel);
214      if ((traits &amp; UpdatePixelTrait) == 0)
215        continue;
216      q[i]=QuantumRange-q[i];
217    }
218    q+=GetPixelChannels(image);
219  }
220  if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
221    status=MagickFalse;
222}</code></pre>
223
224<p>Note, how we use GetPixelChannels() to advance to the next set of pixel channels.</p>
225
226<p>The colormap indexes and black pixel channel (for the CMYK colorspace) are no longer stored in the index channel, previously accessed with GetAuthenticIndexQueue() and GetCacheViewAuthenticIndexQueue().  Instead they are now a first class pixel channel and accessed as a member of the pixel array (e.g. <code>pixel[4]</code>) or with the convenience pixel accessor methods GetPixelIndex(), SetPixelIndex(), GetPixelBlack(), and SetPixelBlack().</p>
227
228<p>As a consequence of using an array structure for variable pixel channels, auto-vectorization compilers have additional opportunities to speed up pixel loops.</p>
229
230<h5>Pixel Accessors</h5>
231<p>You can access pixel channel as array elements (e.g. <code>pixel[1]</code>) or use convenience accessors to get or set pixel channels:</p>
232
233<pre class="highlight"><code>GetPixela()                  SetPixela()
234GetPixelAlpha()              SetPixelAlpha()
235GetPixelb()                  SetPixelb()
236GetPixelBlack()              SetPixelBlack()
237GetPixelBlue()               SetPixelBlue()
238GetPixelCb()                 SetPixelCb()
239GetPixelCr()                 SetPixelCr()
240GetPixelCyan()               SetPixelCyan()
241GetPixelGray()               SetPixelGray()
242GetPixelGreen()              SetPixelGreen()
243GetPixelIndex()              SetPixelIndex()
244GetPixelL()                  SetPixelL()
245GetPixelMagenta()            SetPixelMagenta()
246GetPixelReadMask()           SetPixelReadMask()
247GetPixelWriteMask()          SetPixelWriteMask()
248GetPixelMetacontentExtent()  SetPixelMetacontentExtent()
249GetPixelOpacity()            SetPixelOpacity()
250GetPixelRed()                SetPixelRed()
251GetPixelYellow()             SetPixelYellow()
252GetPixelY()                  SetPixelY()</code></pre>
253
254<p>You can find these accessors defined in the header file, <code>MagickCore/pixel-accessor.h</code></p>
255
256<h5>Pixel Traits</h5>
257<p>Each pixel channel includes one or more of these traits:</p>
258<dl class="row">
259<dt class="col-md-4">Undefined</dt>
260<dd class="col-md-8">no traits associated with this pixel channel</dd>
261<dt class="col-md-4">Copy</dt>
262<dd class="col-md-8">do not update this pixel channel, just copy it</dd>
263<dt class="col-md-4">Update</dt>
264<dd class="col-md-8">update this pixel channel</dd>
265<dt class="col-md-4">Blend</dt>
266<dd class="col-md-8">blend this pixel channel with the alpha mask if it's enabled</dd>
267</dl>
268<p>We provide these methods to set and get pixel traits:</p>
269<pre class="highlight"><code>GetPixelAlphaTraits()    SetPixelAlphaTraits()
270GetPixelBlackTraits()    SetPixelBlackTraits()
271GetPixelBlueTraits()     SetPixelBlueTraits()
272GetPixelCbTraits()       SetPixelCbTraits()
273GetPixelChannelTraits()  SetPixelChannelTraits()
274GetPixelCrTraits()       SetPixelCrTraits()
275GetPixelGrayTraits()     SetPixelGrayTraits()
276GetPixelGreenTraits()    SetPixelGreenTraits()
277GetPixelIndexTraits()    SetPixelIndexTraits()
278GetPixelMagentaTraits()  SetPixelMagentaTraits()
279GetPixelRedTraits()      SetPixelRedTraits()
280GetPixelYellowTraits()   SetPixelYellowTraits()
281GetPixelYTraits()        SetPixelYTraits()</code></pre>
282<p>For convenience you can set the active trait for a set of pixel channels with a channel mask and this method:</p>
283<pre class="highlight"><code>SetImageChannelMask()
284</code></pre>
285
286<p>Previously MagickCore methods had channel analogs, for example, NegateImage() and NegateImageChannels().  The channel analog methods are no longer necessary because the pixel channel traits specify whether to act on a particular pixel channel or whether to blend with the alpha mask.  For example, instead of</p>
287<pre class="highlight"><code>NegateImageChannel(image,channel);</code></pre>
288<p>we use:</p>
289<pre class="highlight"><code>channel_mask=SetImageChannelMask(image,channel);
290NegateImage(image,exception);
291(void) SetImageChannelMask(image,channel_mask);</code></pre>
292
293<h5>Pixel User Channels</h5>
294<p>In version 7, we introduce pixel user channels.  Traditionally we utilize 4 channels, red, green, blue, and alpha.   For CMYK we also have a black channel.  User channels are designed to contain whatever additional channel information that makes sense for your application.  Some examples include extra channels in TIFF or PSD images or perhaps you require a channel with infrared information for the pixel.  You can associate traits with the user channels so that when they are acted upon by an image processing algorithm (e.g. blur) the pixels are copied, acted upon by the algorithm, or even blended with the alpha channel if that makes sense.</p>
295<h5>Pixel Metacontent</h5>
296<p>In version 7, we introduce pixel metacontent.  Metacontent is content about content. So rather than being the content itself, it's something that describes or is associated with the content.  Here the content is a pixel.  The pixel metacontent is for your exclusive use (internally the data is just copied, it is not modified) and is accessed with these MagickCore API methods:</p>
297<pre class="highlight"><code>SetImageMetacontentExtent()
298GetImageMetacontentExtent()
299GetVirtualMetacontent()
300GetAuthenticMetacontent()
301GetCacheViewAuthenticMetacontent()
302GetCacheViewVirtualMetacontent()</code></pre>
303
304<h2><a class="anchor" id="alpha"></a>Alpha</h2>
305<p>We support alpha now, previously opacity.  With alpha, a value of <kbd>0</kbd> means that the pixel does not have any coverage information and is transparent; i.e. there was no color contribution from any geometry because the geometry did not overlap this pixel. A value of <code>QuantumRange</code> means that the pixel is opaque because the geometry completely overlapped the pixel. As a consequence, in version 7, the PixelInfo structure member alpha has replaced the previous opacity member.  Another consequence is the alpha part of an sRGB value in hexadecimal notation is now reversed (e.g. #0000 is fully transparent).</p>
306<h2><a class="anchor" id="colorspace"></a>Colorspace</h2>
307<p>The <code>Rec601Luma</code> and <code>Rec709Luma</code> colorspaces are no longer supported.  Instead, specify the <code>gray</code> colorspace and choose from these intensity options:</p>
308<pre class="highlight"><code>Rec601Luma
309Rec601Luminance
310Rec709Luma
311Rec709Luminance</code></pre>
312<p>For example,</p>
313<pre class="highlight"><code>magick myImage.png -intensity Rec709Luminance -colorspace gray myImage.jpg</code></pre>
314
315<h2><a class="anchor" id="grayscale"></a>Grayscale</h2>
316<p>Previously, grayscale images were Rec601Luminance and consumed 4 channels: red, green, blue, and alpha.  With version 7, grayscale consumes only 1 channel requiring far less resources as a result.</p>
317
318<h2><a class="anchor" id="mask"></a>Masks</h2>
319<p>Version 7 supports masks for most image operators.  White pixels in a read mask ignores corresponding pixel in an image whereas white pixels in a write mask protects the corresponding pixel in the image.  From the command-line, you can associate a mask with an image with the <code>-read-mask</code> and <code>-write-mask</code> options.  This polarity matches the masks in version 6 of ImageMagick for ease of porting your workflow.  For convenience, we continue to support the <code>-mask</code> option in version 7 to match the behavior of version 6.</p>
320<p>In this example, we compute the distortion of a masked reconstructed image:</p>
321<pre class="highlight"><code>compare -metric rmse -read-mask hat_mask.png hat.png wizard.png difference.png</code></pre>
322<p>Here we protect certain pixels from change:</p>
323<pre class="highlight"><code>magick rose: -write-mask rose_bg_mask.png -modulate 110,100,33.3  +mask rose_blue.png</code></pre>
324
325<p>A mask associated with an image persists until it is modified or removed.  This may produce unexpected results for complex command-lines.  Here we only want to clip when applying the alpha option, not the resize:</p>
326<pre class="highlight">
327convert -density 300 -colorspace srgb image.eps -alpha transparent -clip -alpha opaque +clip -resize 1000x1000 -strip image.png
328</pre>
329
330<h2><a class="anchor" id="core"></a>MagickCore API</h2>
331<p>Here are a list of changes to the MagickCore API:</p>
332<ul>
333<li>Almost all image processing algorithms are now channel aware.</li>
334<li>The MagickCore API adds an <code>ExceptionInfo</code> argument to those methods that lacked it in version 6, e.g. <code>NegateImage(image,MagickTrue,exception)</code></li>
335<li>All method channel analogs have been removed (e.g. BlurImageChannel()), they are no longer necessary, use pixel traits instead.</li>
336<li>Public and private API calls are now declared with the GCC visibility attribute.  The MagickCore and MagickWand dynamic libraries now only export public struct and function declarations.</li>
337<li>The InterpolatePixelMethod enum is now PixelInterpolateMethod.</li>
338<li>The IntegerPixel storage type is removed (use LongPixel instead) and LongLongPixel is added</li>
339<li>Image signatures have changed to account for variable pixel channels.</li>
340<li>All color packet structures, PixelPacket, LongPacket, and DoublePacket, are consolidated to a single color structure, PixelInfo.</li>
341<li>The ChannelMoments structure member <code>I</code> is now <code>invariant</code>.  <code>I</code> conflicts with the <code>complex.h</code> header.</li>
342<li>We added a length parameter to FormatMagickSize() to permit variable length buffers.</li>
343</ul>
344<h2><a class="anchor" id="core"></a>MagickWand API</h2>
345<p>Here are a list of changes to the MagickWand API:</p>
346<ul>
347<li>Almost all image processing algorithms are now channel aware.</li>
348<li>The DrawMatte() method is now called DrawAlpha().</li>
349<li>The MagickSetImageBias() and MagickSetImageClipMask() methods are no longer supported.</li>
350</ul>
351<h2><a class="anchor" id="core"></a>Magick++ API</h2>
352<p>Here are a list of changes to the Magick++ API:</p>
353<ul>
354<li>Almost all image processing algorithms are now channel aware.</li>
355<li>Use this construct, for example, to avoid operating on the alpha channel:
356<pre class="highlight"><code>image.negateChannel(Magick::ChannelType(Magick::CompositeChannels ^ Magick::AlphaChannel));
357</code></pre>
358</li>
359</ul>
360<h2><a class="anchor" id="headers"></a>Header Files</h2>
361<p>Prior versions of ImageMagick (4-6) reference the ImageMagick header files as <code>magick/</code> and <code>wand/</code>.  ImageMagick 7 instead uses <code>MagickCore/</code> and <code>MagickWand/</code> respectively.  For example,</p>
362<pre class="highlight"><code><code>#include &lt;MagickCore/MagickCore.h>
363#include &lt;MagickWand/MagickWand.h></code></code></pre>
364
365<h2><a class="anchor" id="deprecate"></a>Deprecated Features Removed</h2>
366<p>All deprecated features from ImageMagick version 6 are removed in version 7.  These include the <code>Magick-config</code> and <code>Wand-config</code> configuration utilities.  Instead use:</p>
367
368<pre class="highlight"><code>MagickCore-config
369MagickWand-config</code></pre>
370<p>The FilterImage() method has been removed.  Use ConvolveImage() instead.</p>
371
372<p>In addition, all deprecated <a href="http://magick.imagemagick.org/api/deprecate.html">MagickCore</a> and <a href="http://magick.imagemagick.org/api/magick-deprecate.html">MagickWand</a> methods are no longer available in version 7.</p>
373
374<p>The Bessel filter was removed as it is an alias for Jinc.  Use -filter Jinc instead.</p>
375
376<h2><a class="anchor" id="cli"></a>Shell API or Command-line Interface</h2>
377
378<p>As mentioned the primary focus of the changes to the Shell API or Command
379Line Interface is the abstraction so that not only can <var>options</var> be
380read from command line arguments, but also from a file (script) or from a file
381stream (interactive commands, or co-processing). </p>
382
383<p>To do this the CLI parser needed to be re-written, so as to always perform
384all options, in a strict, do-it-as-you-see it order. Previously in IMv6
385options were performed in groups (known as 'FireOptions), this awkwardness is
386now gone.  However the strict order means that you can no longer give operations
387before providing an image for the operations to work on.  To do so will now
388produce an error. </p>
389
390<p>Error reporting is now reporting exactly which option (by argument count on
391command line, or line,column in scripts) caused the 'exception'.  This is not
392complete as yet but getting better. Also not complete is 'regard-warnings'
393handling or its replacement, which will allow you to ignore reported errors
394and continue processing (as appropriate due to error) in co-processes or
395interactive usage. </p>
396
397<p>With the IMv7 parser, activated by the `magick` utility, settings are applied to each image in memory in turn (if any). While an option: only need to be applied once globally. Using the other utilities directly, or as an argument to the `magick` CLI (e.g. `magick convert`) utilizes the legacy parser.</p>
398
399<p>The parenthesis options used to 'push' the current image list, and image
400settings (EG: '<code>(</code>' and '<code>)</code>' ) on to a stack now has
401a completely separate image settings stack. That is parenthesis 'push/pull'
402image lists, and curly braces (EG: '<code>{</code>' and '<code>}</code>' ) will
403'push/pull' image settings. </p>
404
405<p>Of course due to the previously reported changes to the underlying channel
406handling will result be many side effects to almost all options. Here are some
407specific </p>
408
409<p>Most algorithms update the red, green, blue, black (for CMYK), and alpha
410channels.  Most operators will blend alpha the other color channels, but other
411operators (and situations) may require this blending to be disabled, and is
412currently done by removing alpha from the active channels via
413<code>-channel</code> option.  (e.g. <code>magick castle.gif -channel RGB
414-negate castle.png</code>). </p>
415
416<p>Reading gray-scale images generate an image with only one channel. If
417that image is to then accept color the <code>-colorspace</code> setting needs to
418be applied to expand the one channel into separate RGB (or other) channels.
419</p>
420<p>Previously, command-line arguments were limited to 4096 characters, with ImageMagick version 7 the limit has increased to 131072 characters.</p>
421
422<h3>Command Changes</h3>
423<p>Here are a list of changes to the ImageMagick commands:</p>
424<dl class="row">
425<dt class="col-md-4">magick</dt>
426<dd class="col-md-8">The "<code>magick</code>" command is the new primary command of the Shell
427    API, replacing the old "<code>magick</code>" command. This allows you to
428    create a 'magick script' of the form  "<code>#!/path/to/command/magick
429    -script</code>", or pipe options into a command "<code>magick -script
430    -</code>, as a background process. </dd>
431
432<dt class="col-md-4">magick-script</dt>
433<dd class="col-md-8">This the same as "<code>magick</code>", (only command name is different)
434    but which has an implicit "<code>-script</code>" option.  This allows you to
435    use it in an "<code>env</code>" style script form.  That is a magick script
436    starts with the 'she-bang' line of "<code>#!/usr/bin/env
437    magick-script</code>" allowing the script interpreter to be found anywhere
438    on the users command "<code>PATH</code>".  This is required to get around
439    a "one argument she-bang bug" that is common on most UNIX systems
440    (including Linux, but not MacOSX).</dd>
441<dt class="col-md-4">animate, compare, composite, conjure, convert, display, identify, import, mogrify, montage, stream</dt>
442<dd class="col-md-8">To reduce the footprint of the command-line utilities, these utilities are symbolic links to the <code>magick</code> utility.  You can also invoke them from the <code>magick</code> utility, for example, use <code>magick convert logo: logo.png</code> to invoke the <code>magick</code> utility.
443</dd></dl>
444
445<h3>Behavioral Changes</h3>
446<p>Image settings are applied to each image on the command line.  To associate a setting with a particular image, use parenthesis to remove ambiguity.  In this example we assign a unique page offset to each image:</p>
447<pre class="highlight"><code>magick \( -page +10+20 first.png \) \( -page +100+200 second.png \) ...</code></pre>
448
449<p>By default, image operations such as convolution blends alpha with each channel.  To convolve each channel independently, deactivate the alpha channel as follows:</p>
450<pre class="highlight"><code>magick ... -alpha discrete -blur 0x1 ...</code></pre>
451<p>To remove the alpha values from your image, use <code>-alpha off</code>. If you want to instead persist the alpha channel but not blend the alpha pixels for certain image processing operations, use <code>-alpha deactivate</code> instead.</p>
452<p>Some options have changed in ImageMagick version 7.  These include:</p>
453<dl>
454<dt class="col-md-4">-channel</dt>
455<dd class="col-md-8">the default is to update the RGBA channels, previously, in IMv6, the default was RGB.  If you get results that differ from IMv6, you may need to specify <code>-channel RGB</code> on your command line (e.g. -channel RGB -negate).</dd>
456<dt class="col-md-4">+combine</dt>
457<dd class="col-md-8">This option now requires an argument, the image colorspace (e.g. +combine sRGB).</dd>
458<dt class="col-md-4">-format</dt>
459<dd class="col-md-8">The %Z image property is no longer supported.</dd>
460<dt class="col-md-4">-gamma</dt>
461<dd class="col-md-8">Multiple gamma arguments (e.g. <code>-gamma 1,2,3</code>) are no longer supported, instead use <code>-channel</code> (e.g. <code>-channel blue -gamma 2)</code>.</dd>
462<dt class="col-md-4">-region</dt>
463<dd class="col-md-8">This option sets a write mask for the region you define.  In IMv6, a separate image was cloned instead, operated on, and the results were composited to the source image.  In addition, the draw transformations are relative to the upper left corner of the image, previously in IMv6 they were relative to the region.</dd>
464</dl>
465
466<p>Use <code>-define morphology:showKernel=1</code> to post the morphology or convolution kernel.  Previously it was <code>-define showKernel=1</code>.</p>
467
468<h3>New Options</h3>
469<p>ImageMagick version 7 supports these new options, though most are limited
470to the "<code>magick</code>" command, or to use in "<code>magick</code>"
471scripts.</p>
472
473<dl class="row">
474<dt class="col-md-4">{ ... }</dt>
475<dd class="col-md-8">Save (and restore) the current image settings (internally known as the
476    "image_info" structure).  This is automatically done with parenthesis (EG:
477    '<code>(</code>' and '<code>)</code>') is "<code>-regard-parenthesis</code>" has
478    been set, just as in IMv6.  Caution is advised to prevent un-balanced
479    braces errors.</dd>
480
481<dt class="col-md-4">--</dt>
482<dd class="col-md-8">End of options, to be used in IMv7 "<code>mogrify</code>" command to
483    explicitly separate the operations to be applied and the images that
484    are to be processed 'in-place'.  (not yet implemented).  However if
485    not provided, "<code>-read</code>" can still be used to differentiate
486    secondary image reads (for use in things like alpha composition) from
487    the 'in-place' image being processed.  In other commands (such as "magick") it is equivalent to an explicit "<code>-read</code>" (see below) of the next option as an image (as it was in IMv6).  </dd>
488
489<dt class="col-md-4">-alpha activate/deactivate</dt>
490<dd class="col-md-8">enables and disables the alpha channel, respectively, with persistence. This is like on/off in Imagemagick 6. In Imagemagick 7, -alpha off will remove the alpha channel permanently such that -alpha on will not re-enable it.</dd>
491
492<dt class="col-md-4">-alpha discrete</dt>
493<dd class="col-md-8">treat the alpha channel independently (do not blend).</dd>
494
495<dt class="col-md-4">-channel-fx <var>expression</var> </dt>
496<dd class="col-md-8">
497<p>exchange, extract, or copy one or more image channels.</p>
498
499<p>The expression consists of one or more channels, either mnemonic or numeric (e.g. red or 0, green or 1, etc.), separated by certain operation symbols as follows:</p>
500
501<pre class="highlight"><code>&lt;=&gt;  exchange two channels (e.g. red&lt;=&gt;blue)
502=&gt;   copy one channel to another channel (e.g. red=&gt;green)
503=    assign a constant value to a channel (e.g. red=50%)
504,    write new image with channels in the specified order (e.g. red, green)
505;    add a new output image for the next set of channel operations (e.g. red; green; blue)
506|    move to the next input image for the source of channel data (e.g. | gray=>alpha)</code></pre>
507
508<p>For example, to create 3 grayscale images from the red, green, and blue channels of an image, use:</p>
509
510<pre class="highlight"><code>-channel-fx "red; green; blue"</code></pre>
511
512<p>A channel without an operation symbol implies separate (i.e, semicolon).</p>
513
514<p>Here we take an sRGB image and a grayscale image and inject the grayscale image into the alpha channel:</p>
515<pre class="highlight"><code>magick wizard.png mask.pgm -channel-fx '| gray=>alpha' wizard-alpha.png</code></pre>
516<p>Use a similar command to define a read mask:</p>
517<pre class="highlight"><code>magick wizard.png mask.pgm -channel-fx '| gray=>read-mask' wizard-mask.png</code></pre>
518
519<p>Add <code>-debug pixel</code> prior to the <code>-channel-fx</code> option to track the channel morphology.</p>
520
521</dd>
522
523<dt class="col-md-4">-exit</dt>
524<dd class="col-md-8">Stop processing at this point. No further options will be processed after
525    this option. Can be used in a script to force the "<code>magick</code>"
526    command to exit, without actually closing the pipeline that it is
527    processing options from.  May also be used as a 'final' option on the "<code>magick</code>" command
528    line, instead of an implicit output image, to completely prevent any image
529    write. ASIDE: even the "<code>NULL:</code>" coder requires at least one
530    image, for it to 'not write'! This option does not require any images at
531    all. </dd>
532
533<dt class="col-md-4">-read {image}</dt>
534<dd class="col-md-8">Explicit read of an image, rather than an implicit read.  This allows you
535    to read from filenames that start with an 'option' character, and which
536    otherwise could be mistaken as an option (unknown or otherwise). This will
537    eventually be used in "<code>mogrify</code>" to allow the reading of
538    secondary images, and allow the use of image list operations within that
539    command. </dd>
540
541<dt class="col-md-4">-read-mask</dt>
542<dd class="col-md-8">prevent updates to image pixels specified by the mask</dd>
543
544<dt class="col-md-4">-region</dt>
545<dd class="col-md-8">supported in ImageMagick 7.0.2-6 and above</dd>
546
547<dt class="col-md-4">-script {file}</dt>
548<dd class="col-md-8">In "<code>magick</code>", stop the processing of command line arguments as
549    image operations, and read all further options from the given file or
550    pipeline.</dd>
551<dt class="col-md-4">-write-mask</dt>
552<dd class="col-md-8">prevent pixels from being written.</dd>
553
554</dl>
555
556<h3>Changed Options</h3>
557<p>These options are known to have changed, in some way.</p>
558<dl class="row">
559<dt class="col-md-4">-bias</dt>
560<dd class="col-md-8">The option is no longer recognized.  Use <code>-define convolve:bias=<var>value</var></code> instead.</dd>
561<dt class="col-md-4">-draw</dt>
562<dd class="col-md-8">The <code>matte</code> primitive is now <code>alpha</code> (e.g. <code>-draw 'alpha 0,0 floodfill'</code>).</dd>
563<dt class="col-md-4">-negate</dt>
564<dd class="col-md-8">currently negates all channels, including alpha if present.  As such you may need to use the -channel option to prevent alpha negation (e.g. -channel RGB -negate).  </dd>
565<dt class="col-md-4">-preview</dt>
566<dd class="col-md-8">this option is now an image operator.  The PREVIEW image format has been removed.</dd>
567</dl>
568
569<h3>Deprecated warning given, but will work (for now)</h3>
570<dl class="row">
571<dt class="col-md-4">-affine</dt>
572<dd class="col-md-8">Replaced by <code>-draw "affine ..."</code>. (see transform)</dd>
573<dt class="col-md-4">-average</dt>
574<dd class="col-md-8">Replaced by <code>-evaluate-sequence Mean</code>.</dd>
575<dt class="col-md-4">-box</dt>
576<dd class="col-md-8">Replaced by <code>-undercolor</code>.</dd>
577<dt class="col-md-4">-deconstruct</dt>
578<dd class="col-md-8">Replaced by <code>-layers CompareAny</code>.</dd>
579<dt class="col-md-4">-gaussian</dt>
580<dd class="col-md-8">Replaced by <code>-gaussian-blur</code>.</dd>
581<dt class="col-md-4">-/+map</dt>
582<dd class="col-md-8">Replaced by <code>-/+remap</code>.</dd>
583<dt class="col-md-4">-/+mask</dt>
584<dd class="col-md-8">Replaced by <code>-/+read-mask</code>, <code>-/+write-mask</code>.</dd>
585<dt class="col-md-4">-/+matte</dt>
586<dd class="col-md-8">Replaced by <code>-alpha Set/Off</code>.</dd>
587<dt class="col-md-4">-transform</dt>
588<dd class="col-md-8">Replaced by <code>-distort Affine "..."</code>.</dd>
589</dl>
590
591<h3>Deprecated warning given, and ignored (for now)</h3>
592<p>Almost 'plus' (+) option that did not do anything has been marked as
593deprecated, and does nothing. It does not even have associated code.  For
594example "+annotate", "+resize", "+clut", and "+draw" .</p>
595
596<dl class="row">
597<dt class="col-md-4">-affinity</dt>
598<dd class="col-md-8">Replaced by <code>-remap</code>.</dd>
599<dt class="col-md-4">-maximum</dt>
600<dd class="col-md-8">Replaced by <code>-evaluate-sequence Max</code>.</dd>
601<dt class="col-md-4">-median</dt>
602<dd class="col-md-8">Replaced by <code>-evaluate-sequence Median</code>.</dd>
603<dt class="col-md-4">-minimum</dt>
604<dd class="col-md-8">Replaced by <code>-evaluate-sequence Min</code>.</dd>
605<dt class="col-md-4">-recolor</dt>
606<dd class="col-md-8">Replaced by <code>-color-matrix</code>.</dd>
607</dl>
608
609<h3>Removed / Replaced Options ("no such option" error and abort)</h3>
610
611<dl class="row">
612<dt class="col-md-4">-interpolate filter</dt>
613<dd class="col-md-8">remove slow and useless interpolation method</dd>
614<dt class="col-md-4">-origin</dt>
615<dd class="col-md-8">old option, unknown meaning.</dd>
616<dt class="col-md-4">-pen</dt>
617<dd class="col-md-8">Replaced by <code>-fill</code>.</dd>
618<dt class="col-md-4">-passphrase</dt>
619<dd class="col-md-8">old option, unknown meaning</dd>
620</dl>
621<h2><a class="anchor" id="summary"></a>Version 7 Change Summary</h2>
622<p>Changes from ImageMagick version 6 to version 7 are summarized here:</p>
623<h5>High Dynamic Range Imaging</h5>
624<ul>
625<li>ImageMagick version 7 enables HDRI by default.  Expect more accurate image processing results with higher memory requirements and possible slower processing times.  You can disable this feature for resource constrained system such as a cell phone with a slight loss of accuracy for certain algorithms (e.g. resizing).</li>
626</ul>
627<h5>Pixels</h5>
628<ul>
629<li>Pixels are no longer addressed with PixelPacket structure members (e.g. red, green, blue, opacity) but as an array of channels (e.g. pixel[PixelRedChannel]).</li>
630<li>Use convenience macros to access pixel channels (e.g. GetPixelRed(), SetPixelRed()).</li>
631<li>The black channel for the CMYK colorspace is no longer stored in the index channel, previously accessed with GetAuthenticIndexQueue() and GetCacheViewAuthenticIndexQueue().  Instead it is now a pixel channel and accessed with the convenience pixel macros GetPixelBlack() and SetPixelBlack().</li>
632<li>The index channel for colormapped images is no longer stored in the index channel, previously accessed with GetAuthenticIndexQueue() and GetCacheViewAuthenticIndexQueue().  Instead it is now a pixel channel and accessed with the convenience pixel macros GetPixelIndex() and SetPixelIndex().</li>
633<li>Use GetPixelChannels() to advance to the next set of pixel channels.</li>
634<li>Use the <var>metacontent</var> channel  to associate metacontent with each pixel.</li>
635<li>All color packet structures, PixelPacket, LongPacket, and DoublePacket, are consolidated to a single color structure, PixelInfo.</li>
636</ul>
637<h5>Alpha</h5>
638<ul>
639<li>We support alpha rather than opacity (0 transparent; QuantumRange opaque).</li>
640<li>Use GetPixelAlpha() or SetPixelAlpha() to get or set the alpha pixel channel value.</li>
641</ul>
642<h5>Grayscale</h5>
643<ul>
644<li>Grayscale images consume one pixel channel in ImageMagick version 7.  To process RGB, set the colorspace to RGB (e.g. -colorspace sRGB).</li>
645</ul>
646<h5>Masks</h5>
647<ul>
648<li>ImageMagick version 6 only supports read mask in limited circumstances.  Version 7 supports both a read and write mask.  The read mask is honored by most image-processing algorithms.</li>
649</ul>
650<h5>MagickCore API</h5>
651<ul>
652<li>Almost all image processing algorithms are now channel aware.</li>
653<li>MagickCore, version 7, adds an ExceptionInfo argument to those methods that lacked it in version 6, e.g. <code>NegateImage(image,MagickTrue,exception);</code></li>
654<li>All method channel analogs have been removed (e.g. BlurImageChannel()), they are no longer necessary, use pixel traits instead.</li>
655<li>Public and private API calls are now declared with the GCC visibility attribute.  The MagickCore and MagickWand dynamic libraries now only export public struct and function declarations.</li>
656<li>The InterpolatePixelMethod enum is now PixelInterpolateMethod.</li>
657<li>To account for variable pixel channels, images may now return a different signature.</li>
658</ul>
659<h5>Deprecated Methods</h5>
660<ul>
661<li>All ImageMagick version 6 MagickCore and MagickWand deprecated methods are removed and no longer available in ImageMagick version 7.</li>
662<li>All MagickCore channel method analogs are removed (e.g. NegateImageChannels()).  For version 7, use pixel traits instead.</li>
663<li>The FilterImage() method has been removed.  Use ConvolveImage() instead.</li>
664</ul>
665</div>
666  </div>
667  </main><!-- /.container -->
668  <footer class="magick-footer">
669    <div class="container-fluid">
670      <a href="../www/security-policy.html">Security</a> •
671      <a href="../www/news.html">News</a>
672
673      <a href="porting.html#"><img class="d-inline" id="wand" alt="And Now a Touch of Magick" width="16" height="16" src="../images/wand.ico"/></a>
674
675      <a href="../www/links.html">Related</a> •
676      <a href="../www/sitemap.html">Sitemap</a>
677   <br/>
678     <a href="../www/support.html">Sponsor</a> •
679     <a href="../www/cite.html">Cite</a> •
680     <a href="http://pgp.mit.edu/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> •
681     <a href="../www/https://imagemagick.org/script/contact.php">Contact Us</a>
682   <br/>
683     <a href="https://github.com/imagemagick/imagemagick" target="_blank" rel="noopener" aria-label="GitHub"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 512 499.36" width="2%" height="2%" role="img" focusable="false"><title>GitHub</title><path fill="currentColor" fill-rule="evenodd" d="M256 0C114.64 0 0 114.61 0 256c0 113.09 73.34 209 175.08 242.9 12.8 2.35 17.47-5.56 17.47-12.34 0-6.08-.22-22.18-.35-43.54-71.2 15.49-86.2-34.34-86.2-34.34-11.64-29.57-28.42-37.45-28.42-37.45-23.27-15.84 1.73-15.55 1.73-15.55 25.69 1.81 39.21 26.38 39.21 26.38 22.84 39.12 59.92 27.82 74.5 21.27 2.33-16.54 8.94-27.82 16.25-34.22-56.84-6.43-116.6-28.43-116.6-126.49 0-27.95 10-50.8 26.35-68.69-2.63-6.48-11.42-32.5 2.51-67.75 0 0 21.49-6.88 70.4 26.24a242.65 242.65 0 0 1 128.18 0c48.87-33.13 70.33-26.24 70.33-26.24 14 35.25 5.18 61.27 2.55 67.75 16.41 17.9 26.31 40.75 26.31 68.69 0 98.35-59.85 120-116.88 126.32 9.19 7.9 17.38 23.53 17.38 47.41 0 34.22-.31 61.83-.31 70.23 0 6.85 4.61 14.81 17.6 12.31C438.72 464.97 512 369.08 512 256.02 512 114.62 397.37 0 256 0z"/></svg></a> •
684     <a href="https://twitter.com/imagemagick" target="_blank" rel="noopener" aria-label="Twitter"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 512 416.32" width="2%" height="2%" role="img" focusable="false"><title>Twitter</title><path fill="currentColor" d="M160.83 416.32c193.2 0 298.92-160.22 298.92-298.92 0-4.51 0-9-.2-13.52A214 214 0 0 0 512 49.38a212.93 212.93 0 0 1-60.44 16.6 105.7 105.7 0 0 0 46.3-58.19 209 209 0 0 1-66.79 25.37 105.09 105.09 0 0 0-181.73 71.91 116.12 116.12 0 0 0 2.66 24c-87.28-4.3-164.73-46.3-216.56-109.82A105.48 105.48 0 0 0 68 159.6a106.27 106.27 0 0 1-47.53-13.11v1.43a105.28 105.28 0 0 0 84.21 103.06 105.67 105.67 0 0 1-47.33 1.84 105.06 105.06 0 0 0 98.14 72.94A210.72 210.72 0 0 1 25 370.84a202.17 202.17 0 0 1-25-1.43 298.85 298.85 0 0 0 160.83 46.92"/></svg></a>
685    <br/>
686    <small>© 1999-2021 ImageMagick Studio LLC</small>
687    </div>
688  </footer>
689
690  <!-- Javascript assets -->
691  <script src="assets/magick.js" ></script>
692  </body>
693</html>
694<!-- Magick Cache 13th February 2021 11:13 -->