]> granicus.if.org Git - imagemagick/blob - www/command-line-processing.html
...
[imagemagick] / www / command-line-processing.html
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, shrink-to-fit=no"  />
10   <title>Command-line Processing @ ImageMagick</title>
11   <meta name="application-name" content="ImageMagick" />
12   <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." />
13   <meta name="application-url" content="https://www.imagemagick.org" />
14   <meta name="generator" content="PHP" />
15   <meta name="keywords" content="command-line, processing, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert" />
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-2017 ImageMagick Studio LLC" />
23   <meta name="distribution" content="Global" />
24   <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1" />
25   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
26   <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
27   <link href="../www/command-line-processing.html" rel="canonical" />
28   <link href="../images/wand.png" rel="icon" />
29   <link href="../images/wand.ico" rel="shortcut icon" />
30   <link href="assets/magick.css" rel="stylesheet" />
31 </head>
32 <body>
33   <header>
34   <nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
35     <a class="navbar-brand" href="../index.html"><img class="d-block" id="logo" name="ImageMagick" alt="ImageMagick" width="32" height="32" src="../images/wand.ico"/></a>
36     <button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
37     <span class="navbar-toggler-icon"></span>
38     </button>
39
40     <div class="navbar-collapse collapse" id="navbarsExampleDefault" style="">
41     <ul class="navbar-nav mr-auto">
42       <li class="nav-item ">
43         <a class="nav-link" href="../index.html">Home <span class="sr-only">(current)</span></a>
44       </li>
45       <li class="nav-item ">
46         <a class="nav-link" href="download.html">Download</a>
47       </li>
48       <li class="nav-item ">
49         <a class="nav-link" href="command-line-tools.html">Tools</a>
50       </li>
51       <li class="nav-item active">
52         <a class="nav-link" href="command-line-processing.html">Command-line</a>
53       </li>
54       <li class="nav-item ">
55         <a class="nav-link" href="resources.html">Resources</a>
56       </li>
57       <li class="nav-item ">
58         <a class="nav-link" href="develop.html">Develop</a>
59       </li>
60       <li class="nav-item">
61         <a class="nav-link" target="_blank" href="https://www.imagemagick.org/discourse-server/">Community</a>
62       </li>
63     </ul>
64     <form class="form-inline my-2 my-lg-0" action="https://www.imagemagick.org/script/search.php">
65       <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search">
66       <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
67     </form>
68     </div>
69   </nav>
70   <div class="container">
71    <script async="async" src="http://localhost/pagead/js/adsbygoogle.js"></script>    <ins class="adsbygoogle"
72          style="display:block"
73          data-ad-client="ca-pub-3129977114552745"
74          data-ad-slot="6345125851"
75          data-ad-format="auto"></ins>
76     <script>
77       (adsbygoogle = window.adsbygoogle || []).push({});
78     </script>
79   </div>
80   </header>
81   <main role="main" class="container">
82     <div class="magick-template">
83 <div class="magick-header">
84 <p class="text-center"><a href="command-line-processing.html#anatomy">The Anatomy of the Command-line</a> • <a href="command-line-processing.html#input">Input Filename</a> • <a href="command-line-processing.html#option">Command-line Options</a> • <a href="command-line-processing.html#output">Output Filename</a></p>
85
86 <p class="lead magick-description">The ImageMagick command-line <a href="command-line-tools.html">tools</a> can be as simple as this:</p>
87
88 <pre class="highlight"><code>magick image.jpg image.png </code></pre>
89
90 <p>Or it can be complex with a plethora of <a href="command-line-processing.html#option">options</a>, as in the following:</p>
91
92 <pre class="highlight"><code>magick label.gif +matte \
93   \( +clone  -shade 110x90 -normalize -negate +clone  -compose Plus -composite \) \
94   \( -clone 0 -shade 110x50 -normalize -channel BG -fx 0 +channel -matte \) \
95   -delete 0 +swap  -compose Multiply -composite  button.gif");</code></pre>
96
97 <p class="text-info">This example command is long enough that the command must be written across several lines, so we formatted it for clarity by inserting backslashes (<code>\</code>). The backslash is the Unix <var>line-continuation</var> character. In the Windows shell, use a carat character (<code>^</code>) for line-continuation. We use the Unix style on these web pages, as above. Sometimes, however, the lines are wrapped by your browser if the browser window is small enough, but the command-lines, shown in white, are still intended to be typed as one line. Line continuation characters need not be entered. The <var>parentheses</var> that are <var>escaped</var> above using the backslash are not escaped in Windows. There are some other differences between Windows and Unix (involving quotation marks, for instance), but we'll discuss some of those issues later, as they arise. </p>
98
99 <p>Without knowing much about the ImageMagick command-line, you can probably surmise that the first command above converts an image in the JPEG format to one in the PNG format.  However, very few may realize the second, more complex command, gives a flat two-dimensional label a three-dimensional look with rich textures and simulated depth:</p>
100
101 <ul>
102   <a href="../images/label.gif"><img src="../images/label.gif" width="78" height="53" alt="label" /></a>
103 <img style="margin-top:16px; margin-bottom:17px;" src="../images/right.gif" width="20" height="20" alt="==>" />
104   <a href="../images/button.gif">
105   <img src="../images/button.gif" width="78" height="53" alt="button" /></a>
106 </ul>
107
108
109 <p>Here we show percent completion of a task as a shaded cylinder:</p>
110
111 <ul>
112   <img src="../images/cylinder_shaded.png" width="320" height="200" alt="Shaded Cylinder" />
113 </ul>
114
115 <p>Given the complexity of the rendering, you might be surprised it is accomplished by a single command-line:</p>
116
117 <pre class="highlight"><code>magick -size 320x90 canvas:none -stroke snow4 -size 1x90 -tile gradient:white-snow4 \
118   -draw 'roundrectangle 16, 5, 304, 85 20,40' +tile -fill snow \
119   -draw 'roundrectangle 264, 5, 304, 85  20,40' -tile gradient:chartreuse-green \
120   -draw 'roundrectangle 16,  5, 180, 85  20,40' -tile gradient:chartreuse1-chartreuse3 \
121   -draw 'roundrectangle 140, 5, 180, 85  20,40' +tile -fill none \
122   -draw 'roundrectangle 264, 5, 304, 85 20,40' -strokewidth 2 \
123   -draw 'roundrectangle 16, 5, 304, 85 20,40' \( +clone -background snow4 \
124   -shadow 80x3+3+3 \) +swap -background none -layers merge \( +size -font Helvetica \
125   -pointsize 90 -strokewidth 1 -fill red label:'50 %' -trim +repage \( +clone \
126   -background firebrick3 -shadow 80x3+3+3 \) +swap -background none -layers merge \) \
127   -insert 0 -gravity center -append -background white -gravity center -extent 320x200 \
128   cylinder_shaded.png</code></pre>
129
130 <p>In the next sections we dissect the anatomy of the ImageMagick command-line.  Hopefully, after carefully reading and better understanding how the command-line works, you should be able to accomplish complex image-processing tasks without resorting to the sometimes daunting <a href="develop.html">program interfaces</a>.</p>
131
132 <p>See <a href="../Usage/">Examples of ImageMagick Usage</a> for additional help when using ImageMagick from the command-line.</p>
133
134 <h2 class="magick-post-title"><a class="anchor" id="anatomy"></a>The Anatomy of the Command-line</h2>
135 <p>The ImageMagick command-line consists of</p>
136
137 <ol>
138 <li>one or more required input filenames.</li>
139 <li>zero, one, or more image settings.</li>
140 <li>zero, one, or more image operators.</li>
141 <li>zero, one, or more image sequence operators.</li>
142 <li>zero, one, or more image stacks.</li>
143 <li>zero or one output image filenames (required by
144 <a href="convert.html">convert</a>,
145 <a href="composite.html">composite</a>,
146 <a href="montage.html">montage</a>,
147 <a href="compare.html">compare</a>,
148 <a href="import.html">import</a>,
149 <a href="conjure.html">conjure</a>).
150 </li>
151 </ol>
152
153 <p>You can find a detailed explanation of each of the constituent parts of the command-line in the sections that follow.</p>
154
155 <h2 class="magick-post-title"><a class="anchor" id="input"></a>Input Filename</h2>
156
157 <p>ImageMagick extends the concept of an input filename to include:</p>
158 <ul>
159 <li>filename globbing</li>
160 <li>an explicit image format</li>
161 <li>using built-in images and patterns</li>
162 <li>STDIN, STDOUT, and file descriptors</li>
163 <li>selecting certain frames from an image</li>
164 <li>selecting a region of an image</li>
165 <li>forcing an inline image resize</li>
166 <li>forcing an inline image crop</li>
167 <li>using filename references</li>
168 </ul>
169
170 <p>These extensions are explained in the next few paragraphs.</p>
171
172 <h4>Filename Globbing</h4>
173 <p>In Unix shells, certain characters such as the asterisk (<code>*</code>) and question mark (<code>?</code>) automagically cause lists of filenames to be generated based on pattern matches. This feature is known as globbing.  ImageMagick supports filename globbing for systems, such as Windows, that does not natively support it.  For example, suppose you want to convert <code>1.jpg</code>, <code>2.jpg</code>, <code>3.jpg</code>, <code>4.jpg</code>, and <code>5.jpg</code> in your current directory to a GIF animation.  You can conveniently  refer to all of the JPEG files with this command:
174 </p>
175
176 <pre class="highlight"><code>magick *.jpg images.gif</code></pre>
177
178 <h4>Explicit Image Format</h4>
179 <p>Images are stored in a myriad of image formats including
180 the better known JPEG, PNG, TIFF and others.  ImageMagick must know the format
181 of the image before it can be read and processed.  Most formats have a
182 signature within the image that uniquely identifies the format.  Failing
183 that, ImageMagick leverages the filename extension to determine the format. 
184 For example, <code>image.jpg</code> or <code>image.JPG</code> tells ImageMagick
185 it is reading an image in the JPEG format. </p>
186
187                 <p>In some cases the image may not contain a signature
188 and/or the filename does not identify the image format.  In these cases an
189 explicit image format must be specified.  For example, suppose our image
190 is named <code>image</code> and contains raw red, green, and blue intensity
191 values.  ImageMagick has no way to automagically determine the image format
192 so we explicitly set one:
193 </p>
194
195 <pre class="highlight"><code>magick -size 640x480 -depth 8 rgb:image image.png</code></pre>
196
197 <h4>Built-in Images and Patterns</h4>
198
199 <p>ImageMagick has a number of built-in <a href="formats.html#builtin-images">images</a> and <a href="formats.html#builtin-patterns">patterns</a>.  To utilize the checkerboard pattern, for example, use:
200 </p>
201
202 <pre class="highlight"><code>magick -size 640x480 pattern:checkerboard checkerboard.png</code></pre>
203
204 <h4>STDIN, STDOUT, and file descriptors</h4>
205 <p>Unix and Windows permit the output of one command to be piped to the input of another. ImageMagick permits image data to be read and written from the <a href="http://en.wikipedia.org/wiki/Standard_streams">standard streams</a> STDIN (<var>standard in</var>) and STDOUT (<var>standard out</var>), respectively, using a pseudo-filename of <code>-</code>.  In this example we pipe the output of
206   <a href="convert.html">convert</a> to the <a href="display.html">display</a> program:
207 </p>
208
209 <pre class="highlight"><code>magick logo: gif:- | display gif:-</code></pre>
210
211 <p>The second explicit format "<code>gif:</code>" is optional in the preceding example.  The GIF image format has a unique signature within the image so ImageMagick's <a href="display.html">display</a> command can readily recognize the format as GIF.  The <a href="convert.html">convert</a> program also accepts STDIN as input in this way:
212 </p>
213
214 <pre class="highlight"><code>magick rose: gif:- | magick - -resize "200%" bigrose.jpg'</code></pre>
215
216 <p>Other pipes can be accessed via their <var>file descriptors</var> (as of version 6.4.9-3). The file descriptors 0, 1, and 2 are reserved for the standard streams STDIN, STDOUT, and STDERR, respectively, but a pipe associated with a file descriptor number <var>N</var>&gt;2 can be accessed using the pseudonym <code>fd:</code><var>N</var>. (The pseudonyms <code>fd:0</code> and <code>fd:1</code> can be used for STDIN and STDOUT.) The next example shows how to append image data piped from files with  descriptors 3 and 4 and direct the result to the file with descriptor number 5.
217 </p>
218
219 <pre class="highlight"><code>magick fd:3 fd:4 -append fd:5</code></pre>
220
221 <p>When needed, explicit image formats can be given as mentioned earlier, as in the following.
222 </p>
223
224 <pre class="highlight"><code>magick gif:fd:3 jpg:fd:4 -append tif:fd:5</code></pre>
225
226 <h4>Selecting Frames</h4>
227 <p>Some images formats contain more than one image frame.  Perhaps you only want the first image, or the last, or some number of images in-between.  You can specify which image frames to read by appending the image filename with the frame range enclosed in brackets.  Here our image (an animated GIF) contains more than one frame but we only want the first:
228 </p>
229
230 <pre class="highlight"><code>magick 'images.gif[0]' image.png</code></pre>
231
232 <p class="text-info">Unix shells generally interpret brackets so we enclosed the filename in quotes above.
233 In a Windows command shell the brackets are not interpreted but using quotes doesn't hurt. However, in most cases the roles of single-quotes and double-quotes are reversed with respect to Unix and Windows, so Windows users should usually try double-quotes where we display single-quotes, and vice versa.
234 </p>
235
236 <p>You can read more than one image from a sequence with a frame range.  For example, you can extract the first four frames of an image sequence:
237 </p>
238
239 <pre class="highlight"><code>magick 'images.gif[0-3]' images.mng</code></pre>
240
241 <p>Finally, you can read more than one image from a sequence, out-of-order. The next command gets the third image in the sequence, followed by the second, and then the fourth:
242 </p>
243
244 <pre class="highlight"><code>magick 'images.gif[3,2,4]' images.mng</code></pre>
245
246 <p>Notice that in the last two commands, a single image is written. The output in this case, where the image type is MNG, is a multi-frame file because the MNG format supports multiple frames. Had the output format been JPG, which only supports single frames, the output would have consisted of separate frames. More about that below, in the section about the <a href="command-line-processing.html#output">Output Filename</a>.
247 </p>
248
249 <h4>Selecting an Image Region</h4>
250 <p>Raw images are a sequence of color intensities without additional meta information such as width, height, or image signature.  With raw image formats, you must specify the image width and height but you can also specify a region of the image to read.  In our example, the image is in the raw 8-bit RGB format and is 6000 pixels wide and 4000 pixels high.  However, we only want a region of 600 by 400 near the center of the image:
251 </p>
252
253 <pre class="highlight"><code>magick -size 6000x4000 -depth 8 'rgb:image[600x400+1900+2900]' image.jpg</code></pre>
254
255 <p>
256   You can get the same results with the <a href="command-line-options.html#extract">&#x2011;extract</a> option:
257 </p>
258
259 <pre class="highlight"><code>magick -size 6000x4000 -depth 8 -extract 600x400+1900+2900 rgb:image image.jpg</code></pre>
260
261 <h4>Inline Image Resize</h4>
262 <p>It is sometimes convenient to resize an image as they are read.  Suppose you have hundreds of large JPEG images you want to convert to a sequence of PNG thumbails:
263 </p>
264
265 <pre class="highlight"><code>magick '*.jpg' -resize 120x120 thumbnail%03d.png</code></pre>
266
267 <p>Here <var>all</var> the images are read and subsequently
268 resized.  It is faster and less resource intensive to resize each image it
269 is read:
270 </p>
271
272 <pre class="highlight"><code>magick '*.jpg[120x120]' thumbnail%03d.png</code></pre>
273
274 <h4>Inline Image Crop</h4>
275 <p>It is sometimes convenient to crop an image as they are read.  Suppose you have hundreds of large JPEG images you want to convert to a sequence of PNG thumbails:
276 </p>
277
278 <pre class="highlight"><code>magick '*.jpg' -crop 120x120+10+5 thumbnail%03d.png</code></pre>
279
280 <p>Here <var>all</var> the images are read and subsequently cropped.  It is faster and less resource-intensive to crop each image as it is read:
281 </p>
282
283 <pre class="highlight"><code>magick '*.jpg[120x120+10+5]' thumbnail%03d.png</code></pre>
284
285
286 <h4>Filename References</h4>
287
288 <p>There are two methods to use a filename to reference other image filenames.
289 The first is with '<code>@</code>' which reads image filenames separated by white space from the specified file.  Assume the file <code>myimages.txt</code> consists of a list of filenames, like so:
290 </p>
291
292 <pre class="highlight">frame001.jpg
293 frame002.jpg
294 frame003.jpg</pre>
295
296 <p>We then expect this command:</p>
297
298 <pre class="highlight"><code>magick @myimages.txt mymovie.gif</code></pre>
299
300 <p>to read the images <code>frame001.jpg</code>, <code>frame002.jpg</code>, and <code>frame003.jpg</code> and convert them to a GIF image sequence.  </p>
301 <p>If the image path includes one or more spaces, enclose the path in quotes:</p>
302 <pre class="highlight">'my title.jpg'</pre>
303
304
305     <p>Some ImageMagick command-line <a href="command-line-options.html">options</a> may exceed the capabilities of
306 your command-line processor.  Windows, for example, limits command-lines
307 to 8192 characters.  If, for example, you have a draw option with polygon
308 points that exceed the command-line length limit, put the draw option instead
309 in a file and reference the file with
310 the <code>@</code> (e.g. <code>@mypoly.txt</code>).</p>
311
312 <p>Another method of referring to other image files is by
313 embedding a formatting character in the filename with a scene range.  Consider
314 the filename <code>image-%d.jpg[1-5]</code>. The command</p>
315
316 <pre class="highlight"><code>magick image-%d.jpg[1-5]</code></pre>
317
318 <p>causes ImageMagick to attempt to read images with these filenames:
319 </p>
320
321 <pre class="highlight">image-1.jpg
322 image-2.jpg
323 image-3.jpg
324 image-4.jpg
325 image-5.jpg</pre>
326
327 <h4>Stream Buffering</h4>
328 <p>By default, the input stream is buffered.  To ensure information on the source file or terminal is read as soon as its available, set the buffer size to 0:</p>
329
330 <pre class="highlight"><code>magick logo: gif:- | display -define stream:buffer-size=0 gif:-</code></pre>
331
332 <h2 class="magick-post-title"><a class="anchor" id="option"></a>Command-line Options</h2>
333
334 <p>You can direct the behavior of ImageMagick utilities with these command-line <a href="command-line-options.html">options</a>.  The behavior of an option falls into one of these categories:</p>
335
336 <ul>
337 <li><a href="command-line-processing.html#setting">Image Setting</a></li>
338 <li><a href="command-line-processing.html#operator">Image Operator</a></li>
339 <li><a href="command-line-processing.html#channel">Image Channel Operator</a></li>
340 <li><a href="command-line-processing.html#sequence">Image Sequence Operator</a></li>
341 <li><a href="command-line-processing.html#geometry">Image Geometry</a></li>
342 <li><a href="command-line-processing.html#stack">Image Stack</a></li>
343 </ul>
344
345 <h4 class="magick-header"><a class="anchor" id="setting"></a>Image Setting</h4>
346
347 <p>An image setting persists as it appears on the command-line and may affect
348 subsequent processing such as reading an image, an image operator, or when
349 writing an image as appropriate.  An image setting stays in effect until it
350 is reset or the command-line terminates.  The image settings include:</p>
351
352 <ul>
353 <a href="command-line-options.html#adjoin">&#x2011;adjoin</a>  • <a href="command-line-options.html#affine">&#x2011;affine</a>  • <a href="command-line-options.html#alpha">&#x2011;alpha</a>  • <a href="command-line-options.html#antialias">&#x2011;antialias</a>  • <a href="command-line-options.html#authenticate">&#x2011;authenticate</a>  • <a href="command-line-options.html#background">&#x2011;background</a>  • <a href="command-line-options.html#bias">&#x2011;bias</a>  • <a href="command-line-options.html#black-point-compensation">&#x2011;black&#x2011;point&#x2011;compensation</a>  • <a href="command-line-options.html#blue-primary">&#x2011;blue&#x2011;primary</a>  • <a href="command-line-options.html#bordercolor">&#x2011;bordercolor</a>  • <a href="command-line-options.html#caption">&#x2011;caption</a>  • <a href="command-line-options.html#channel">&#x2011;channel</a>  • <a href="command-line-options.html#comment">&#x2011;comment</a>  • <a href="command-line-options.html#compress">&#x2011;compress</a>  • <a href="command-line-options.html#debug">&#x2011;debug</a>  • <a href="command-line-options.html#define">&#x2011;define</a>  • <a href="command-line-options.html#delay">&#x2011;delay</a>  • <a href="command-line-options.html#density">&#x2011;density</a>  • <a href="command-line-options.html#depth">&#x2011;depth</a>  • <a href="command-line-options.html#direction">&#x2011;direction</a>  • <a href="command-line-options.html#display">&#x2011;display</a>  • <a href="command-line-options.html#dispose">&#x2011;dispose</a>  • <a href="command-line-options.html#dither">&#x2011;dither</a>  • <a href="command-line-options.html#encoding">&#x2011;encoding</a>  • <a href="command-line-options.html#endian">&#x2011;endian</a>  • <a href="command-line-options.html#extract">&#x2011;extract</a>  • <a href="command-line-options.html#family">&#x2011;family</a>  • <a href="command-line-options.html#fill">&#x2011;fill</a>  • <a href="command-line-options.html#filter">&#x2011;filter</a>  • <a href="command-line-options.html#font">&#x2011;font</a>  • <a href="command-line-options.html#format">&#x2011;format</a>  • <a href="command-line-options.html#fuzz">&#x2011;fuzz</a>  • <a href="command-line-options.html#geometry">&#x2011;geometry</a>  • <a href="command-line-options.html#gravity">&#x2011;gravity</a>  • <a href="command-line-options.html#green-primary">&#x2011;green&#x2011;primary</a>  • <a href="command-line-options.html#interlace">&#x2011;interlace</a>  • <a href="command-line-options.html#intent">&#x2011;intent</a>  • <a href="command-line-options.html#interpolate">&#x2011;interpolate</a>  • <a href="command-line-options.html#label">&#x2011;label</a>  • <a href="command-line-options.html#limit">&#x2011;limit</a>  • <a href="command-line-options.html#linewidth">&#x2011;linewidth</a>  • <a href="command-line-options.html#log">&#x2011;log</a>  • <a href="command-line-options.html#loop">&#x2011;loop</a>  • <a href="command-line-options.html#mattecolor">&#x2011;mattecolor</a>  • <a href="command-line-options.html#monitor">&#x2011;monitor</a>  • <a href="command-line-options.html#orient">&#x2011;orient</a>  • <a href="command-line-options.html#page">&#x2011;page</a>  • <a href="command-line-options.html#pointsize">&#x2011;pointsize</a>  • <a href="command-line-options.html#preview">&#x2011;preview</a>  • <a href="command-line-options.html#quality">&#x2011;quality</a>  • <a href="command-line-options.html#quiet">&#x2011;quiet</a>  • <a href="command-line-options.html#read-mask">&#x2011;read&#x2011;mask</a>  • <a href="command-line-options.html#red-primary">&#x2011;red&#x2011;primary</a>  • <a href="command-line-options.html#region">&#x2011;region</a>  • <a href="command-line-options.html#render">&#x2011;render</a>  • <a href="command-line-options.html#repage">&#x2011;repage</a>  • <a href="command-line-options.html#sampling-factor">&#x2011;sampling&#x2011;factor</a>  • <a href="command-line-options.html#scene">&#x2011;scene</a>  • <a href="command-line-options.html#seed">&#x2011;seed</a>  • <a href="command-line-options.html#size">&#x2011;size</a>  • <a href="command-line-options.html#stretch">&#x2011;stretch</a>  • <a href="command-line-options.html#stroke">&#x2011;stroke</a>  • <a href="command-line-options.html#strokewidth">&#x2011;strokewidth</a>  • <a href="command-line-options.html#style">&#x2011;style</a>  • <a href="command-line-options.html#texture">&#x2011;texture</a>  • <a href="command-line-options.html#tile">&#x2011;tile</a>  • <a href="command-line-options.html#transparent-color">&#x2011;transparent&#x2011;color</a>  • <a href="command-line-options.html#treedepth">&#x2011;treedepth</a>  • <a href="command-line-options.html#type">&#x2011;type</a>  • <a href="command-line-options.html#undercolor">&#x2011;undercolor</a>  • <a href="command-line-options.html#units">&#x2011;units</a>  • <a href="command-line-options.html#verbose">&#x2011;verbose</a>  • <a href="command-line-options.html#virtual-pixel">&#x2011;virtual&#x2011;pixel</a>  • <a href="command-line-options.html#weight">&#x2011;weight</a>  • <a href="command-line-options.html#write-mask">&#x2011;write&#x2011;mask</a> </ul>
354
355 <p>In this example, <var>-channel</var> applies to each of the images, since, as we mentioned, settings persist:
356 </p>
357
358 <pre class="highlight"><code>magick -channel RGB wand.png wizard.png images.png</code></pre>
359
360 <h4 class="magick-header"><a class="anchor" id="operator"></a>Image Operator</h4>
361
362 <p>An image operator differs from a setting in that it affects the image
363 immediately as it appears on the command-line.  An operator is
364 any command-line <a href="command-line-options.html">option</a> not listed as a
365 <a href="command-line-processing.html#setting">image setting</a> or
366 <a href="command-line-processing.html#sequence">image sequence operator</a>.  Unlike an
367 image setting, which persists until the command-line terminates,
368 an operator is applied to an image and forgotten.  The image operators
369 include:</p>
370
371 <ul>
372 <a href="command-line-options.html#annotate">&#x2011;annotate</a>  • <a href="command-line-options.html#black-threshold">&#x2011;black&#x2011;threshold</a>  • <a href="command-line-options.html#blur">&#x2011;blur</a>  • <a href="command-line-options.html#border">&#x2011;border</a>  • <a href="command-line-options.html#charcoal">&#x2011;charcoal</a>  • <a href="command-line-options.html#chop">&#x2011;chop</a>  • <a href="command-line-options.html#clip">&#x2011;clip</a>  • <a href="command-line-options.html#clip-path">&#x2011;clip&#x2011;path</a>  • <a href="command-line-options.html#clip-mask">&#x2011;clip&#x2011;mask</a>  • <a href="command-line-options.html#colors">&#x2011;colors</a>  • <a href="command-line-options.html#colorize">&#x2011;colorize</a>  • <a href="command-line-options.html#colorspace">&#x2011;colorspace</a>  • <a href="command-line-options.html#compose">&#x2011;compose</a>  • <a href="command-line-options.html#contrast">&#x2011;contrast</a>  • <a href="command-line-options.html#convolve">&#x2011;convolve</a>  • <a href="command-line-options.html#crop">&#x2011;crop</a>  • <a href="command-line-options.html#cycle">&#x2011;cycle</a>  • <a href="command-line-options.html#despeckle">&#x2011;despeckle</a>  • <a href="command-line-options.html#draw">&#x2011;draw</a>  • <a href="command-line-options.html#edge">&#x2011;edge</a>  • <a href="command-line-options.html#emboss">&#x2011;emboss</a>  • <a href="command-line-options.html#enhance">&#x2011;enhance</a>  • <a href="command-line-options.html#equalize">&#x2011;equalize</a>  • <a href="command-line-options.html#evaluate">&#x2011;evaluate</a>  • <a href="command-line-options.html#extent">&#x2011;extent</a>  • <a href="command-line-options.html#flip">&#x2011;flip</a>  • <a href="command-line-options.html#flop">&#x2011;flop</a>  • <a href="command-line-options.html#floodfill">&#x2011;floodfill</a>  • <a href="command-line-options.html#frame">&#x2011;frame</a>  • <a href="command-line-options.html#gamma">&#x2011;gamma</a>  • <a href="command-line-options.html#gaussian-blur">&#x2011;gaussian&#x2011;blur</a>  • <a href="command-line-options.html#grayscale">&#x2011;grayscale</a>  • <a href="command-line-options.html#implode">&#x2011;implode</a>  • <a href="command-line-options.html#lat">&#x2011;lat</a>  • <a href="command-line-options.html#level">&#x2011;level</a>  • <a href="command-line-options.html#map">&#x2011;map</a>  • <a href="command-line-options.html#median">&#x2011;median</a>  • <a href="command-line-options.html#modulate">&#x2011;modulate</a>  • <a href="command-line-options.html#monochrome">&#x2011;monochrome</a>  • <a href="command-line-options.html#negate">&#x2011;negate</a>  • <a href="command-line-options.html#noise">&#x2011;noise</a>  • <a href="command-line-options.html#normalize">&#x2011;normalize</a>  • <a href="command-line-options.html#opaque">&#x2011;opaque</a>  • <a href="command-line-options.html#ordered-dither">&#x2011;ordered&#x2011;dither</a>  • <a href="command-line-options.html#paint">&#x2011;paint</a>  • <a href="command-line-options.html#posterize">&#x2011;posterize</a>  • <a href="command-line-options.html#raise">&#x2011;raise</a>  • <a href="command-line-options.html#profile">&#x2011;profile</a>  • <a href="command-line-options.html#radial-blur">&#x2011;radial&#x2011;blur</a>  • <a href="command-line-options.html#raise">&#x2011;raise</a>  • <a href="command-line-options.html#random-threshold">&#x2011;random&#x2011;threshold</a>  • <a href="command-line-options.html#resample">&#x2011;resample</a>  • <a href="command-line-options.html#resize">&#x2011;resize</a>  • <a href="command-line-options.html#roll">&#x2011;roll</a>  • <a href="command-line-options.html#rotate">&#x2011;rotate</a>  • <a href="command-line-options.html#sample">&#x2011;sample</a>  • <a href="command-line-options.html#scale">&#x2011;scale</a>  • <a href="command-line-options.html#sepia-tone">&#x2011;sepia&#x2011;tone</a>  • <a href="command-line-options.html#segment">&#x2011;segment</a>  • <a href="command-line-options.html#shade">&#x2011;shade</a>  • <a href="command-line-options.html#shadow">&#x2011;shadow</a>  • <a href="command-line-options.html#sharpen">&#x2011;sharpen</a>  • <a href="command-line-options.html#shave">&#x2011;shave</a>  • <a href="command-line-options.html#shear">&#x2011;shear</a>  • <a href="command-line-options.html#sigmoidal-contrast">&#x2011;sigmoidal&#x2011;contrast</a>  • <a href="command-line-options.html#solarize">&#x2011;solarize</a>  • <a href="command-line-options.html#splice">&#x2011;splice</a>  • <a href="command-line-options.html#spread">&#x2011;spread</a>  • <a href="command-line-options.html#strip">&#x2011;strip</a>  • <a href="command-line-options.html#swirl">&#x2011;swirl</a>  • <a href="command-line-options.html#threshold">&#x2011;threshold</a>  • <a href="command-line-options.html#transparent">&#x2011;transparent</a>  • <a href="command-line-options.html#thumbnail">&#x2011;thumbnail</a>  • <a href="command-line-options.html#tint">&#x2011;tint</a>  • <a href="command-line-options.html#transform">&#x2011;transform</a>  • <a href="command-line-options.html#trim">&#x2011;trim</a>  • <a href="command-line-options.html#unsharp">&#x2011;unsharp</a>  • <a href="command-line-options.html#version">&#x2011;version</a>  • <a href="command-line-options.html#wave">&#x2011;wave</a>  • <a href="command-line-options.html#white-point">&#x2011;white&#x2011;point</a>  • <a href="command-line-options.html#white-threshold">&#x2011;white&#x2011;threshold</a> </ul>
373
374 <p>In this example, <var>-negate</var> negates the wand image but not the wizard:</p>
375
376 <pre class="highlight"><code>magick wand.png -negate wizard.png images.png</code></pre>
377
378 <h4 class="magick-header"><a class="anchor" id="channel"></a>Image Channel Operator</h4>
379 <p>Operate directly on image channels:</p>
380 <ul>
381 <a href="command-line-options.html#channel-fx">&#x2011;channel&#x2011;fx</a>  • <a href="command-line-options.html#separate">&#x2011;separate</a> </ul>
382
383 <h4 class="magick-header"><a class="anchor" id="sequence"></a>Image Sequence Operator</h4>
384
385 <p>An image sequence operator differs from a setting in that it affects an
386 image sequence immediately as it appears on the command-line.  Choose from
387 these image sequence operators:</p>
388
389 <ul>
390 <a href="command-line-options.html#append">&#x2011;append</a>  • <a href="command-line-options.html#affinity">&#x2011;affinity</a>  • <a href="command-line-options.html#average">&#x2011;average</a>  • <a href="command-line-options.html#clut">&#x2011;clut</a>  • <a href="command-line-options.html#coalesce">&#x2011;coalesce</a>  • <a href="command-line-options.html#combine">&#x2011;combine</a>  • <a href="command-line-options.html#compare">&#x2011;compare</a>  • <a href="command-line-options.html#complex">&#x2011;complex</a>  • <a href="command-line-options.html#composite">&#x2011;composite</a>  • <a href="command-line-options.html#copy">&#x2011;copy</a>  • <a href="command-line-options.html#crop">&#x2011;crop</a>  • <a href="command-line-options.html#debug">&#x2011;debug</a>  • <a href="command-line-options.html#deconstruct">&#x2011;deconstruct</a>  • <a href="command-line-options.html#delete">&#x2011;delete</a>  • <a href="command-line-options.html#evaluate-sequence">&#x2011;evaluate&#x2011;sequence</a>  • <a href="command-line-options.html#fft">&#x2011;fft</a>  • <a href="command-line-options.html#flatten">&#x2011;flatten</a>  • <a href="command-line-options.html#fx">&#x2011;fx</a>  • <a href="command-line-options.html#hald-clut">&#x2011;hald&#x2011;clut</a>  • <a href="command-line-options.html#ift">&#x2011;ift</a>  • <a href="command-line-options.html#identify">&#x2011;identify</a>  • <a href="command-line-options.html#insert">&#x2011;insert</a>  • <a href="command-line-options.html#layers">&#x2011;layers</a>  • <a href="command-line-options.html#limit">&#x2011;limit</a>  • <a href="command-line-options.html#map">&#x2011;map</a>  • <a href="command-line-options.html#maximum">&#x2011;maximum</a>  • <a href="command-line-options.html#minimum">&#x2011;minimum</a>  • <a href="command-line-options.html#morph">&#x2011;morph</a>  • <a href="command-line-options.html#mosaic">&#x2011;mosaic</a>  • <a href="command-line-options.html#optimize">&#x2011;optimize</a>  • <a href="command-line-options.html#print">&#x2011;print</a>  • <a href="command-line-options.html#process">&#x2011;process</a>  • <a href="command-line-options.html#quiet">&#x2011;quiet</a>  • <a href="command-line-options.html#swap">&#x2011;swap</a>  • <a href="command-line-options.html#write">&#x2011;write</a> </ul>
391 <p>In this example, <var>-append</var> appends three images into one:</p>
392
393 <pre class="highlight"><code>magick mikayla.png picnic.png beach.png -append vacation.png</code></pre>
394
395 <h4 class="magick-header"><a class="anchor" id="geometry"></a>Image Geometry</h4>
396
397 <p>Many command-line <a href="command-line-options.html">options</a> take a <var>geometry</var> argument
398 to specify such things as the desired width and height of an image and other
399 dimensional quantities. Because users want so many variations on the resulting
400 dimensions, sizes, and positions of images (and because ImageMagick wants to
401 provide them), the <var>geometry</var> argument can take many
402 forms. We describe many of these in this section. </p>
403
404 <p>The image options and settings that take some form of
405 a <var>geometry</var> argument include the following.
406 Keep in mind that some of these parse their arguments in slightly
407 different ways. See the documentation for the individual option or
408 setting for more specifics.</p>
409
410 <ul>
411 <a href="command-line-options.html#adaptive-resize">&#x2011;adaptive&#x2011;resize</a>  • <a href="command-line-options.html#border">&#x2011;border</a>  • <a href="command-line-options.html#borderwidth">&#x2011;borderwidth</a>  • <a href="command-line-options.html#chop">&#x2011;chop</a>  • <a href="command-line-options.html#crop">&#x2011;crop</a>  • <a href="command-line-options.html#density">&#x2011;density</a>  • <a href="command-line-options.html#extent">&#x2011;extent</a>  • <a href="command-line-options.html#extract">&#x2011;extract</a>  • <a href="command-line-options.html#frame">&#x2011;frame</a>  • <a href="command-line-options.html#geometry">&#x2011;geometry</a>  • <a href="command-line-options.html#iconGeometry">&#x2011;iconGeometry</a>  • <a href="command-line-options.html#liquid-rescale">&#x2011;liquid&#x2011;rescale</a>  • <a href="command-line-options.html#page">&#x2011;page</a>  • <a href="command-line-options.html#region">&#x2011;region</a>  • <a href="command-line-options.html#repage">&#x2011;repage</a>  • <a href="command-line-options.html#resize">&#x2011;resize</a>  • <a href="command-line-options.html#sample">&#x2011;sample</a>  • <a href="command-line-options.html#scale">&#x2011;scale</a>  • <a href="command-line-options.html#shave">&#x2011;shave</a>  • <a href="command-line-options.html#splice">&#x2011;splice</a>  • <a href="command-line-options.html#thumbnail">&#x2011;thumbnail</a>  • <a href="command-line-options.html#window">&#x2011;window</a> </ul>
412
413 <p>The <var>geometry</var> argument might take any of the forms listed in the table below. These will described in more detail in the subsections following the table. The usual form is <var>size</var>[<var>offset</var>], meaning <var>size</var> is required and <var>offset</var> is optional. Occasionally, [<var>size</var>]<var>offset</var> is possible. In no cases are spaces permitted within the <var>geometry</var> argument.</p>
414
415
416 <div class="table-responsive">
417 <table class="table table-sm table-striped">
418   <col width="20%"/> <col width="80%"/>
419   <thead>
420   <tr>
421     <th style="text-align:center"><var>size</var></th>
422     <th>General description (actual behavior can vary for different options and settings)</th>
423   </tr>
424   </thead>
425   <tbody>
426   <tr>
427     <td><var>scale</var>%</td>
428     <td>Height and width both scaled by specified percentage.</td>
429   </tr>
430   <tr>
431     <td><var>scale-x</var>%x<var>scale-y</var>%</td>
432     <td>Height and width individually scaled by specified percentages. (Only one % symbol needed.)</td>
433   </tr>
434   <tr>
435     <td><var>width</var></td>
436     <td>Width given, height automagically selected to preserve aspect ratio.</td>
437   </tr>
438   <tr>
439     <td>x<var>height</var></td>
440     <td>Height given, width automagically selected to preserve aspect ratio.</td>
441   </tr>
442   <tr>
443     <td><var>width</var>x<var>height</var></td>
444     <td>Maximum values of height and width given, aspect ratio preserved.</td>
445   </tr>
446   <tr>
447     <td><var>width</var>x<var>height</var>^</td>
448     <td>Minimum values of width and height given, aspect ratio preserved.</td>
449   </tr>
450   <tr>
451     <td><var>width</var>x<var>height</var>!</td>
452     <td>Width and height emphatically given, original aspect ratio ignored.</td>
453   </tr>
454   <tr>
455     <td><var>width</var>x<var>height</var>&gt;</td>
456     <td>Shrinks an image with dimension(s) <b>larger</b> than the corresponding <var>width</var> and/or <var>height</var> argument(s).</td>
457   </tr>
458   <tr>
459     <td><var>width</var>x<var>height</var>&lt;</td>
460     <td>Enlarges an image with dimension(s) <b>smaller</b> than the corresponding <var>width</var> and/or <var>height</var> argument(s).</td>
461   </tr>
462   <tr>
463     <td><var>area</var>@</td>
464     <td>Resize image to have specified area in pixels. Aspect ratio is preserved.</td>
465   <tr>
466     <td><var>x</var>:<var>y</var>~</td>
467     <td>Here x and y denotes an aspect ratio (e.g. 3:2 = 1.5).</td>
468   </tr>
469   </tr>
470   <tr>
471     <td>{<var>size</var>}{<var>offset</var>}</td>
472     <td>Specifying the <var>offset</var> (default is <code>+0+0</code>). Below, {<var>size</var>} refers to any of the forms above.</td>
473   </tr>
474   <tr>
475     <td>{<var>size</var>}{<var>+-</var>}<var>x</var>{<var>+-</var>}<var>y</var></td>
476     <td>Horizontal and vertical offsets <var>x</var> and <var>y</var>, specified in pixels. Signs are required for both. Offsets are affected by <a href="command-line-options.html#gravity">&#x2011;gravity</a> setting. Offsets are not affected by <code>%</code> or other <var>size</var> operators.</td>
477   </tr>
478  </tbody>
479 </table></div>
480
481
482 <h4>Basic adjustments to width and height; the operators <code>%</code>, <code>^</code>, and <code>!</code> </h4>
483 <p>Here, just below, are a few simple examples of <var>geometry</var>, showing how it might be used as an argument to the <a href="command-line-options.html#resize">&#x2011;resize</a> option. We'll use the internal image <code>logo:</code> for our input image.
484 <a href="../images/logo.png">
485 This fine image</a> is 640 pixels wide and 480 pixels high. We say its <var>dimensions</var> are 640x480. When we give dimensions of an image, the width (the horizontal dimension) always precedes the height (the vertical dimension). This will be true when we speak of coordinates or <var>offsets</var> into an image, which will always be <var>x</var>–value followed by <var>y</var>. Just think of your high school algebra classes and the <var>xy</var>–plane. (Well, almost: our <var>y</var>–axis will always go downward!)
486 </p>
487
488 <pre class="highlight"><code>magick logo: -resize '200%' bigWiz.png
489 magick logo: -resize '200x50%' longShortWiz.png
490 magick logo: -resize '100x200' notThinWiz.png
491 magick logo: -resize '100x200^' biggerNotThinWiz.png
492 magick logo: -resize '100x200!' dochThinWiz.png</code></pre>
493
494 <p>The first of the four commands is simple—it stretches both the width and height of the input image by <code>200%</code> in each direction; it magnifies the whole thing by a factor of two. The second command specifies different percentages for each direction, stretching the width to <code>200</code>% and squashing the height to <code>50%</code>. The resulting image (in this example) has dimensions 1280x240. Notice that the percent symbol needn't be repeated; the following are equivalent: <code>200x50%</code>, <code>200%x50</code>, <code>200%x50%</code>.
495 </p>
496
497 <p>By default, the width and height given in a <var>geometry</var> argument are <var>maximum</var> values unless a percentage is specified. That is, the image is expanded or contracted to fit the specified width and height value while maintaining the <var>aspect ratio</var> (the ratio of its height to its width) of the image. For instance, the third command above "tries" to set the dimensions to <code>100x200</code>. Imagine gradually shrinking the original image (which is 640x480), keeping is aspect ratio constant, until it just fits into a 100x200 rectangle. Since the image is longer than it is tall, it will fit when its width shrinks to 100 pixels. To preserve the aspect ratio, the height will therefore have to be (480/640)×100 pixels=75 pixels, so the final dimensions will be 100x75.</p>
498
499 <p> Notice that in the previous example, at least one of the specified dimensions will be attained (in this case, the width, 100 pixels). The resulting image fits snugly within the original. One can do just the opposite of this by invoking the <code>^</code> operator, as in the fourth example above. In that case, when <code>100x200^</code> is given as the argument, again at least one of the dimensions will be attained, but in this case the resulting image can snugly contain the original. Here the <var>geometry</var> argument gives <var>minimum</var> values. In our example, the height will become 200 and the width will be scaled to preserve the aspect ratio, becoming (640/480)×200 pixels=267 pixels. With the <code>^</code> operator, one of those dimensions will match the requested size, but the image will likely overflow the dimensions requested to preserve its aspect ratio. (The <code>^</code> feature is new as of IM 6.3.8-2.)</p>
500
501 <p>We see that ImageMagick is very good about preserving aspect ratios of images, to prevent distortion of your favorite photos and images. But you might really want the dimensions to be <code>100x200</code>, thereby stretching the image. In this case just tell ImageMagick you really mean it (!) by appending an exclamation operator to the geometry. This will force the image size to exactly what you specify. So, for example, if you specify <code>100x200!</code> the dimensions will become exactly 100x200 (giving a small, vertically elongated wizard).</p>
502
503 <h4>Bounding the width, height, and area; the operators <code>&gt;</code>, <code>&lt;</code>, and <code>@</code> </h4>
504 <p>
505 Here are a few more examples:
506 </p>
507
508 <pre class="highlight"><code>magick logo: -resize '100' wiz1.png
509 magick logo: -resize 'x200' wiz2.png
510 magick logo: -resize '100x200&gt;' wiz3.png
511 magick logo: -resize '100x200&lt;' wiz4.png</code></pre>
512
513 <p>If only one dimension is given it is taken to be the width. When only the width is specified, as in the first example above, the width is accepted as given and the height is chosen to maintain the aspect ratio of the input image. Similarly, if only the height is specified, as in the second example above, the height is accepted and the width is chosen to maintain the aspect ratio.</p>
514
515
516 <p>Use <code>&gt;</code> to shrink an image <var>only</var> if its dimension(s) are <b>larger</b> than the corresponding <var>width</var> and/or <var>height</var> arguments. Use <code>&lt;</code> to enlarge an image <var>only</var> if its dimension(s) are <b>smaller</b> than the corresponding <var>width</var> and/or <var>height</var> arguments.  In either case, if a change is made, the result is as if the <code>&gt;</code> or <code>&lt;</code> operator was not present. So, in the third example above, we specified <code>100x200&gt;</code> and the original image size is 640x480, so the image size is reduced as if we had specified <code>100x200</code>. However, in the fourth example above, there will be no change to its size.</p>
517
518 <p>Finally, use <code>@</code> to specify the maximum area in pixels of an image, again while attempting to preserve aspect ratio. (Pixels take only integer values, so some approximation is always at work.) In the following example, an area of 10000 pixels is requested. The resulting file has dimensions 115x86, which has 9890 pixels. </p>
519
520 <pre class="highlight"><code>magick logo: -resize '10000@' wiz10000.png</code></pre>
521
522 <p class="text-info">In all the examples above and below, we have enclosed the <var>geometry</var> arguments  within quotation marks. Doing so is optional in many cases, but not always. We <var>must</var> enclose the geometry specifications in quotation marks when using <code>&lt;</code> or <code>&gt;</code> to prevent these characters from being interpreted by the shell as <var>file redirection</var>. On Windows systems, the carat <code>^</code>  needs to be within quotes, else it is ignored. To be safe, one should probably maintain a habit of enclosing all <var>geometry</var> arguments in quotes, as we have here.
523 </p>
524
525 <h4>Offsets in geometry</h4>
526 <p>
527 Here are some examples to illustrate the use of <var>offsets</var> in <var>geometry</var> arguments. One typical use of offsets is in conjunction with the
528 <a href="command-line-options.html#region">&#x2011;region</a> option. This option allows many other options to modify the pixels within a specified rectangular subregion of an image. As such, it needs to be given the width and height of that region, and also an <var>offset</var> into the image, which is a pair of coordinates that indicate the location of the region within the larger image. Below, in the first example, we specify a region of size <code>100x200</code> to be located at the <var>xy</var>–coordinates <var>x</var>=10, <var>y</var>=20. Let's use the usual algebraic notation (<var>x</var>,<var>y</var>)=(10,20), for convenience.
529 </p>
530
531 <pre class="highlight"><code>magick logo: -region '100x200+10+20' -negate wizNeg1.png
532 magick logo: -region '100x200-10+20' -negate wizNeg2.png
533 magick logo: -gravity center -region '100x200-10+20' -negate wizNeg3.png</code></pre>
534
535 <p>Note that offsets always require +/− signs. The offset is not actually a true location within the image; its coordinates must be added to some other location. Let's refer to that as the <var>current location</var>. In the first two examples above, though, that location is the upper-left hand corner of the image, which has coordinates (0,0). (That is the default situation when there are no other directives given to change it.) The first example above puts the <code>100x200</code> rectangle's own upper-left corner at (10,20). </p>
536
537 <p>A negative offset can make sense in many cases. In the second example above, the offset is (-10,20), specified by <code>-10+20</code>. In that case, only the portion of the (virtual) rectangle obtained that lies within the image can be negated; here it is equivalent to specifying the geometry as <code>90x200+0+20</code>.</p>
538
539 <p>In the third example above, the <a href="command-line-options.html#gravity">&#x2011;gravity</a> setting precedes the others and sets the current location within the image at the very center of the image. In this case that is at pixel (320,240), since the size of the image is 640x480. This means that the offsets apply to that location, which thereby gets moved, in this case, to (320-10,240+20)=(310,260). But the <code>100x200</code> region itself is affected by the <a href="command-line-options.html#gravity">&#x2011;gravity</a> setting, so instead of affecting its upper-left corner, the region's own center (at (+50,+100) within it) is determined. Therefore the center of the <code>100x200</code> rectangle is moved to (310,260). The negated rectangle's upper-left corner is now at (310-50,260-100)=(260,160).
540 </p>
541
542
543 <h4 class="magick-header"><a class="anchor" id="stack"></a>Image Stack</h4>
544
545 <p>In school, your teacher probably permitted you to work on problems on a scrap of paper and then copy the results to your test paper.  An image stack is similar.  It permits you to work on an image or image sequence in isolation and subsequently introduce the results back into the command-line.  The image stack is delineated with parenthesis.  Image operators only affect images in the current stack.  For example, we can limit the image rotation to just the wizard image like this:</p>
546
547 <pre class="highlight"><code>magick wand.gif \( wizard.gif -rotate 30 \) +append images.gif</code></pre>
548
549
550 <p class="text-info">Notice again that the  parentheses are <var>escaped</var> by preceding them with
551 backslashes.  This is required under Unix, where parentheses are special
552 <var>shell</var> characters.  The backslash tells the shell not to interpret
553 these characters, but to pass them directly to the command being executed. Do
554 not escape the parentheses under Windows. Each parenthesis (or escaped
555 parenthesis) must have spaces on either side, as in the example shown
556 above.</p>
557
558 <p>In addition to the image operators already discussed, the following image operators are most useful when processing images in an image stack:</p>
559
560 <ul>
561 <a href="command-line-options.html#clone">&#x2011;clone</a>  • <a href="command-line-options.html#delete">&#x2011;delete</a>  • <a href="command-line-options.html#insert">&#x2011;insert</a>  • <a href="command-line-options.html#swap">&#x2011;swap</a> </ul>
562
563 <p>The arguments to these operators are indexes into the image sequence by number, starting with zero, for the first image, and so on. However if you give a negative index, the images are indexed from the end (last image added). That is, an index of -1 is the last image in the current image sequence, -2 gives the second-to-last, and so on.</p>
564
565 <h2 class="magick-post-title"><a class="anchor" id="output"></a>Output Filename</h2>
566
567 <p>ImageMagick extends the concept of an output filename to include:</p>
568
569 <ol>
570 <li>an explicit image format</li>
571 <li>write to <var>standard out</var></li>
572 <li>filename references</li>
573 </ol>
574
575 <p>Each of these extensions are explained in the next few paragraphs.</p>
576
577 <h4>Explicit Image Format</h4>
578   <p>Images can be stored in a mryiad of image formats including the better known JPEG, PNG, TIFF and others.  ImageMagick must know the desired format of the image before it is written.  ImageMagick leverages the filename extension to determine the format.  For example, <code>image.jpg</code> tells ImageMagick to write the image in the JPEG format.  In some cases the filename does not identify the image format.  In these cases, the image is written in the format it was originally read unless an explicit image format is specified.  For example, suppose we want to write our image to a filename of <code>image</code> in the raw red, green, and blue intensity format:
579   </p>
580
581 <pre class="highlight"><code>magick image.jpg rgb:image</code></pre>
582
583
584 <h4>Standard Out</h4>
585   <p>Unix permits the output of one command to be piped to another.  ImageMagick permits piping one command to another with a filename of <code>-</code>.  In this example we pipe the output of <a href="convert.html">convert</a> to the <a href="display.html">display</a> program:
586   </p>
587
588 <pre class="highlight"><code>magick logo: gif:- | display gif:-</code></pre>
589
590 <p>Here the explicit format is optional.  The GIF image format has a signature that uniquely identifies it so ImageMagick can readily recognize the format as GIF.</p>
591
592 <h4>Filename References</h4>
593 <p>Optionally, use an embedded formatting character to write a sequential image list.  Suppose our output filename is <code>image-%d.jpg</code> and our image list includes 3 images.  You can expect these images files to be written:
594 </p>
595
596 <pre class="highlight">image-0.jpg
597 image-1.jpg
598 image-2.jpg</pre>
599
600 <p>Or retrieve image properties to modify the image filename.  For example, the command
601 </p>
602
603 <pre class="highlight"><code>magick rose: -set filename:area '%wx%h' 'rose-%[filename:area].png'</code></pre>
604
605 <p>writes an image with this filename:
606 </p>
607
608 <pre class="highlight">rose-70x46.png</pre>
609
610 <p>Finally to convert multiple JPEG images to individual PDF pages, use:</p>
611
612 <pre class="highlight"><code>magick *.jpg +adjoin page-%d.pdf</code></pre>
613
614 <h4>Stream Buffering</h4>
615
616 <p>By default, the output stream is buffered.  To ensure information appears on the destination file or terminal as soon as written, set the buffer size to 0:</p>
617
618 <pre class="highlight"><code>magick -define stream:buffer-size=0 logo: gif:- | display gif:-</code></pre>
619 </div>
620     </div>
621   </main><!-- /.container -->
622   <footer class="magick-footer">
623     <p><a href="security-policy.html">Security</a> •
624     <a href="architecture.html">Architecture</a> •
625     <a href="links.html">Related</a> •
626      <a href="sitemap.html">Sitemap</a>
627        
628     <a href="command-line-processing.html#"><img class="d-inline" id="logo" alt="And Now a Touch of Magick" width="16" height="16" src="../images/wand.ico"/></a>
629        
630     <a href="http://pgp.mit.edu/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> •
631     <a href="support.html">Donate</a> •
632     <a href="https://www.imagemagick.org/script/contact.php">Contact Us</a>
633     <br/>
634         <small>© 1999-2018 ImageMagick Studio LLC</small></p>
635   </footer>
636
637   <!-- Javascript assets -->
638   <script src="assets/magick.js" crossorigin="anonymous"></script>
639   <script>window.jQuery || document.write('<script src="assets/jquery.min.js"><\/script>')</script>
640 </body>
641 </html>
642 <!-- Magick Cache 18th February 2018 12:54 -->