• 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,minimum-scale=1,initial-scale=1,shrink-to-fit=no"  />
10  <title>Command-line Tools: Montage @ ImageMagick</title>
11  <meta name="application-name" content="ImageMagick" />
12  <meta name="description" content="Use ImageMagick® to create, edit, compose, or convert bitmap images. You can resize your image, crop it, change its shades and colors, add captions, among other operations." />
13  <meta name="application-url" content="https://imagemagick.org" />
14  <meta name="generator" content="PHP" />
15  <meta name="keywords" content="command-line, tools:, montage, 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-2019 ImageMagick Studio LLC" />
23  <meta name="distribution" content="Global" />
24  <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1" />
25  <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
26  <link href="../www/montage.html" rel="canonical" />
27  <link href="../images/wand.png" rel="icon" />
28  <link href="../images/wand.ico" rel="shortcut icon" />
29  <link href="assets/magick.css" rel="stylesheet" />
30</head>
31<body>
32  <header>
33  <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
34    <a class="navbar-brand" href="../index.html"><img class="d-block" id="icon" alt="ImageMagick" width="32" height="32" src="../images/wand.ico"/></a>
35    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsMagick" aria-controls="navbarsMagick" aria-expanded="false" aria-label="Toggle navigation">
36      <span class="navbar-toggler-icon"></span>
37    </button>
38
39    <div class="navbar-collapse collapse" id="navbarsMagick" style="">
40    <ul class="navbar-nav mr-auto">
41      <li class="nav-item ">
42        <a class="nav-link" href="../index.html">Home <span class="sr-only">(current)</span></a>
43      </li>
44      <li class="nav-item ">
45        <a class="nav-link" href="download.html">Download</a>
46      </li>
47      <li class="nav-item ">
48        <a class="nav-link" href="command-line-tools.html">Tools</a>
49      </li>
50      <li class="nav-item ">
51        <a class="nav-link" href="command-line-processing.html">Command-line</a>
52      </li>
53      <li class="nav-item ">
54        <a class="nav-link" href="resources.html">Resources</a>
55      </li>
56      <li class="nav-item ">
57        <a class="nav-link" href="develop.html">Develop</a>
58      </li>
59      <li class="nav-item">
60        <a class="nav-link" target="_blank" href="https://imagemagick.org/discourse-server/">Community</a>
61      </li>
62    </ul>
63    <form class="form-inline my-2 my-lg-0" action="https://imagemagick.org/script/search.php">
64      <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search">
65      <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
66    </form>
67    </div>
68  </nav>
69  <div class="container">
70   <script async="async" src="http://localhost/pagead/js/adsbygoogle.js"></script>    <ins class="adsbygoogle"
71         style="display:block"
72         data-ad-client="ca-pub-3129977114552745"
73         data-ad-slot="6345125851"
74         data-ad-format="auto"></ins>
75    <script>
76      (adsbygoogle = window.adsbygoogle || []).push({});
77    </script>
78
79  </div>
80  </header>
81  <main class="container">
82    <div class="magick-template">
83<div class="magick-header">
84<p class="text-center"><a href="montage.html#usage">Example Usage</a> • <a href="montage.html#options">Option Summary</a></p>
85
86<p class="lead magick-description">Use the <code>montage</code> program to create a composite image by combining several separate images.  The images are tiled on the composite image optionally adorned with a border, frame, image name, and more. See <a href="command-line-processing.html">Command Line Processing</a> for advice on how to structure your <code>montage</code> command or see below for example usages of the command.</p>
87
88<h2><a class="anchor" id="usage"></a>Example Usage</h2>
89
90<p>We list a few examples of the <code>montage</code> command here to illustrate its usefulness and ease of use.  To get started, let's montage two images into a single composite:</p>
91
92<pre class="highlight"><code>magick montage -background '#336699' -geometry +4+4 rose.jpg red-ball.png montage.jpg
93</code></pre>
94
95<ul>
96  <a href="../images/rose.jpg">
97  <img style="margin-top:14px; margin-bottom:14px;" src="../images/rose.jpg" width="70" height="46" alt="rose" />
98  </a>
99  <a href="../images/red-ball.png">
100  <img style="margin-top:2px; margin-bottom:2px;" src="../images/red-ball.png" width="70" height="70" alt="red ball" />
101  </a>
102  <img style="margin-top:27px; margin-bottom:27px;" src="../images/right.gif" width="20" height="20" alt="==>" />
103  <a href="../images/montage.jpg">
104  <img src="../images/montage.jpg" width="148" height="74" alt="montage" />
105  </a>
106</ul>
107
108<p>Ok, let's add some decorations:</p>
109
110<pre class="highlight"><code>magick montage -label %f -frame 5 -background '#336699' -geometry +4+4 rose.jpg red-ball.png frame.jpg
111</code></pre>
112
113<ul>
114  <a href="../images/rose.jpg">
115  <img style="margin-top:31px; margin-bottom:31px;" src="../images/rose.jpg" width="70" height="46" alt="rose.jpg" />
116  </a>
117  <a href="../images/red-ball.png">
118  <img style="margin-top:19px; margin-bottom:19px;" src="../images/red-ball.png" width="70" height="70" alt="red ball" />
119  </a>
120	<img style="margin-top:44px; margin-bottom:44px;" src="../images/right.gif" width="20" height="20" alt="==>" />
121  <a href="../images/frame.jpg">
122  <img src="../images/frame.jpg" width="176" height="108" alt="frame" />
123  </a>
124</ul>
125
126<p>You can find additional examples of using <code>montage</code> at <a href="../Usage/montage/">Examples of ImageMagick Usage</a> and <a href="http://www.ibm.com/developerworks/library/l-graf/?ca=dnt-428">Graphics from the Command Line</a>.  Further discussion is available in  <a href="http://www.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine">More Graphics from the Command Line</a> and <a href="../Usage/">Examples of ImageMagick Usage</a>.</p>
127
128<h2><a class="anchor" id="options"></a>Option Summary</h2>
129
130<p>The <code>montage</code> command recognizes these options.  Click on an option to get more details about how that option works.</p>
131
132<table class="table table-sm table-striped">
133  <tbody>
134  <tr>
135    <th align="left">Option</th>
136    <th align="left">Description</th>
137  </tr>
138
139  <tr>
140    <td><a href="command-line-options.html#adaptive-sharpen">-adaptive-sharpen <var>geometry</var></a></td>
141    <td>adaptively sharpen pixels; increase effect near edges</td>
142  </tr>
143
144  <tr>
145    <td><a href="command-line-options.html#adjoin">-adjoin</a></td>
146    <td>join images into a single multi-image file</td>
147  </tr>
148
149  <tr>
150    <td><a href="command-line-options.html#affine">-affine <var>matrix</var></a></td>
151    <td>affine transform matrix</td>
152  </tr>
153
154  <tr>
155    <td><a href="command-line-options.html#alpha">-alpha</a></td>
156    <td>on, activate, off, deactivate, set, opaque, copy",
157transparent, extract, background, or shape the alpha channel</td>
158  </tr>
159
160  <tr>
161    <td><a href="command-line-options.html#annotate">-annotate <var>geometry text</var></a></td>
162    <td>annotate the image with text</td>
163  </tr>
164
165  <tr>
166    <td><a href="command-line-options.html#authenticate">-authenticate <var>value</var></a></td>
167    <td>decrypt image with this password</td>
168  </tr>
169
170  <tr>
171    <td><a href="command-line-options.html#auto-orient">-auto-orient</a></td>
172    <td>automagically orient image</td>
173  </tr>
174
175  <tr>
176    <td><a href="command-line-options.html#background">-background <var>color</var></a></td>
177    <td>background color</td>
178  </tr>
179
180  <tr>
181    <td><a href="command-line-options.html#blue-primary">-blue-primary <var>point</var></a></td>
182    <td>chromaticity blue primary point</td>
183  </tr>
184
185  <tr>
186    <td><a href="command-line-options.html#blur">-blur <var>geometry</var></a></td>
187    <td>reduce image noise and reduce detail levels</td>
188  </tr>
189
190  <tr>
191    <td><a href="command-line-options.html#border">-border <var>geometry</var></a></td>
192    <td>surround image with a border of color</td>
193  </tr>
194
195  <tr>
196    <td><a href="command-line-options.html#bordercolor">-bordercolor <var>color</var></a></td>
197    <td>border color</td>
198  </tr>
199
200  <tr>
201    <td><a href="command-line-options.html#caption">-caption <var>string</var></a></td>
202    <td>assign a caption to an image</td>
203  </tr>
204
205  <tr>
206    <td><a href="command-line-options.html#channel">-channel <var>type</var></a></td>
207    <td>apply option to select image channels</td>
208  </tr>
209
210  <tr>
211    <td><a href="command-line-options.html#clone">-clone <var>index</var></a></td>
212    <td>clone an image</td>
213  </tr>
214
215  <tr>
216    <td><a href="command-line-options.html#coalesce">-coalesce</a></td>
217    <td>merge a sequence of images</td>
218  </tr>
219
220  <tr>
221    <td><a href="command-line-options.html#colors">-colors <var>value</var></a></td>
222    <td>preferred number of colors in the image</td>
223  </tr>
224
225  <tr>
226    <td><a href="command-line-options.html#colorspace">-colorspace <var>type</var></a></td>
227    <td>set image colorspace</td>
228  </tr>
229
230  <tr>
231    <td><a href="command-line-options.html#comment">-comment <var>string</var></a></td>
232    <td>annotate image with comment</td>
233  </tr>
234
235  <tr>
236    <td><a href="command-line-options.html#compose">-compose <var>operator</var></a></td>
237    <td>set image composite operator</td>
238  </tr>
239
240  <tr>
241    <td><a href="command-line-options.html#composite">-composite</a></td>
242    <td>composite image</td>
243  </tr>
244
245  <tr>
246    <td><a href="command-line-options.html#compress">-compress <var>type</var></a></td>
247    <td>image compression type</td>
248  </tr>
249
250  <tr>
251    <td><a href="command-line-options.html#crop">-crop <var>geometry</var></a></td>
252    <td>preferred size and location of the cropped image</td>
253  </tr>
254
255  <tr>
256    <td><a href="command-line-options.html#debug">-debug <var>events</var></a></td>
257    <td>display copious debugging information</td>
258  </tr>
259
260  <tr>
261    <td><a href="command-line-options.html#define">-define <var>format:option</var></a></td>
262    <td>define one or more image format options</td>
263  </tr>
264
265  <tr>
266    <td><a href="command-line-options.html#density">-density <var>geometry</var></a></td>
267    <td>horizontal and vertical density of the image</td>
268  </tr>
269
270  <tr>
271    <td><a href="command-line-options.html#depth">-depth <var>value</var></a></td>
272    <td>image depth</td>
273  </tr>
274
275  <tr>
276    <td><a href="command-line-options.html#display">-display <var>server</var></a></td>
277    <td>get image or font from this X server</td>
278  </tr>
279
280  <tr>
281    <td><a href="command-line-options.html#dispose">-dispose <var>method</var></a></td>
282    <td>layer disposal method</td>
283  </tr>
284
285  <tr>
286    <td><a href="command-line-options.html#dither">-dither  <var>method</var></a></td>
287    <td>apply error diffusion to image</td>
288  </tr>
289
290  <tr>
291    <td><a href="command-line-options.html#draw">-draw <var>string</var></a></td>
292    <td>annotate the image with a graphic primitive</td>
293  </tr>
294
295  <tr>
296    <td><a href="command-line-options.html#duplicate">-duplicate <var>count,indexes</var></a></td>
297    <td>duplicate an image one or more times</td>
298  </tr>
299
300  <tr>
301    <td><a href="command-line-options.html#endian">-endian <var>type</var></a></td>
302    <td>endianness (MSB or LSB) of the image</td>
303  </tr>
304
305  <tr>
306    <td><a href="command-line-options.html#extent">-extent <var>geometry</var></a></td>
307    <td>set the image size</td>
308  </tr>
309
310  <tr>
311    <td><a href="command-line-options.html#extract">-extract <var>geometry</var></a></td>
312    <td>extract area from image</td>
313  </tr>
314
315  <tr>
316    <td><a href="command-line-options.html#fill">-fill <var>color</var></a></td>
317    <td>color to use when filling a graphic primitive</td>
318  </tr>
319
320  <tr>
321    <td><a href="command-line-options.html#filter">-filter <var>type</var></a></td>
322    <td>use this filter when resizing an image</td>
323  </tr>
324
325  <tr>
326    <td><a href="command-line-options.html#flatten">-flatten</a></td>
327    <td>flatten a sequence of images</td>
328  </tr>
329
330  <tr>
331    <td><a href="command-line-options.html#flip">-flip</a></td>
332    <td>flip image in the vertical direction</td>
333  </tr>
334
335  <tr>
336    <td><a href="command-line-options.html#flop">-flop</a></td>
337    <td>flop image in the horizontal direction</td>
338  </tr>
339
340  <tr>
341    <td><a href="command-line-options.html#font">-font <var>name</var></a></td>
342    <td>render text with this font</td>
343  </tr>
344
345  <tr>
346    <td><a href="command-line-options.html#frame">-frame <var>geometry</var></a></td>
347    <td>surround image with an ornamental border</td>
348  </tr>
349
350  <tr>
351    <td><a href="command-line-options.html#gamma">-gamma <var>value</var></a></td>
352    <td>level of gamma correction</td>
353  </tr>
354
355  <tr>
356    <td><a href="command-line-options.html#geometry">-geometry <var>geometry</var></a></td>
357    <td>preferred size or location of the image</td>
358  </tr>
359
360  <tr>
361    <td><a href="command-line-options.html#gravity">-gravity <var>type</var></a></td>
362    <td>horizontal and vertical text placement</td>
363  </tr>
364
365  <tr>
366    <td><a href="command-line-options.html#green-primary">-green-primary <var>point</var></a></td>
367    <td>chromaticity green primary point</td>
368  </tr>
369
370  <tr>
371    <td><a href="command-line-options.html#help">-help</a></td>
372    <td>print program options</td>
373  </tr>
374
375  <tr>
376    <td><a href="command-line-options.html#identify">-identify</a></td>
377    <td>identify the format and characteristics of the image</td>
378  </tr>
379
380  <tr>
381    <td><a href="command-line-options.html#interlace">-interlace <var>type</var></a></td>
382    <td>type of image interlacing scheme</td>
383  </tr>
384
385  <tr>
386    <td><a href="command-line-options.html#interpolate">-interpolate <var>method</var></a></td>
387    <td>pixel color interpolation method</td>
388  </tr>
389
390  <tr>
391    <td><a href="command-line-options.html#kerning">-kerning <var>value</var></a></td>
392    <td>the space between two characters</td>
393  </tr>
394
395  <tr>
396    <td><a href="command-line-options.html#label">-label <var>string</var></a></td>
397    <td>assign a label to an image</td>
398  </tr>
399
400  <tr>
401    <td><a href="command-line-options.html#limit">-limit <var>type value</var></a></td>
402    <td>pixel cache resource limit</td>
403  </tr>
404
405  <tr>
406    <td><a href="command-line-options.html#log">-log <var>format</var></a></td>
407    <td>format of debugging information</td>
408  </tr>
409
410  <tr>
411    <td><a href="command-line-options.html#mattecolor">-mattecolor <var>color</var></a></td>
412    <td>frame color</td>
413  </tr>
414
415  <tr>
416    <td><a href="command-line-options.html#mode">-mode <var>type</var></a></td>
417    <td>framing style</td>
418  </tr>
419
420  <tr>
421    <td><a href="command-line-options.html#monitor">-monitor</a></td>
422    <td>monitor progress</td>
423  </tr>
424
425  <tr>
426    <td><a href="command-line-options.html#monochrome">-monochrome</a></td>
427    <td>transform image to black and white</td>
428  </tr>
429
430  <tr>
431    <td><a href="command-line-options.html#origin">-origin <var>geometry</var></a></td>
432    <td>image origin</td>
433  </tr>
434
435  <tr>
436    <td><a href="command-line-options.html#page">-page <var>geometry</var></a></td>
437    <td>size and location of an image canvas (setting)</td>
438  </tr>
439
440  <tr>
441    <td><a href="command-line-options.html#pointsize">-pointsize <var>value</var></a></td>
442    <td>font point size</td>
443  </tr>
444
445  <tr>
446    <td><a href="command-line-options.html#polaroid">-polaroid <var>angle</var></a></td>
447    <td>simulate a Polaroid picture</td>
448  </tr>
449
450  <tr>
451    <td><a href="command-line-options.html#profile">-profile <var>filename</var></a></td>
452    <td>add, delete, or apply an image profile</td>
453  </tr>
454
455  <tr>
456    <td><a href="command-line-options.html#quality">-quality <var>value</var></a></td>
457    <td>JPEG/MIFF/PNG compression level</td>
458  </tr>
459
460  <tr>
461    <td><a href="command-line-options.html#quantize">-quantize <var>colorspace</var></a></td>
462    <td>reduce image colors in this colorspace</td>
463  </tr>
464
465  <tr>
466    <td><a href="command-line-options.html#quiet">-quiet</a></td>
467    <td>suppress all warning messages</td>
468  </tr>
469
470  <tr>
471    <td><a href="command-line-options.html#red-primary">-red-primary <var>point</var></a></td>
472    <td>chromaticity red primary point</td>
473  </tr>
474
475  <tr>
476    <td><a href="command-line-options.html#regard-warnings">-regard-warnings</a></td>
477    <td>pay attention to warning messages.</td>
478  </tr>
479
480  <tr>
481    <td><a href="command-line-options.html#repage">-repage <var>geometry</var></a></td>
482    <td>size and location of an image canvas</td>
483  </tr>
484
485  <tr>
486    <td><a href="command-line-options.html#resize">-resize <var>geometry</var></a></td>
487    <td>resize the image</td>
488  </tr>
489
490  <tr>
491    <td><a href="command-line-options.html#respect-parentheses">-respect-parentheses</a></td>
492    <td>settings remain in effect until parenthesis boundary.</td>
493  </tr>
494
495  <tr>
496    <td><a href="command-line-options.html#rotate">-rotate <var>degrees</var></a></td>
497    <td>apply Paeth rotation to the image</td>
498  </tr>
499
500  <tr>
501    <td><a href="command-line-options.html#sampling-factor">-sampling-factor <var>geometry</var></a></td>
502    <td>horizontal and vertical sampling factor</td>
503  </tr>
504
505  <tr>
506    <td><a href="command-line-options.html#scale">-scale <var>geometry</var></a></td>
507    <td>scale the image</td>
508  </tr>
509
510  <tr>
511    <td><a href="command-line-options.html#scenes">-scenes<var>range</var></a></td>
512    <td>image scene range</td>
513  </tr>
514
515  <tr>
516    <td><a href="command-line-options.html#seed">-seed <var>value</var></a></td>
517    <td>seed a new sequence of pseudo-random numbers</td>
518  </tr>
519
520  <tr>
521    <td><a href="command-line-options.html#shadow">-shadow <var>geometry</var></a></td>
522    <td>simulate an image shadow</td>
523  </tr>
524
525  <tr>
526    <td><a href="command-line-options.html#size">-size <var>geometry</var></a></td>
527    <td>width and height of image</td>
528  </tr>
529
530  <tr>
531    <td><a href="command-line-options.html#strip">-strip</a></td>
532    <td>strip image of all profiles and comments</td>
533  </tr>
534
535  <tr>
536    <td><a href="command-line-options.html#stroke">-stroke <var>color</var></a></td>
537    <td>graphic primitive stroke color</td>
538  </tr>
539
540  <tr>
541    <td><a href="command-line-options.html#synchronize">-synchronize</a></td>
542    <td>synchronize image to storage device</td>
543  </tr>
544
545  <tr>
546    <td><a href="command-line-options.html#taint">-taint</a></td>
547    <td>mark the image as modified</td>
548  </tr>
549
550  <tr>
551    <td><a href="command-line-options.html#texture">-texture <var>filename</var></a></td>
552    <td>name of texture to tile onto the image background</td>
553  </tr>
554
555  <tr>
556    <td><a href="command-line-options.html#tile">-tile <var>filename</var></a></td>
557    <td>tile image when filling a graphic primitive</td>
558  </tr>
559
560  <tr>
561    <td><a href="command-line-options.html#tile-offset">-tile-offset <var>geometry</var></a></td>
562    <td>set the image tile offset</td>
563  </tr>
564
565  <tr>
566    <td><a href="command-line-options.html#title">-title</a></td>
567    <td>decorate the montage image with a title</td>
568  </tr>
569
570  <tr>
571    <td><a href="command-line-options.html#transform">-transform</a></td>
572    <td>affine transform image</td>
573  </tr>
574
575  <tr>
576    <td><a href="command-line-options.html#transparent">-transparent <var>color</var></a></td>
577    <td>make this color transparent within the image</td>
578  </tr>
579
580  <tr>
581    <td><a href="command-line-options.html#transpose">-transpose</a></td>
582    <td>flip image in the vertical direction and rotate 90 degrees</td>
583  </tr>
584
585  <tr>
586    <td><a href="command-line-options.html#transparent-color">-transparent-color <var>color</var></a></td>
587    <td>transparent color</td>
588  </tr>
589
590  <tr>
591    <td><a href="command-line-options.html#treedepth">-treedepth <var>value</var></a></td>
592    <td>color tree depth</td>
593  </tr>
594
595  <tr>
596    <td><a href="command-line-options.html#trim">-trim</a></td>
597    <td>trim image edges</td>
598  </tr>
599
600  <tr>
601    <td><a href="command-line-options.html#type">-type <var>type</var></a></td>
602    <td>image type</td>
603  </tr>
604
605  <tr>
606    <td><a href="command-line-options.html#units">-units <var>type</var></a></td>
607    <td>the units of image resolution</td>
608  </tr>
609
610  <tr>
611    <td><a href="command-line-options.html#unsharp">-unsharp <var>geometry</var></a></td>
612    <td>sharpen the image</td>
613  </tr>
614
615  <tr>
616    <td><a href="command-line-options.html#verbose">-verbose</a></td>
617    <td>print detailed information about the image</td>
618  </tr>
619
620  <tr>
621    <td><a href="command-line-options.html#version">-version</a></td>
622    <td>print version information</td>
623  </tr>
624
625  <tr>
626    <td><a href="command-line-options.html#view">-view</a></td>
627    <td>FlashPix viewing transforms</td>
628  </tr>
629
630  <tr>
631    <td><a href="command-line-options.html#virtual-pixel">-virtual-pixel <var>method</var></a></td>
632    <td>access method for pixels outside the boundaries of the image</td>
633  </tr>
634
635  <tr>
636    <td><a href="command-line-options.html#white-point">-white-point <var>point</var></a></td>
637    <td>chromaticity white point</td>
638  </tr>
639
640  </tbody>
641</table>
642
643</div>
644    </div>
645  </main><!-- /.container -->
646  <footer class="magick-footer">
647    <p><a href="security-policy.html">Security</a> •
648    <a href="architecture.html">Architecture</a> •
649    <a href="links.html">Related</a> •
650     <a href="sitemap.html">Sitemap</a>
651
652    <a href="montage.html#"><img class="d-inline" id="wand" alt="And Now a Touch of Magick" width="16" height="16" src="../images/wand.ico"/></a>
653
654    <a href="http://pgp.mit.edu/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> •
655    <a href="support.html">Donate</a> •
656    <a href="https://imagemagick.org/script/contact.php">Contact Us</a>
657    <br/>
658    <small>© 1999-2019 ImageMagick Studio LLC</small></p>
659  </footer>
660
661  <!-- Javascript assets -->
662  <script src="assets/magick.js" crossorigin="anonymous"></script>
663  <script>window.jQuery || document.write('<script src="https://localhost/ajax/libs/jquery/3.3.1/jquery.min.js"><\/script>')</script>
664</body>
665</html>
666<!-- Magick Cache 5th January 2019 11:42 -->