]> granicus.if.org Git - imagemagick/blob - www/formats.html
Add Twitter's { bootstrap.css, bootstrap.js }
[imagemagick] / www / formats.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4   
5     <title>ImageMagick: Formats</title>
6   <meta http-equiv="content-type" content="text/html; charset=utf-8">
7   <meta name="application-name" content="ImageMagick">
8   <meta name="description" content="ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-2000, GIF, WebP, Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.">
9   <meta name="application-url" content="http://www.imagemagick.org">
10   <meta name="generator" content="PHP">
11   <meta name="keywords" content="formats, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert">
12   <meta name="rating" content="GENERAL">
13   <meta name="robots" content="INDEX, FOLLOW">
14   <meta name="generator" content="ImageMagick Studio LLC">
15   <meta name="author" content="ImageMagick Studio LLC">
16   <meta name="revisit-after" content="2 DAYS">
17   <meta name="resource-type" content="document">
18   <meta name="copyright" content="Copyright (c) 1999-2015 ImageMagick Studio LLC">
19   <meta name="distribution" content="Global">
20   <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1">
21   <link rel="icon" href="../images/wand.png">
22   <link rel="shortcut icon" href="../images/wand.ico">
23   <link rel="stylesheet" href="../css/magick.html">
24 </head>
25 <body>
26 <div class="main">
27 <div class="magick-masthead">
28   <div class="container">
29     <script async src="http://localhost/pagead/js/adsbygoogle.js"></script>    <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3129977114552745" data-ad-slot="6345125851" data-ad-format="auto"></ins>
30     <script>
31     (adsbygoogle = window.adsbygoogle || []).push({});
32     </script>
33     <nav class="magick-nav">
34       <a class="magick-nav-item " href="../index.html">Home</a>
35       <a class="magick-nav-item " href="binary-releases.html">Download</a>
36       <a class="magick-nav-item " href="command-line-tools.html">Tools</a>
37       <a class="magick-nav-item " href="command-line-options.html">Options</a>
38       <a class="magick-nav-item " href="resources.html">Resources</a>
39       <a class="magick-nav-item " href="api.html">Develop</a>
40       <a class="magick-nav-item " href="http://nextgen.imagemagick.org/script/search.php">Search</a>
41       <a class="magick-nav-item pull-right" href="http://www.imagemagick.org/discourse-server/">Community</a>
42     </nav>
43   </div>
44 </div>
45 <div class="container">
46 <div class="magick-header">
47 <p class="text-center"><a href="formats.html#colorspace">A Word about Colorspaces</a> • <a href="formats.html#supported">Supported Formats</a> • <a href="formats.html#pseudo">Pseudo Formats</a> • <a href="formats.html#builtin-images">Built-in Images</a>  • <a href="formats.html#builtin-patterns">Built-in Patterns</a> • <a href="formats.html#embedded">Embedded Profiles</a></p>
48
49 <p class="lead magick-description">ImageMagick uses an ASCII string known as <var>magick</var> (e.g. <code>GIF</code>) to identify file formats, algorithms acting as formats, built-in patterns, and embedded profile types.  Support for some of the formats are delegated to libraries or external programs. The Installation Guide describes where to find these distributions and any special configuration options required.</p>
50
51 <p>To get a complete listing of which image formats are supported on your system, type</p>
52
53 <pre>
54 identify -list format
55 </pre>
56
57 <p>On some platforms, ImageMagick automagically processes these extensions: .gz for Zip compression, .Z for Unix compression, .bz2 for block compression, and .pgp for PGP encryption. For example, a PNM image called image.pnm.gz is automagically uncompressed.</p>
58
59 <h2 class="magick-header"><a id="colorspace"></a>A Word about Colorspaces</h2>
60  <p>A majority of the image formats assume an sRGB
61 colorspace (e.g. JPEG, PNG, etc.).  A few support only linear RGB (e.g. EXR,
62 DPX, CIN, HDR) or only linear GRAY (e.g. PGM).  A few formats support CMYK.
63 Then there is the occasional format that also supports LAB (that is CieLAB)
64 (e.g. TIFF, PSD, JPG, JP2).  To determine the colorspace of your image, use
65 this command:</p>
66
67 <pre>
68 -&gt; identify -verbose image.jpg
69 Image: image.jpg
70 Format: JPEG (Joint Photographic Experts Group JFIF format)
71 ...
72 Colorspace: sRGB
73 </pre>
74
75 OR use the appropriate percent escape
76 <pre>
77 -&gt; convert image.jpg -print "%[colorspace]\n" null:
78 sRGB
79 </pre>
80
81
82 <p>When processing an image, be aware of the colorspace.  Many image
83 processing algorithms assume a linear RGB colorspace.  Although you may get
84 satisfactory results processing in the sRGB colorspace, you may get improved
85 results in linear RGB (essentially sRGB with the gamma function removed).  For
86 example,</p>
87
88 <pre>
89 convert image.jpg -colorspace RGB -resize 50% -colorspace sRGB resize.jpg
90 </pre>
91
92 <p>As of IM 6.7.8-2 one can properly work in LAB colorspace whether or not
93 Imagemagick is <a href="high-dynamic-range.html">HDRI</a>-enabled.  Essentually the A and
94 B channels are stored with a 50% gray bias, to allow it to handle the
95 negatives required by the format.</p>
96
97 <pre>
98 convert lab.tif -resize 50% resize.jpg
99 </pre>
100
101 <p>Again, it may not make sense for some image processing operators to work
102 directly in LAB space, but ImageMagick permits it and generally returns
103 reasonable results.</p>
104
105 <p>Prior to IM 6.7.8-2, the A and B channels has a discontinuity, making them
106 non-linear. As such to process such images, you needed to first convert the
107 colorspace some other linear colorspace, before apply your processing
108 operator. Afterward you can transform back to the LAB colorspace.  For
109 example,</p>
110
111 <pre>
112   convert lab.tif -colorspace RGB -resize 50% -colorspace Lab resize.jpg
113 </pre>
114
115 <h2 class="magick-header"><a id="supported"></a>Supported Image Formats</h2>
116
117 <p>ImageMagick supports reading over 100 major file formats (not
118 including sub-formats). The following table provides a summary of
119 the supported image formats.</p>
120
121 <div class="table-responsive">
122 <table class="table table-condensed table-striped">
123   <tbody>
124   <tr>
125     <th>Tag</th>
126     <th>Mode</th>
127     <th>Description</th>
128     <th>Notes</th>
129   </tr>
130
131   <tr>
132     <td>AAI</td>
133     <td>RW</td>
134     <td>AAI Dune image</td>
135     <td> </td>
136   </tr>
137
138   <tr>
139     <td>ART</td>
140     <td>RW</td>
141     <td>PFS: 1st Publisher</td>
142     <td>Format originally used on the Macintosh (MacPaint?) and later used for PFS: 1st Publisher clip art.</td>
143   </tr>
144
145   <tr>
146     <td>ARW</td>
147     <td>R</td>
148     <td>Sony Digital Camera Alpha Raw Image Format</td>
149     <td> </td>
150   </tr>
151
152   <tr>
153     <td><a href="http://www.jmcgowan.com/avi.html">AVI</a></td>
154     <td>R</td>
155     <td>Microsoft Audio/Visual Interleaved</td>
156     <td> </td>
157   </tr>
158
159   <tr>
160     <td>AVS</td>
161     <td>RW</td>
162     <td>AVS X image</td>
163     <td> </td>
164   </tr>
165
166   <tr>
167     <td><a href="http://bellard.org/bpg/">BPG</a></td>
168     <td>RW</td>
169     <td>Better Portable Graphics</td>
170     <td>Use <a href="command-line-options.html#quality">-quality</a> to specify the image compression quality.  To meet the requirements of BPG, the compression quality is divided by 2 (e.g. -quality 92 assigns 46 as the BPG compression.</td>
171   </tr>
172
173   <tr>
174     <td><a href="http://www.fileformat.info/format/bmp/egff.htm">BMP, BMP2, BMP3</a></td>
175     <td>RW</td>
176     <td>Microsoft Windows bitmap</td>
177     <td>By default the BMP format is version 4.  Use BMP3 and BMP2 to write versions 3 and 2 respectively.</td>
178   </tr>
179
180   <tr>
181     <td><a href="http://www.fileformat.info/format/cals/egff.htm">CALS</a></td>
182     <td>R</td>
183     <td>Continuous Acquisition and Life-cycle Support Type 1 image</td>
184     <td>Specified in MIL-R-28002 and MIL-PRF-28002. Standard blueprint archive format as used by the US military to replace microfiche.</td>
185   </tr>
186
187   <tr>
188     <td><a href="http://www.fileformat.info/format/cgm/egff.htm">CGM</a></td>
189     <td>R</td>
190     <td>Computer Graphics Metafile</td>
191     <td>Requires <a href="http://www.agocg.ac.uk/train/cgm/ralcgm.htm">ralcgm</a> to render CGM files.</td>
192   </tr>
193
194   <tr>
195     <td><a href="http://www.cineon.com/ff_draft.html">CIN</a></td>
196     <td>RW</td>
197     <td>Kodak Cineon Image Format</td>
198     <td>Use <a href="command-line-options.html#set">-set</a> to specify the image gamma or black and white points (e.g. <code>-set gamma 1.7</code>, <code>-set reference-black 95</code>, <code>-set reference-white 685</code>).  Properties include cin:file.create_date, cin:file.create_time, cin:file.filename, cin:file.version, cin:film.count, cin:film.format, cin:film.frame_id, cin:film.frame_position, cin:film.frame_rate, cin:film.id, cin:film.offset, cin:film.prefix, cin:film.slate_info, cin:film.type, cin:image.label, cin:origination.create_date, cin:origination.create_time, cin:origination.device, cin:origination.filename, cin:origination.model, cin:origination.serial, cin:origination.x_offset, cin:origination.x_pitch, cin:origination.y_offset, cin:origination.y_pitch, cin:user.data.</td>
199   </tr>
200
201   <tr>
202     <td>CMYK</td>
203     <td>RW</td>
204     <td>Raw cyan, magenta, yellow, and black samples</td>
205     <td>Use <a href="command-line-options.html#size">-size</a> and <a href="command-line-options.html#depth">-depth</a> to specify the image width, height, and depth.  To specify a single precision floating-point format, use <code>-define quantum:format=floating-point</code>.  Set the depth to 32 for single precision floats, 64 for double precision, and 16 for half-precision.</td>
206   </tr>
207
208   <tr>
209     <td>CMYKA</td>
210     <td>RW</td>
211     <td>Raw cyan, magenta, yellow, black, and alpha samples</td>
212     <td>Use <a href="command-line-options.html#size">-size</a> and <a href="command-line-options.html#depth">-depth</a> to specify the image width, height, and depth.  To specify a single precision floating-point format, use <code>-define quantum:format=floating-point</code>.  Set the depth to 32 for single precision floats, 64 for double precision, and 16 for half-precision.</td>
213   </tr>
214
215   <tr>
216     <td>CR2</td>
217     <td>R</td>
218     <td>Canon Digital Camera Raw Image Format</td>
219     <td>Requires an explicit image format otherwise the image is interpreted as a TIFF image (e.g. cr2:image.cr2).</td>
220   </tr>
221
222   <tr>
223     <td>CRW</td>
224     <td>R</td>
225     <td>Canon Digital Camera Raw Image Format</td>
226     <td> </td>
227   </tr>
228
229   <tr>
230     <td>CUR</td>
231     <td>R</td>
232     <td>Microsoft Cursor Icon</td>
233     <td> </td>
234   </tr>
235
236   <tr>
237     <td>CUT</td>
238     <td>R</td>
239     <td>DR Halo</td>
240     <td> </td>
241   </tr>
242
243   <tr>
244     <td>DCM</td>
245     <td>R</td>
246     <td>Digital Imaging and Communications in Medicine (DICOM) image</td>
247     <td>Used by the medical community for images like X-rays.  ImageMagick sets the initial display range based on the Window Center (0028,1050) and Window Width (0028,1051) tags. Use <a href="command-line-options.html#define">-define dcm:display-range=reset</a> to set the display range to the minimum and maximum pixel values.</td>
248   </tr>
249
250   <tr>
251     <td>DCR</td>
252     <td>R</td>
253     <td>Kodak Digital Camera Raw Image File</td>
254     <td> </td>
255   </tr>
256
257   <tr>
258     <td>DCX</td>
259     <td>RW</td>
260     <td>ZSoft IBM PC multi-page Paintbrush image</td>
261     <td> </td>
262   </tr>
263
264   <tr>
265     <td><a href="http://en.wikipedia.org/wiki/DirectDraw_Surface">DDS</a></td>
266     <td>RW</td>
267     <td>Microsoft Direct Draw Surface</td>
268     <td>Use <a href="command-line-options.html#define">-define</a> to specify the compression (e.g. <code>-define dds:compression={dxt1, dxt5, none}</code>). Other defines include <code>dds:cluster-fit={true,false}</code>, <code>dds:weight-by-alpha={true,false}</code>, and use <code>dds:mipmaps</code> to set the number of mipmaps.</td>
269
270   </tr>
271
272   <tr>
273     <td>DIB</td>
274     <td>RW</td>
275     <td>Microsoft Windows Device Independent Bitmap</td>
276     <td>DIB is a <a href="formats.html#BMP">BMP</a> file without the <a href="formats.html#BMP">BMP</a> header. Used to support embedded images in compound formats like WMF.</td>
277   </tr>
278
279   <tr>
280     <td><a href="http://www.djvu.org/">DJVU</a></td>
281     <td>R</td>
282     <td></td>
283     <td></td>
284   </tr>
285
286   <tr>
287     <td><a href="http://www.adobe.com/products/dng/main.html">DNG</a></td>
288     <td>R</td>
289     <td>Digital Negative</td>
290     <td>Requires an explicit image format otherwise the image is interpreted as a TIFF image (e.g. dng:image.dng).</td>
291   </tr>
292
293   <tr>
294     <td><a href="http://www.graphviz.org">DOT</a></td>
295     <td>R</td>
296     <td>Graph Visualization</td>
297     <td>Use <a href="command-line-options.html#define">-define</a> to specify the layout engine (e.g. <code>-define dot:layout-engine=twopi</code>).</td>
298   </tr>
299
300   <tr>
301     <td><a href="motion-picture.html">DPX</a></td>
302     <td>RW</td>
303     <td>SMPTE Digital Moving Picture Exchange 2.0 (SMPTE 268M-2003)</td>
304     <td>Use <a href="command-line-options.html#set">-set</a> to specify the image gamma or black and white points (e.g. <code>-set gamma 1.7</code>, <code>-set reference-black 95</code>, <code>-set reference-white 685</code>).</td>
305   </tr>
306
307   <tr>
308     <td>EMF</td>
309     <td>R</td>
310     <td>Microsoft Enhanced Metafile (32-bit)</td>
311     <td>Only available under Microsoft Windows.</td>
312   </tr>
313
314   <tr>
315     <td>EPDF</td>
316     <td>RW</td>
317     <td>Encapsulated Portable Document Format</td>
318     <td></td>
319   </tr>
320
321   <tr>
322     <td>EPI</td>
323     <td>RW</td>
324     <td>Adobe Encapsulated PostScript Interchange format</td>
325     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
326   </tr>
327
328   <tr>
329     <td>EPS</td>
330     <td>RW</td>
331     <td>Adobe Encapsulated PostScript</td>
332     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
333   </tr>
334
335   <tr>
336     <td>EPS2</td>
337     <td>W</td>
338     <td>Adobe Level II Encapsulated PostScript</td>
339     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
340   </tr>
341
342   <tr>
343     <td>EPS3</td>
344     <td>W</td>
345     <td>Adobe Level III Encapsulated PostScript</td>
346     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
347   </tr>
348
349   <tr>
350     <td>EPSF</td>
351     <td>RW</td>
352     <td>Adobe Encapsulated PostScript</td>
353     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
354   </tr>
355
356   <tr>
357     <td>EPSI</td>
358     <td>RW</td>
359     <td>Adobe Encapsulated PostScript Interchange format</td>
360     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
361   </tr>
362
363   <tr>
364     <td>EPT</td>
365     <td>RW</td>
366     <td>Adobe Encapsulated PostScript Interchange format with <a href="formats.html#TIFF">TIFF</a> preview</td>
367     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
368   </tr>
369
370   <tr>
371     <td><a href="http://www.openexr.org">EXR</a></td>
372     <td>RW</td>
373     <td>High dynamic-range (HDR) file format developed by Industrial Light &amp; Magic</td>
374     <td>See <a href="high-dynamic-range.html">High Dynamic-Range Images</a> for details on this image format. To specify the output color type, use <code>-define exr:color-type={RGB,RGBA,YC,YCA,Y,YA,R,G,B,A}</code>. Use <a href="command-line-options.html#sampling-factor">-sampling-factor</a> to specify the sampling rate for YC(A) (e.g. <code>2x2 or 4:2:0</code>). Requires the <a href="http://www.openexr.org/">OpenEXR</a> delegate library.</td>
375   </tr>
376
377   <tr>
378     <td>FAX</td>
379     <td>RW</td>
380     <td>Group 3 TIFF</td>
381     <td>This format is a fixed width of 1728 as required by the standard.  See <a href="formats.html#TIFF">TIFF</a> format. Note that FAX machines use non-square pixels which are 1.5 times wider than they are tall but computer displays use square pixels so FAX images may appear to be narrow unless they are explicitly resized using a resize specification of <code>100x150%</code>.</td>
382   </tr>
383
384   <tr>
385     <td><a href="http://homepage.usask.ca/~ijm451/fig/">FIG</a></td>
386     <td>R</td>
387     <td>FIG graphics format</td>
388     <td>Requires <a href="ftp://ftp.x.org/contrib/applications/drawing_tools/transfig">TransFig</a>.</td>
389   </tr>
390
391   <tr>
392     <td><a href="http://www.cv.nrao.edu/fits/">FITS</a></td>
393     <td>RW</td>
394     <td>Flexible Image Transport System</td>
395     <td>To specify a single-precision floating-point format, use <code>-define quantum:format=floating-point</code>.  Set the depth to 64 for a double-precision floating-point format.</td>
396   </tr>
397
398   <tr>
399     <td>FPX</td>
400     <td>RW</td>
401     <td>FlashPix Format</td>
402     <td>FlashPix has the option to store mega- and giga-pixel images at various resolutions in a single file which permits conservative bandwidth and fast reveal times when displayed within a Web browser.  Requires the <a href="http://www.imagemagick.org/download/delegates">FlashPix SDK</a>.</td>
403   </tr>
404
405   <tr>
406     <td><a href="http://www.fileformat.info/format/gif/egff.htm">GIF</a></td>
407     <td>RW</td>
408     <td>CompuServe Graphics Interchange Format</td>
409     <td>8-bit RGB PseudoColor with up to 256 palette entires. Specify the format <code>GIF87</code> to write the older version 87a of the format.  Use <a href="command-line-options.html#transparent-color">-transparent-color</a> to specify the GIF transparent color (e.g. <code>-transparent-color wheat</code>).</td>
410   </tr>
411
412   <tr>
413     <td>GPLT</td>
414     <td>R</td>
415     <td>Gnuplot plot files</td>
416     <td>Requires <a href="http://www.gnuplot.info/">gnuplot4.0.tar.Z</a> or later.</td>
417   </tr>
418
419   <tr>
420     <td>GRAY</td>
421     <td>RW</td>
422     <td>Raw gray samples</td>
423     <td>Use <a href="command-line-options.html#size">-size</a> and <a href="command-line-options.html#depth">-depth</a> to specify the image width, height, and depth.  To specify a single precision floating-point format, use <code>-define quantum:format=floating-point</code>.  Set the depth to 32 for single precision floats, 64 for double precision, and 16 for half-precision.</td>
424   </tr>
425
426   <tr>
427     <td><a href="http://en.wikipedia.org/wiki/RGBE_image_format">HDR</a></td>
428     <td>RW</td>
429     <td>Radiance RGBE image format</td>
430     <td> </td>
431   </tr>
432
433   <tr>
434     <td>HPGL</td>
435     <td>R</td>
436     <td>HP-GL plotter language</td>
437     <td>Requires <a href="http://ftp.gnu.org/gnu/hp2xx">hp2xx-3.4.4.tar.gz</a></td>
438   </tr>
439
440   <tr>
441     <td>HRZ</td>
442     <td>RW</td>
443     <td>Slow Scane TeleVision</td>
444     <td> </td>
445   </tr>
446
447   <tr>
448     <td>HTML</td>
449     <td>RW</td>
450     <td>Hypertext Markup Language with a client-side image map</td>
451     <td>Also known as <code>HTM</code>. Requires <a href="http://user.it.uu.se/%7Ejan/html2ps.html">html2ps</a> to read.</td>
452   </tr>
453
454   <tr>
455     <td>ICO</td>
456     <td>R</td>
457     <td>Microsoft icon</td>
458     <td>Also known as <code>ICON</code>.</td>
459   </tr>
460
461   <tr>
462     <td>INFO</td>
463     <td>W</td>
464     <td>Format and characteristics of the image</td>
465     <td></td>
466   </tr>
467
468   <tr>
469     <td>INLINE</td>
470     <td>RW</td>
471     <td>Base64-encoded inline image</td>
472     <td>The inline image look similar to <code>inline:data:;base64,/9j/4AAQSk...knrn//2Q==</code>.  If the inline image exceeds 5000 characters, reference it from a file (e.g. <code>inline:inline.txt</code>). You can also write a base64-encoded image.  Embed the mime type in the filename, for example, <code>convert myimage inline:jpeg:myimage.txt</code>.</td>
473   </tr>
474
475   <tr>
476     <td>JBIG</td>
477     <td>RW</td>
478     <td>Joint Bi-level Image experts Group file interchange format</td>
479     <td>Also known as <code>BIE</code> and <code>JBG</code>. Requires <a href="http://www.cl.cam.ac.uk/~mgk25/jbigkit/">jbigkit-1.6.tar.gz</a>.</td>
480   </tr>
481
482   <tr>
483     <td><a href="http://www.libmng.com/">JNG</a></td>
484     <td>RW</td>
485     <td>Multiple-image Network Graphics</td>
486     <td>JPEG in a PNG-style wrapper with transparency. Requires libjpeg and libpng-1.0.11 or later, <a href="http://www.libpng.org/pub/png/libpng.html">libpng-1.2.5</a> or later recommended.</td>
487   </tr>
488
489   <tr>
490     <td><a href="http://www.openjpeg.org/">JP2</a></td>
491     <td>RW</td>
492     <td>JPEG-2000 JP2 File Format Syntax</td>
493     <td>Specify the encoding options with the <a href="command-line-options.html#define">-define</a> option  See <a href="jp2.html">JP2 Encoding Options</a> for more details.</td>
494   </tr>
495
496   <tr>
497     <td><a href="http://www.openjpeg.org/">JPT</a></td>
498     <td>RW</td>
499     <td>JPEG-2000 Code Stream Syntax</td>
500     <td>Specify the encoding options with the <a href="command-line-options.html#define">-define</a> option  See <a href="jp2.html">JP2 Encoding Options</a> for more details.</td>
501   </tr>
502
503   <tr>
504     <td><a href="http://www.openjpeg.org/">J2C</a></td>
505     <td>RW</td>
506     <td>JPEG-2000 Code Stream Syntax</td>
507     <td>Specify the encoding options with the <a href="command-line-options.html#define">-define</a> option  See <a href="jp2.html">JP2 Encoding Options</a> for more details.</td>
508   </tr>
509
510   <tr>
511     <td><a href="http://www.openjpeg.org/">J2K</a></td>
512     <td>RW</td>
513     <td>JPEG-2000 Code Stream Syntax</td>
514     <td>Specify the encoding options with the <a href="command-line-options.html#define">-define</a> option  See <a href="jp2.html">JP2 Encoding Options</a> for more details.</td>
515   </tr>
516
517   <tr>
518     <td><a href="http://www.jpeg.org/">JPEG</a></td>
519     <td>RW</td>
520     <td>Joint Photographic Experts Group JFIF format</td>
521     <td>Note, JPEG is a lossy compression.  In addition, you cannot create black and white images with JPEG nor can you save transparency.<br><br> Requires <a href="http://www.ijg.org/files/">jpegsrc.v8c.tar.gz</a>.  You can set quality scaling for luminance and chrominance separately (e.g. <a href="command-line-options.html#quality">-quality</a> 90,70). You can optionally define the DCT method, for example to specify the float method, use <a href="command-line-options.html#define">-define jpeg:dct-method=float</a>. By default we compute optimal Huffman coding tables.  Specify <a href="command-line-options.html#define">-define jpeg:optimize-coding=false</a> to use the default Huffman tables. Two other options include <a href="command-line-options.html#define">-define jpeg:block-smoothing</a> and <a href="command-line-options.html#define">-define jpeg:fancy-upsampling</a>. Set the sampling factor with <a href="command-line-options.html#define">-define jpeg:sampling-factor</a>. You can size the image with <code>jpeg:size</code>, for example <a href="command-line-options.html#define">-define jpeg:size=128x128</a>. To restrict the maximum file size, use <code>jpeg:extent</code>, for example <a href="command-line-options.html#define">-define jpeg:extent=400KB</a>.  To define one or more custom quantization tables, use <a href="command-line-options.html#define">-define jpeg:q-table=<i>filename</i></a>. To avoid reading a particular associated image profile, use <a href="command-line-options.html#define">-define profile:skip=<i>name</i></a> (e.g. profile:skip=ICC).</td>
522   </tr>
523
524   <tr>
525     <td><a href="https://en.wikipedia.org/wiki/JPEG_XR">JXR</a></td>
526     <td>RW</td>
527     <td>JPEG extended range</td>
528     <td>Requires the <a href="https://jxrlib.codeplex.com/">jxrlib</a> delegate library. Put the JxrDecApp and JxrEncApp applications in your execution path. </td>
529   </tr>
530
531   <tr>
532     <td><a href="http://www.json.org">JSON</a></td>
533     <td>W</td>
534     <td>JavaScript Object Notation, a lightweight data-interchange format</td>
535     <td>Include additional attributes about the image with these defines: <a href="command-line-options.html#define">-define json:locate</a>, <a href="command-line-options.html#define">-define json:limit</a>, <a href="command-line-options.html#define">-define json:moments</a>, or <a href="command-line-options.html#define">-define json:features</a>.</td>
536   </tr>
537
538   <tr>
539     <td>MAN</td>
540     <td>R</td>
541     <td>Unix reference manual pages</td>
542     <td>Requires that GNU groff and Ghostcript are installed.</td>
543   </tr>
544
545   <tr>
546     <td>MAT</td>
547     <td>R</td>
548     <td>MATLAB image format</td>
549     <td> </td>
550   </tr>
551
552   <tr>
553     <td><a href="miff.html">MIFF</a></td>
554     <td>RW</td>
555     <td>Magick image file format</td>
556     <td>This format persists all image attributes known to ImageMagick.  To specify a single precision floating-point format, use <code>-define quantum:format=floating-point</code>.  Set the depth to 32 for single precision floats, 64 for double precision, and 16 for half-precision.</td>
557   </tr>
558
559   <tr>
560     <td>MONO</td>
561     <td>RW</td>
562     <td>Bi-level bitmap in least-significant-byte first order</td>
563     <td> </td>
564   </tr>
565
566   <tr>
567     <td><a href="http://www.libpng.org/pub/mng/">MNG</a></td>
568     <td>RW</td>
569     <td>Multiple-image Network Graphics</td>
570     <td>A PNG-like Image Format Supporting Multiple Images, Animation and Transparent JPEG. Requires libpng-1.0.11 or later, <a href="http://www.libpng.org/pub/png/libpng.html">libpng-1.2.5</a> or later recommended. An interframe delay of 0 generates one frame with each additional layer composited on top.  For motion, be sure to specify a non-zero delay.</td>
571   </tr>
572
573   <tr>
574     <td><a href="http://www.ffmpeg.org/">M2V</a></td>
575     <td>RW</td>
576     <td>Motion Picture Experts Group file interchange format (version 2)</td>
577     <td>Requires <a href="http://www.ffmpeg.org/download.html">ffmpeg</a>.</td>
578   </tr>
579
580   <tr>
581     <td><a href="http://www.ffmpeg.org/">MPEG</a></td>
582     <td>RW</td>
583     <td>Motion Picture Experts Group file interchange format (version 1)</td>
584     <td>Requires <a href="http://www.ffmpeg.org/download.html">ffmpeg</a>.</td>
585   </tr>
586
587   <tr>
588     <td>MPC</td>
589     <td>RW</td>
590     <td>Magick Persistent Cache image file format</td>
591     <td>The most efficient data processing pattern is a write-once, read-many-times pattern. The image is generated or copied from source, then various analyses are performed on the image pixels over time.  MPC supports this pattern. MPC is the native <var>in-memory</var> ImageMagick uncompressed file format. This file format is identical to that used by ImageMagick to represent images in memory and is read by mapping the file directly into memory. The MPC format is not portable and is not suitable as an archive format. It is suitable as an intermediate format for high-performance image processing.  The MPC format requires two files to support one image. Image attributes are written to a file with the extension <code>.mpc</code>, whereas, image pixels are written to a file with the extension <code>.cache</code>.</td>
592   </tr>
593
594   <tr>
595     <td>MPR</td>
596     <td>RW</td>
597     <td>Magick Persistent Registry</td>
598     <td>This format permits you to write to and read images from memory.  The image persists until the program exits.  For example, let's use the MPR to create a checkerboard:
599 <pre>
600 convert \( -size 15x15 canvas:black canvas:white -append \) \
601   \( +clone -flip \) +append -write mpr:checkers +delete \
602   -size 240x240 tile:mpr:checkers board.png
603 </pre></td>
604   </tr>
605
606   <tr>
607     <td>MRW</td>
608     <td>R</td>
609     <td>Sony (Minolta) Raw Image File</td>
610     <td> </td>
611   </tr>
612
613   <tr>
614     <td>MSL</td>
615     <td>RW</td>
616     <td>Magick Scripting Language</td>
617     <td>MSL is the XML-based scripting language supported by the <a href="conjure.html">conjure</a> utility. MSL requires the <a href="http://xmlsoft.org/">libxml2</a> delegate library.</td>
618   </tr>
619
620   <tr>
621     <td><a href="http://www.fileformat.info/format/mtv/egff.htm">MTV</a></td>
622     <td>RW</td>
623     <td>MTV Raytracing image format</td>
624     <td> </td>
625   </tr>
626
627   <tr>
628     <td><a href="magick-vector-graphics.html">MVG</a></td>
629     <td>RW</td>
630     <td>Magick Vector Graphics.</td>
631     <td>The native ImageMagick vector metafile format. A text file containing vector drawing commands accepted by <a href="convert.html">convert</a>'s <a href="command-line-options.html#draw">-draw</a> option.</td>
632   </tr>
633
634   <tr>
635     <td>NEF</td>
636     <td>R</td>
637     <td>Nikon Digital SLR Camera Raw Image File</td>
638     <td> </td>
639   </tr>
640
641   <tr>
642     <td>ORF</td>
643     <td>R</td>
644     <td>Olympus Digital Camera Raw Image File</td>
645     <td> </td>
646   </tr>
647
648   <tr>
649     <td>OTB</td>
650     <td>RW</td>
651     <td>On-the-air Bitmap</td>
652     <td> </td>
653   </tr>
654
655   <tr>
656     <td>P7</td>
657     <td>RW</td>
658     <td>Xv's Visual Schnauzer thumbnail format</td>
659     <td> </td>
660   </tr>
661
662   <tr>
663     <td>PALM</td>
664     <td>RW</td>
665     <td>Palm pixmap</td>
666     <td> </td>
667   </tr>
668
669   <tr>
670     <td><a href="http://netpbm.sourceforge.net/doc/pam.html">PAM</a></td>
671     <td>W</td>
672     <td>Common 2-dimensional bitmap format</td>
673     <td> </td>
674   </tr>
675
676   <tr>
677     <td>CLIPBOARD</td>
678     <td>RW</td>
679     <td>Windows Clipboard</td>
680     <td>Only available under Microsoft Windows.</td>
681   </tr>
682   <tr>
683     <td><a href="http://netpbm.sourceforge.net/doc/pbm.html">PBM</a></td>
684     <td>RW</td>
685     <td>Portable bitmap format (black and white)</td>
686     <td> </td>
687   </tr>
688
689   <tr>
690     <td>PCD</td>
691     <td>RW</td>
692     <td>Photo CD</td>
693     <td>The maximum resolution written is 768x512 pixels since larger images require huffman compression (which is not supported).</td>
694   </tr>
695
696   <tr>
697     <td>PCDS</td>
698     <td>RW</td>
699     <td>Photo CD</td>
700     <td>Decode with the sRGB color tables.</td>
701   </tr>
702
703   <tr>
704     <td>PCL</td>
705     <td>W</td>
706     <td>HP Page Control Language</td>
707     <td>Use <a href="command-line-options.html#define">-define</a> to specify fit to page option (e.g. <code>-define pcl:fit-to-page=true</code>).</td>
708   </tr>
709
710   <tr>
711     <td><a href="http://www.fileformat.info/format/pcx/egff.htm">PCX</a></td>
712     <td>RW</td>
713     <td>ZSoft IBM PC Paintbrush file</td>
714     <td> </td>
715   </tr>
716
717   <tr>
718     <td>PDB</td>
719     <td>RW</td>
720     <td>Palm Database ImageViewer Format</td>
721     <td> </td>
722   </tr>
723
724   <tr>
725     <td>PDF</td>
726     <td>RW</td>
727     <td>Portable Document Format</td>
728     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.  By default, ImageMagick sets the page size to the MediaBox. Some PDF files, however, have a CropBox or TrimBox that is smaller than the MediaBox and may include white space, registration or cutting marks outside the CropBox or TrimBox. To force ImageMagick to use the CropBox or TrimBox rather than the MediaBox, use <a href="command-line-options.html#define">-define</a> (e.g. <code>-define pdf:use-cropbox=true</code> or <code>-define pdf:use-trimbox=true</code>).  Use <a href="command-line-options.html#density">-density</a> to improve the appearance of your PDF rendering (e.g. -density 300x300).  Use <a href="command-line-options.html#alpha">-alpha remove </a> to remove transparency. To specify direct conversion from  Postscript to PDF, use <code>-define delegate:bimodel=true</code>. Use <code>-define pdf:fit-page=true</code> to scale to the page size. To immediately stop processing upon an error, set <code>-define pdf:stop-on-error</code> to <code>true</code>.</td>
729   </tr>
730
731   <tr>
732     <td>PEF</td>
733     <td>R</td>
734     <td>Pentax Electronic File</td>
735     <td>Requires an explicit image format otherwise the image is interpreted as a TIFF image (e.g. pef:image.pef).</td>
736   </tr>
737
738   <tr>
739     <td>PFA</td>
740     <td>R</td>
741     <td>Postscript Type 1 font (ASCII)</td>
742     <td>Opening as file returns a preview image.</td>
743   </tr>
744
745   <tr>
746     <td>PFB</td>
747     <td>R</td>
748     <td>Postscript Type 1 font (binary)</td>
749     <td>Opening as file returns a preview image.</td>
750   </tr>
751
752   <tr>
753     <td><a href="http://netpbm.sourceforge.net/doc/pfm.html">PFM</a></td>
754     <td>RW</td>
755     <td>Portable float map format</td>
756     <td> </td>
757   </tr>
758
759   <tr>
760     <td><a href="http://netpbm.sourceforge.net/doc/pgm.html">PGM</a></td>
761     <td>RW</td>
762     <td>Portable graymap format (gray scale)</td>
763     <td> </td>
764   </tr>
765
766   <tr>
767     <td>PICON</td>
768     <td>RW</td>
769     <td>Personal Icon</td>
770     <td> </td>
771   </tr>
772
773   <tr>
774     <td>PICT</td>
775     <td>RW</td>
776     <td>Apple Macintosh QuickDraw/PICT file</td>
777     <td> </td>
778   </tr>
779
780   <tr>
781     <td>PIX</td>
782     <td>R</td>
783     <td>Alias/Wavefront RLE image format</td>
784     <td> </td>
785   </tr>
786
787   <tr>
788     <td><a href="http://www.libpng.org/pub/png/">PNG</a></td>
789     <td>RW</td>
790     <td>Portable Network Graphics</td>
791     <td>Requires libpng-1.0.11 or later, <a href="http://www.libpng.org/pub/png/libpng.html">libpng-1.2.5</a> or later recommended. The PNG specification does not support pixels-per-inch units, only pixels-per-centimeter. To avoid reading a particular associated image profile, use <a href="command-line-options.html#define">-define profile:skip=<i>name</i></a> (e.g. profile:skip=ICC).</td>
792   </tr>
793
794   <tr>
795     <td><a href="http://www.libpng.org/pub/png/">PNG8</a></td>
796     <td>RW</td>
797     <td>Portable Network Graphics</td>
798     <td>8-bit indexed with optional binary transparency</td>
799   </tr>
800
801   <tr>
802     <td><a href="http://www.libpng.org/pub/png/">PNG00</a></td>
803     <td>RW</td>
804     <td>Portable Network Graphics</td>
805     <td>PNG inheriting subformat from original if possible</td>
806   </tr>
807
808   <tr>
809     <td><a href="http://www.libpng.org/pub/png/">PNG24</a></td>
810     <td>RW</td>
811     <td>Portable Network Graphics</td>
812     <td>opaque or binary transparent 24-bit RGB</td>
813   </tr>
814
815   <tr>
816     <td><a href="http://www.libpng.org/pub/png/">PNG32</a></td>
817     <td>RW</td>
818     <td>Portable Network Graphics</td>
819     <td>opaque or transparent 32-bit RGBA</td>
820   </tr>
821
822   <tr>
823     <td><a href="http://www.libpng.org/pub/png/">PNG48</a></td>
824     <td>RW</td>
825     <td>Portable Network Graphics</td>
826     <td>opaque or binary transparent 48-bit RGB</td>
827   </tr>
828
829   <tr>
830     <td><a href="http://www.libpng.org/pub/png/">PNG64</a></td>
831     <td>RW</td>
832     <td>Portable Network Graphics</td>
833     <td>opaque or transparent 64-bit RGB</td>
834   </tr>
835
836   <tr>
837     <td><a href="http://netpbm.sourceforge.net/doc/pnm.html">PNM</a></td>
838     <td>RW</td>
839     <td>Portable anymap</td>
840     <td>PNM is a family of formats supporting portable bitmaps (PBM) , graymaps (PGM), and pixmaps (PPM). There is no file format associated with pnm itself. If PNM is used as the output format specifier, then ImageMagick automagically selects the most appropriate format to represent the image.  The default is to write the binary version of the formats. Use <a href="command-line-options.html#compress">-compress none</a> to write the ASCII version of the formats.</td>
841   </tr>
842
843   <tr>
844     <td><a href="http://netpbm.sourceforge.net/doc/ppm.html">PPM</a></td>
845     <td>RW</td>
846     <td>Portable pixmap format (color)</td>
847     <td> </td>
848   </tr>
849
850   <tr>
851     <td>PS</td>
852     <td>RW</td>
853     <td>Adobe PostScript file</td>
854     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read. To force ImageMagick to respect the crop box, use <a href="command-line-options.html#define">-define</a> (e.g. <code>-define eps:use-cropbox=true</code>). Use <a href="command-line-options.html#density">-density</a> to improve the appearance of your Postscript rendering (e.g. -density 300x300). Use <a href="command-line-options.html#alpha">-alpha remove </a> to remove transparency. To specify direct conversion from PDF to Postscript, use <code>-define delegate:bimodel=true</code>.</td>
855   </tr>
856
857   <tr>
858     <td>PS2</td>
859     <td>RW</td>
860     <td>Adobe Level II PostScript file</td>
861     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
862   </tr>
863
864   <tr>
865     <td>PS3</td>
866     <td>RW</td>
867     <td>Adobe Level III PostScript file</td>
868     <td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
869   </tr>
870
871   <tr>
872     <td><a href="http://www.adobe.com/devnet-apps/photoshop/fileformatashtml/">PSB</a></td>
873     <td>RW</td>
874     <td>Adobe Large Document Format</td>
875     <td> </td>
876   </tr>
877
878   <tr>
879     <td><a href="http://www.adobe.com/devnet-apps/photoshop/fileformatashtml/">PSD</a></td>
880     <td>RW</td>
881     <td>Adobe Photoshop bitmap file</td>
882     <td> </td>
883   </tr>
884
885   <tr>
886     <td>PTIF</td>
887     <td>RW</td>
888     <td>Pyramid encoded <a href="formats.html#TIFF">TIFF</a></td>
889     <td>Multi-resolution <a href="formats.html#TIFF">TIFF</a> containing successively smaller versions of the image down to the size of an icon.</td>
890   </tr>
891
892   <tr>
893     <td><a href="http://www.photoworks.com/">PWP</a></td>
894     <td>R</td>
895     <td>Seattle File Works multi-image file</td>
896     <td> </td>
897   </tr>
898
899   <tr>
900     <td>RAD</td>
901     <td>R</td>
902     <td>Radiance image file</td>
903     <td>Requires that <i>ra_ppm</i> from the Radiance software package be installed.</td>
904   </tr>
905
906   <tr>
907     <td>RAF</td>
908     <td>R</td>
909     <td>Fuji CCD-RAW Graphic File</td>
910     <td> </td>
911   </tr>
912
913   <tr>
914     <td>RGB</td>
915     <td>RW</td>
916     <td>Raw red, green, and blue samples</td>
917     <td>Use <a href="command-line-options.html#size">-size</a> and <a href="command-line-options.html#depth">-depth</a> to specify the image width, height, and depth.  To specify a single precision floating-point format, use <code>-define quantum:format=floating-point</code>.  Set the depth to 32 for single precision floats, 64 for double precision, and 16 for half-precision.</td>
918   </tr>
919
920   <tr>
921     <td>RGBA</td>
922     <td>RW</td>
923     <td>Raw red, green, blue, and alpha samples</td>
924     <td>Use <a href="command-line-options.html#size">-size</a> and <a href="command-line-options.html#depth">-depth</a> to specify the image width, height, and depth.  To specify a single precision floating-point format, use <code>-define quantum:format=floating-point</code>.  Set the depth to 32 for single precision floats, 64 for double precision, and 16 for half-precision.</td>
925   </tr>
926
927   <tr>
928     <td>RFG</td>
929     <td>RW</td>
930     <td>LEGO Mindstorms EV3 Robot Graphics File</td>
931     <td> </td>
932   </tr>
933
934   <tr>
935     <td>RLA</td>
936     <td>R</td>
937     <td>Alias/Wavefront image file</td>
938     <td> </td>
939   </tr>
940
941   <tr>
942     <td>RLE</td>
943     <td>R</td>
944     <td>Utah Run length encoded image file</td>
945     <td> </td>
946   </tr>
947
948   <tr>
949     <td><a href="http://www.oreilly.com/www/centers/gff/formats/scitex/">SCT</a></td>
950     <td>R</td>
951     <td>Scitex Continuous Tone Picture</td>
952     <td> </td>
953   </tr>
954
955   <tr>
956     <td><a href="http://www.photoworks.com/">SFW</a></td>
957     <td>R</td>
958     <td>Seattle File Works image</td>
959     <td> </td>
960   </tr>
961
962   <tr>
963     <td>SGI</td>
964     <td>RW</td>
965     <td>Irix RGB image</td>
966     <td> </td>
967   </tr>
968
969   <tr>
970     <td>SHTML</td>
971     <td>W</td>
972     <td>Hypertext Markup Language client-side image map</td>
973     <td>Used to write HTML clickable image maps based on a the output of <a href="montage.html">montage</a> or a format which supports tiled images such as <a href="formats.html#MIFF">MIFF</a>.</td>
974   </tr>
975
976   <tr>
977     <td>SID, MrSID</td>
978     <td>R</td>
979     <td>Multiresolution seamless image</td>
980     <td>Requires the <a href="http://www.lizardtech.com/downloads/downloads.html?dl=/download/files/lin/geoexpress_commandlineutils_linux.tgz">mrsidgeodecode</a> command line utility that decompresses MG2 or MG3 SID image files.</td>
981   </tr>
982
983   <tr>
984     <td>SPARSE-COLOR</td>
985     <td>W</td>
986     <td>Raw text file</td>
987     <td>Format compatible with the <a href="command-line-options.html#sparse-color">-sparse-color</a> option. Lists only non-fully-transparent pixels.</td>
988   </tr>
989
990   <tr>
991     <td>SUN</td>
992     <td>RW</td>
993     <td>SUN Rasterfile</td>
994     <td> </td>
995   </tr>
996
997   <tr>
998     <td><a href="http://www.w3.org/Graphics/SVG">SVG</a></td>
999     <td>RW</td>
1000     <td>Scalable Vector Graphics</td>
1001     <td>ImageMagick utilizes <a href="http://www.inkscape.org/">inkscape</a> if its in your execution path otherwise <a href="http://developer.gnome.org/rsvg/">RSVG</a>. If neither are available, ImageMagick reverts to its internal SVG renderer. The default resolution is 90dpi.</td>
1002   </tr>
1003
1004   <tr>
1005     <td>TGA</td>
1006     <td>RW</td>
1007     <td>Truevision Targa image</td>
1008     <td>Also known as formats <code>ICB</code>, <code>VDA</code>, and <code>VST</code>.</td>
1009   </tr>
1010
1011   <tr>
1012     <td><a href="http://www.libtiff.org/">TIFF</a></td>
1013     <td>RW</td>
1014     <td>Tagged Image File Format</td>
1015     <td>Also known as <code>TIF</code>. Requires <a href="http://www.libtiff.org/">tiff-v3.6.1.tar.gz</a> or later.  Use <a href="command-line-options.html#define">-define</a> to specify the rows per strip (e.g. <code>-define tiff:rows-per-strip=8</code>).  To define the tile geometry, use for example, <code>-define tiff:tile-geometry=128x128</code>. To specify a <var>signed</var> format, use  <code>-define quantum:format=signed</code>. To specify a single-precision floating-point format, use <code>-define quantum:format=floating-point</code>.  Set the depth to 64 for a double-precision floating-point format.  Use <code>-define quantum:polarity=min-is-black</code> or <code>-define quantum:polarity=min-is-white</code> toggle the photometric interpretation for a bilevel image.  Specify the extra samples as associated or unassociated alpha with, for example, <code>-define tiff:alpha=unassociated</code>.  Set the fill order with <code>-define tiff:fill-order=msb|lsb</code>. Set the TIFF endianess with <code>-define tiff:endian=msb|lsb</code>. Use <code>-define tiff:exif-properties=false</code> to skip reading the EXIF properties.  You can set a number of TIFF software attributes including document name, host computer, artist, timestamp, make, model, software, and copyright.  For example, <a href="command-line-options.html#set">-set tiff:software "My Company"</a>. If you want to ignore certain TIFF tags, use this option: <code>-define tiff:ignore-tags=comma-separated-list-of-tag-IDs</code>. Since version 6.9.1-4 there is support for reading photoshop layers in TIFF files, this can be disabled with <code>-define tiff:ignore-layers=true</code></td>
1016   </tr>
1017
1018   <tr>
1019     <td>TIM</td>
1020     <td>R</td>
1021     <td>PSX TIM file</td>
1022     <td> </td>
1023   </tr>
1024
1025   <tr>
1026     <td><a href="http://www.freetype.org/">TTF</a></td>
1027     <td>R</td>
1028     <td>TrueType font file</td>
1029     <td>Requires <a href="http://www.freetype.org/">freetype 2</a>. Opening as file returns a preview image. Use <a href="command-line-options.html#set">-set</a> if you do not want to hint glyph outlines after their scaling to device pixels (e.g. <code>-set type:hinting off</code>).</td>
1030   </tr>
1031
1032   <tr>
1033     <td>TXT</td>
1034     <td>RW</td>
1035     <td>Raw text file</td>
1036     <td>Use <a href="command-line-options.html#define">-define</a> to specify the color compliance (e.g. <code>-define txt:compliance=css</code>).</td>
1037   </tr>
1038
1039   <tr>
1040     <td>UIL</td>
1041     <td>W</td>
1042     <td>X-Motif UIL table</td>
1043     <td> </td>
1044   </tr>
1045
1046   <tr>
1047     <td>UYVY</td>
1048     <td>RW</td>
1049     <td>Interleaved YUV raw image</td>
1050     <td>Use <a href="command-line-options.html#size">-size</a> and <a href="command-line-options.html#depth">-depth</a> command line options to specify width and height.  Use <a href="command-line-options.html#sampling-factor">-sampling-factor</a> to set the desired subsampling (e.g. -sampling-factor 4:2:2).</td>
1051   </tr>
1052
1053   <tr>
1054     <td>VICAR</td>
1055     <td>RW</td>
1056     <td>VICAR rasterfile format</td>
1057     <td> </td>
1058   </tr>
1059
1060   <tr>
1061     <td><a href="http://www.fileformat.info/format/viff/egff.htm">VIFF</a></td>
1062     <td>RW</td>
1063     <td>Khoros Visualization Image File Format</td>
1064     <td> </td>
1065   </tr>
1066
1067   <tr>
1068     <td><a href="http://www.openmobilealliance.org/Technical/wapindex.aspx">WBMP</a></td>
1069     <td>RW</td>
1070     <td>Wireless bitmap</td>
1071     <td>Support for uncompressed monochrome only.</td>
1072   </tr>
1073
1074   <tr>
1075     <td><a href="https://en.wikipedia.org/wiki/JPEG_XR">WDP</a></td>
1076     <td>RW</td>
1077     <td>JPEG extended range</td>
1078     <td>Requires the <a href="https://jxrlib.codeplex.com/">jxrlib</a> delegate library. Put the JxrDecApp and JxrEncApp applications in your execution path. </td>
1079   </tr>
1080
1081   <tr>
1082     <td><a href="http://en.wikipedia.org/wiki/WebP">WEBP</a></td>
1083     <td>RW</td>
1084     <td>Weppy image format</td>
1085     <td>Requires the <a href="https://developers.google.com/speed/webp/download">WEBP</a> delegate library.  Specify the encoding options with the <a href="command-line-options.html#define">-define</a> option  See <a href="webp.html">WebP Encoding Options</a> for more details.</td>
1086   </tr>
1087
1088   <tr>
1089     <td><a href="http://www.fileformat.info/format/wmf/egff.htm">WMF</a></td>
1090     <td>R</td>
1091     <td>Windows Metafile</td>
1092     <td>Requires <a href="http://sourceforge.net/projects/wvware/">libwmf</a>. By default, renders WMF files using the dimensions specified by the metafile header. Use the -density option to adjust the output resolution, and thereby adjust the output size. The default output resolution is 72DPI so <code>-density 144</code> results in an image twice as large as the default. Use <code>-background color</code> to specify the WMF background color (default white) or <code>-texture filename</code> to specify a background texture image.</td>
1093   </tr>
1094
1095   <tr>
1096     <td><a href="http://www.fileformat.info/format/wpg/egff.htm">WPG</a></td>
1097     <td>R</td>
1098     <td>Word Perfect Graphics File</td>
1099     <td> </td>
1100   </tr>
1101
1102   <tr>
1103     <td>X</td>
1104     <td>RW</td>
1105     <td>display or import an image to or from an X11 server</td>
1106     <td>Use <a href="command-line-options.html#define">-define</a> to obtain the image from the root window (e.g. <code>-define x:screen=true</code>).  Set <code>x:silent=true</code> to turn off the beep when importing an image.</td>
1107   </tr>
1108
1109   <tr>
1110     <td><a href="http://www.fileformat.info/format/xbm/egff.htm">XBM</a></td>
1111     <td>RW</td>
1112     <td>X Windows system bitmap, black and white only</td>
1113     <td>Used by the X Windows System to store monochrome icons.</td>
1114   </tr>
1115
1116   <tr>
1117     <td>XCF</td>
1118     <td>R</td>
1119     <td>GIMP image</td>
1120     <td> </td>
1121   </tr>
1122
1123   <tr>
1124     <td><a href="http://www.fileformat.info/format/xpm/egff.htm">XPM</a></td>
1125     <td>RW</td>
1126     <td>X Windows system pixmap</td>
1127     <td>Also known as <code>PM</code>. Used by the X Windows System to store color icons.</td>
1128   </tr>
1129
1130   <tr>
1131     <td><a href="http://www.fileformat.info/format/xwd/egff.htm">XWD</a></td>
1132     <td>RW</td>
1133     <td>X Windows system window dump</td>
1134     <td>Used by the X Windows System to save/display screen dumps.</td>
1135   </tr>
1136
1137   <tr>
1138     <td>X3F</td>
1139     <td>R</td>
1140     <td>Sigma Camera RAW Picture File</td>
1141     <td> </td>
1142   </tr>
1143
1144   <tr>
1145     <td>YCbCr</td>
1146     <td>RW</td>
1147     <td>Raw Y, Cb, and Cr samples</td>
1148     <td>Use <a href="command-line-options.html#size">-size</a> and <a href="command-line-options.html#depth">-depth</a> to specify the image width, height, and depth.</td>
1149   </tr>
1150
1151   <tr>
1152     <td>YCbCrA</td>
1153     <td>RW</td>
1154     <td>Raw Y, Cb, Cr, and alpha samples</td>
1155     <td>Use <a href="command-line-options.html#size">-size</a> and <a href="command-line-options.html#depth">-depth</a> to specify the image width, height, and depth.</td>
1156   </tr>
1157
1158   <tr>
1159     <td>YUV</td>
1160     <td>RW</td>
1161     <td>CCIR 601 4:1:1</td>
1162     <td>Use <a href="command-line-options.html#size">-size</a> and <a href="command-line-options.html#depth">-depth</a> command line options to specify width, height, and depth.   Use <a href="command-line-options.html#sampling-factor">-sampling-factor</a> to set the desired subsampling (e.g. -sampling-factor 4:2:2).</td>
1163   </tr>
1164   </tbody>
1165 </table>
1166 </div>
1167
1168 <h2 class="magick-header"><a id="pseudo"></a>Pseudo-image Formats</h2>
1169
1170 <p>ImageMagick supports a number of image format specifications which refer to images prepared via an algorithm, or input/output targets. The following table lists these pseudo-image formats:</p>
1171
1172 <div class="table-responsive">
1173 <table class="table table-condensed table-striped">
1174   <tr>
1175     <th>Tag</th>
1176     <th>Mode</th>
1177     <th>Description</th>
1178     <th>Notes</th>
1179   </tr>
1180
1181   <tr>
1182     <td>CANVAS</td>
1183     <td>R</td>
1184     <td>Canvas image of specified color</td>
1185     <td>Useful to create solid color <var>canvas</var> images. Use
1186        <a href="command-line-options.html#size">-size</a> and <a href="command-line-options.html#depth">-depth</a> to specify the
1187        image width, height, and depth.  Example canvas color specifications
1188        include <code>canvas:red</code> and <code>canvas:#FF0000</code>.<br>
1189
1190        If no color is specified a '<code>white</code>' canvas image is
1191        generated.  If no <a href="command-line-options.html#size">-size</a> is specified
1192        a single pixel image of the specified color is generated.</td>
1193
1194   </tr>
1195
1196   <tr>
1197     <td>CAPTION</td>
1198     <td>R</td>
1199     <td>Image caption</td>
1200     <td> </td>
1201   </tr>
1202
1203   <tr>
1204     <td>CLIP</td>
1205     <td>RW</td>
1206     <td>Clip path of image</td>
1207     <td> </td>
1208   </tr>
1209
1210   <tr>
1211     <td>CLIPBOARD</td>
1212     <td>RW</td>
1213     <td>Windows Clipboard</td>
1214     <td>Only available under Microsoft Windows.</td>
1215   </tr>
1216
1217   <tr>
1218     <td>FRACTAL</td>
1219     <td>R</td>
1220     <td>Plasma fractal image</td>
1221     <td> </td>
1222   </tr>
1223
1224   <tr>
1225     <td>GRADIENT</td>
1226     <td>R</td>
1227     <td>Gradual passing from one shade to another</td>
1228     <td>Returns a rendered linear top-to-bottom gradient image
1229        using the specified image size. Specify the desired shading as part of
1230        the filename (e.g.  <code>gradient:red-blue</code> or
1231        <code>gradient:#F00-#00F</code>).  If the shading colors are omitted, the
1232        default gradient is white-black. Use named black/white/grayXX for
1233        non-linear gray and gray(XX[%]) for linear gray gradients.</td>
1234
1235   </tr>
1236
1237   <tr>
1238     <td>HALD</td>
1239     <td>R</td>
1240     <td>Identity Hald CLUT Image</td>
1241     <td>Select order with filename, e.g. hald:5 for order 5.</td>
1242   </tr>
1243
1244   <tr>
1245     <td>HISTOGRAM</td>
1246     <td>W</td>
1247     <td>Histogram of the image</td>
1248     <td>The histogram includes the unique colors of the image as an image comment.  If you have no need for the unique color list, use <code>-define histogram:unique-colors=false</code> to forego this expensive operation.</td>
1249   </tr>
1250
1251   <tr>
1252     <td>LABEL</td>
1253     <td>R</td>
1254     <td>Text image format</td>
1255     <td>Specify the desired text as the filename (e.g. <code>label:"This a label"</code>).</td>
1256   </tr>
1257
1258   <tr>
1259     <td>MAP</td>
1260     <td>RW</td>
1261     <td>Colormap intensities and indices</td>
1262     <td>Set -depth to set the sample size of the intensities; indices are 16-bit if colors &gt; 256.</td>
1263   </tr>
1264
1265   <tr>
1266     <td>MASK</td>
1267     <td>RW</td>
1268     <td>Image mask</td>
1269     <td> </td>
1270   </tr>
1271
1272   <tr>
1273     <td>MATTE</td>
1274     <td>W</td>
1275     <td>MATTE format</td>
1276     <td>Write only.</td>
1277   </tr>
1278
1279   <tr>
1280     <td>NULL</td>
1281     <td>RW</td>
1282     <td>NULL image</td>
1283     <td>Useful for creating blank tiles with <a href="montage.html">montage</a> (use <code>NULL:</code>). Also useful as an output format when evaluating image read performance.</td>
1284   </tr>
1285
1286   <tr>
1287     <td>PANGO</td>
1288     <td>R</td>
1289     <td>Image caption</td>
1290     <td>You can configure the caption layout with these defines: <code>-define pango:auto-dir=</code><var>true/false</var>, <code>-define pango:ellipsize=</code><var>start/middle/end</var>, <code>-define pango:gravity-hint=</code><var>natural/strong/line</var>, <code>-define pango:hinting=</code><var>none/auto/full</var>, <code>-define pango:indent=</code><var>points</var>, <code>-define pango:justify=</code><var>true/false</var>, <code>-define pango:language=</code><var>en_US/etc</var>, <code>-define pango:markup=</code><var>true/false</var>, <code>-define pango:single-paragraph=</code><var>true/false</var> and <code>-define pango:wrap=</code><var>word/char/word-char</var>.</td>
1291   </tr>
1292
1293   <tr>
1294     <td>PLASMA</td>
1295     <td>R</td>
1296     <td>Plasma fractal image</td>
1297     <td> </td>
1298   </tr>
1299
1300   <tr>
1301     <td>PREVIEW</td>
1302     <td>W</td>
1303     <td>Show a preview an image enhancement, effect, or f/x</td>
1304     <td>Creates a preview montage of images prepared over a parameteric range in order to assist with parameter selection. Specify the desired
1305     preview type via the -preview option).</td>
1306   </tr>
1307
1308   <tr>
1309     <td>PRINT</td>
1310     <td>W</td>
1311     <td>Send image to your computer printer</td>
1312     <td>Unix users may set the PRINTER (for 'lpr') or LPDEST (for 'lp') environment variables to select the desired printer.</td>
1313   </tr>
1314
1315   <tr>
1316     <td>SCAN</td>
1317     <td>R</td>
1318     <td>Import image from a scanner device</td>
1319     <td>Requires <a href="http://www.sane-project.org/">SANE</a> Specify the device name and path as the filename (e.g.  <code>scan:'hpaio:/usb/Officejet_6200_series?serial=CN4ATCE3G20453'</code>).</td>
1320   </tr>
1321
1322   <tr>
1323     <td>RADIAL_GRADIENT</td>
1324     <td>R</td>
1325     <td>Gradual radial passing from one shade to another</td>
1326     <td>Returns a rendered radial gradient image using the specified image size. Specify the desired shading as part of the filename (e.g.  <code>radial-gradient:red-blue</code> or <code>radial-gradient:#F00-#00F</code>).</td>
1327   </tr>
1328
1329   <tr>
1330     <td>SCANX</td>
1331     <td>R</td>
1332     <td>Import image from the default scanner device</td>
1333     <td> </td>
1334   </tr>
1335
1336   <tr>
1337     <td>SCREENSHOT</td>
1338     <td>R</td>
1339     <td>an image that shows the contents of a computer display</td>
1340     <td> </td>
1341   </tr>
1342
1343   <tr>
1344     <td>STEGANO</td>
1345     <td>R</td>
1346     <td>Steganographic image</td>
1347     <td>Use <a href="command-line-options.html#size">-size</a> command line option to specify width, height, and offset of the steganographic image</td>
1348   </tr>
1349
1350   <tr>
1351     <td>TILE</td>
1352     <td>R</td>
1353     <td>Tiled image</td>
1354     <td>Create a tiled version of an image at by tiling a image. Use <a href="command-line-options.html#size">-size</a> to specify the tiled image size. The image is specified similar to
1355     <code>TILE:image.miff</code>.</td>
1356   </tr>
1357
1358   <tr>
1359     <td>UNIQUE</td>
1360     <td>W</td>
1361     <td>Write only unique pixels to the image file.</td>
1362     <td> </td>
1363   </tr>
1364
1365   <tr>
1366     <td>VID</td>
1367     <td>RW</td>
1368     <td>Visual Image Directory</td>
1369     <td>Used to create a thumbnailed directory (tiled thumbnails) of a set of images which may be used to select images to view via the <a href="display.html">display</a> program, or saved to a <a href="formats.html#MIFF">MIFF</a> or <a href="formats.html#SHTML">SHTML</a> file.</td>
1370   </tr>
1371
1372   <tr>
1373     <td>WIN</td>
1374     <td>RW</td>
1375     <td>Select image from or display image to your computer screen</td>
1376     <td>Only supported under Microsoft Windows.</td>
1377   </tr>
1378
1379   <tr>
1380     <td>X</td>
1381     <td>RW</td>
1382     <td>Select image from or display image to your X server screen</td>
1383     <td>Also see the <a href="import.html">import</a> and <a href="display.html">display</a>
1384     programs.</td>
1385   </tr>
1386
1387   <tr>
1388     <td>XC</td>
1389     <td>R</td>
1390     <td>Canvas image of specified color</td>
1391     <td>An backward compatible alias for the '<code>canvas:</code>'
1392     psuedo-file format, used to create a solid color <var>canvas</var> image.
1393     </td>
1394   </tr>
1395 </table>
1396 </div>
1397
1398 <h2 class="magick-header"><a id="builtin-images"></a>Built-in Images</h2>
1399
1400 <p>ImageMagick includes a number of built-in (embedded) images which may be referenced as if they were an image file. The <code>magick:</code> format tag may be used via the syntax <code>magick:</code><var>name</var> to request an embedded image (e.g. <code>magick:logo</code>). For backwards compatibility, the image specifications <code>GRANITE:</code>, <code>LOGO:</code>, <code>NETSCAPE:</code>, and <code>ROSE:</code> may also be used to request images with those names.</p>
1401
1402 <div class="table-responsive">
1403 <table class="table table-condensed table-striped">
1404   <tr>
1405     <th>Tag</th>
1406     <th>Mode</th>
1407     <th>Description</th>
1408     <th>Notes</th>
1409   </tr>
1410
1411   <tr>
1412     <td>GRANITE</td>
1413     <td>R</td>
1414     <td>128x128 granite texture pattern</td>
1415     <td><img src="../images/granite.png" width="64" height="64" alt="GRANITE"></td>
1416   </tr>
1417
1418   <tr>
1419     <td><a href="../images/logo.png">LOGO</a></td>
1420     <td>R</td>
1421     <td>ImageMagick Logo, 640x480</td>
1422     <td><img src="../images/logo.jpg" width="123" height="118" alt="Logo"></td>
1423   </tr>
1424
1425   <tr>
1426     <td> NETSCAPE</td>
1427     <td>R</td>
1428     <td>image using colors in Netscape 216 (6x6x6 ) color cube, 216x144</td>
1429     <td>Most commonly used with the <a href="convert.html">convert</a> and <a href="mogrify.html">mogrify</a> programs with the <a href="command-line-options.html#map">-map</a> option to create <var>web safe</var> images.</td>
1430   </tr>
1431
1432   <tr>
1433     <td>ROSE</td>
1434     <td>R</td>
1435     <td>Picture of a rose, 70x46</td>
1436     <td><img src="../images/rose.png" width="70" height="46" alt="ROSE"></td>
1437   </tr>
1438
1439   <tr>
1440     <td><a href="../images/wizard.png">WIZARD</a></td>
1441     <td>R</td>
1442     <td>ImageMagick Wizard, 480x640</td>
1443     <td><img src="../images/wizard.jpg" width="125" height="167" alt="Logo"></td>
1444   </tr>
1445
1446 </table></div>
1447
1448 <h2 class="magick-header"><a id="builtin-patterns"></a>Built-in Patterns</h2>
1449
1450 <p>ImageMagick includes a number of built-in (embedded) patterns which may be referenced as if they were an image file. The <code>pattern:</code> format tag may be used via the syntax <code>pattern:</code><var>name</var> to request an embedded pattern (e.g. <code>pattern:checkerboard</code>). The pattern size is controlled with the <a href="command-line-options.html#size">-size</a> command line option.</p>
1451
1452 <div class="table-responsive">
1453 <table class="table table-condensed table-striped">
1454   <tr>
1455     <th>Tag</th>
1456     <th>Mode</th>
1457     <th>Description</th>
1458     <th>Notes</th>
1459   </tr>
1460
1461   <tr>
1462     <td>BRICKS</td>
1463     <td>R</td>
1464     <td>brick pattern, 16x16</td>
1465     <td><img src="../images/patterns/bricks.png" width="100" height="26" alt="BRICKS"></td>
1466   </tr>
1467
1468   <tr>
1469     <td>CHECKERBOARD</td>
1470     <td>R</td>
1471     <td>checkerboard pattern, 30x30</td>
1472     <td><img src="../images/patterns/checkerboard.png" width="100" height="26" alt="CHECKERBOARD"></td>
1473   </tr>
1474
1475   <tr>
1476     <td>CIRCLES</td>
1477     <td>R</td>
1478     <td>circles pattern, 16x16</td>
1479     <td><img src="../images/patterns/circles.png" width="100" height="26" alt="CIRCLES"></td>
1480   </tr>
1481
1482   <tr>
1483     <td>CROSSHATCH</td>
1484     <td>R</td>
1485     <td>crosshatch pattern, 8x4</td>
1486     <td><img src="../images/patterns/crosshatch.png" width="100" height="26" alt="CROSSHATCH"></td>
1487   </tr>
1488
1489   <tr>
1490     <td>CROSSHATCH30</td>
1491     <td>R</td>
1492     <td>crosshatch pattern with lines at 30 degrees, 8x4</td>
1493     <td><img src="../images/patterns/crosshatch30.png" width="100" height="26" alt="CROSSHATCH30"></td>
1494   </tr>
1495
1496   <tr>
1497     <td>CROSSHATCH45</td>
1498     <td>R</td>
1499     <td>crosshatch pattern with lines at 45 degrees, 8x4</td>
1500     <td><img src="../images/patterns/crosshatch45.png" width="100" height="26" alt="CROSSHATCH45"></td>
1501   </tr>
1502
1503   <tr>
1504     <td>FISHSCALES</td>
1505     <td>R</td>
1506     <td>fish scales pattern, 16x8</td>
1507     <td><img src="../images/patterns/fishscales.png" width="100" height="26" alt="FISHSCALES"></td>
1508   </tr>
1509
1510   <tr>
1511     <td>GRAY0</td>
1512     <td>R</td>
1513     <td>0% intensity gray, 32x32</td>
1514     <td><img src="../images/patterns/gray0.png" width="100" height="32" alt="GRAY0"></td>
1515   </tr>
1516
1517   <tr>
1518     <td>GRAY5</td>
1519     <td>R</td>
1520     <td>5% intensity gray, 32x32</td>
1521     <td><img src="../images/patterns/gray5.png" width="100" height="32" alt="GRAY5"></td>
1522   </tr>
1523
1524   <tr>
1525     <td>GRAY10</td>
1526     <td>R</td>
1527     <td>10% intensity gray, 32x32</td>
1528     <td> <img src="../images/patterns/gray10.png" width="100" height="32" alt="GRAY10"></td>
1529   </tr>
1530
1531   <tr>
1532     <td>GRAY15</td>
1533     <td>R</td>
1534     <td>15% intensity gray, 32x32</td>
1535     <td><img src="../images/patterns/gray15.png" width="100" height="32" alt="GRAY15"></td>
1536   </tr>
1537
1538   <tr>
1539     <td>GRAY20</td>
1540     <td>R</td>
1541     <td>20% intensity gray, 32x32</td>
1542     <td><img src="../images/patterns/gray20.png" width="100" height="32" alt="GRAY20"></td>
1543   </tr>
1544
1545   <tr>
1546     <td>GRAY25</td>
1547     <td>R</td>
1548     <td>25% intensity gray, 32x32</td>
1549     <td><img src="../images/patterns/gray25.png" width="100" height="32" alt="GRAY25"></td>
1550   </tr>
1551
1552   <tr>
1553     <td>GRAY30</td>
1554     <td>R</td>
1555     <td>30% intensity gray, 32x32</td>
1556     <td><img src="../images/patterns/gray30.png" width="100" height="32" alt="GRAY30"></td>
1557   </tr>
1558
1559   <tr>
1560     <td>GRAY35</td>
1561     <td>R</td>
1562     <td>35% intensity gray, 32x32</td>
1563     <td><img src="../images/patterns/gray35.png" width="100" height="32" alt="GRAY35"></td>
1564   </tr>
1565
1566   <tr>
1567     <td>GRAY40</td>
1568     <td>R</td>
1569     <td>40% intensity gray, 32x32</td>
1570     <td><img src="../images/patterns/gray40.png" width="100" height="32" alt="GRAY40"></td>
1571   </tr>
1572
1573   <tr>
1574     <td>GRAY45</td>
1575     <td>R</td>
1576     <td>45% intensity gray, 32x32</td>
1577     <td><img src="../images/patterns/gray45.png" width="100" height="32" alt="GRAY45"></td>
1578   </tr>
1579
1580   <tr>
1581     <td>GRAY50</td>
1582     <td>R</td>
1583     <td>50% intensity gray, 32x32</td>
1584     <td><img src="../images/patterns/gray50.png" width="100" height="32" alt="GRAY50"></td>
1585   </tr>
1586
1587   <tr>
1588     <td>GRAY55</td>
1589     <td>R</td>
1590     <td>55% intensity gray, 32x32</td>
1591     <td><img src="../images/patterns/gray55.png" width="100" height="32" alt="GRAY55"></td>
1592   </tr>
1593
1594   <tr>
1595     <td>GRAY60</td>
1596     <td>R</td>
1597     <td>60% intensity gray, 32x32</td>
1598     <td><img src="../images/patterns/gray60.png" width="100" height="32" alt="GRAY60"></td>
1599   </tr>
1600
1601   <tr>
1602     <td>GRAY65</td>
1603     <td>R</td>
1604     <td>65% intensity gray, 32x32</td>
1605     <td><img src="../images/patterns/gray65.png" width="100" height="32" alt="GRAY65"></td>
1606   </tr>
1607
1608   <tr>
1609     <td>GRAY70</td>
1610     <td>R</td>
1611     <td>70% intensity gray, 32x32</td>
1612     <td><img src="../images/patterns/gray70.png" width="100" height="32" alt="GRAY70"></td>
1613   </tr>
1614
1615   <tr>
1616     <td>GRAY75</td>
1617     <td>R</td>
1618     <td>75% intensity gray, 32x32</td>
1619     <td><img src="../images/patterns/gray75.png" width="100" height="32" alt="GRAY75"></td>
1620   </tr>
1621
1622   <tr>
1623     <td>GRAY80</td>
1624     <td>R</td>
1625     <td>80% intensity gray, 32x32</td>
1626     <td> <img src="../images/patterns/gray80.png" width="100" height="32" alt="GRAY80"></td>
1627   </tr>
1628
1629   <tr>
1630     <td>GRAY85</td>
1631     <td>R</td>
1632     <td>85% intensity gray, 32x32</td>
1633     <td><img src="../images/patterns/gray85.png" width="100" height="32" alt="GRAY85"></td>
1634   </tr>
1635
1636   <tr>
1637     <td>GRAY90</td>
1638     <td>R</td>
1639     <td>100% intensity gray, 32x32</td>
1640     <td><img src="../images/patterns/gray90.png" width="100" height="32" alt="GRAY90"></td>
1641   </tr>
1642
1643   <tr>
1644     <td>GRAY95</td>
1645     <td>R</td>
1646     <td>100% intensity gray, 32x32</td>
1647     <td><img src="../images/patterns/gray95.png" width="100" height="32" alt="GRAY95"></td>
1648   </tr>
1649
1650   <tr>
1651     <td>GRAY100</td>
1652     <td>R</td>
1653     <td>100% intensity gray, 32x32</td>
1654     <td><img src="../images/patterns/gray100.png" width="100" height="32" alt="GRAY100"></td>
1655   </tr>
1656
1657   <tr>
1658     <td>HEXAGONS</td>
1659     <td>R</td>
1660     <td>hexagon pattern, 30x18</td>
1661     <td><img src="../images/patterns/hexagons.png" width="100" height="26" alt="HEXAGONS"></td>
1662   </tr>
1663
1664   <tr>
1665     <td>HORIZONTAL</td>
1666     <td>R</td>
1667     <td>horizontal line pattern, 8x4</td>
1668     <td><img src="../images/patterns/horizontal.png" width="100" height="26" alt="HORIZONTAL"></td>
1669   </tr>
1670
1671   <tr>
1672     <td>HORIZONTAL2</td>
1673     <td>R</td>
1674     <td>horizontal line pattern, 8x8</td>
1675     <td><img src="../images/patterns/horizontal2.png" width="100" height="26" alt="HORIZONTAL2"></td>
1676   </tr>
1677
1678   <tr>
1679     <td>HORIZONTAL3</td>
1680     <td>R</td>
1681     <td>horizontal line pattern, 9x9</td>
1682     <td><img src="../images/patterns/horizontal3.png" width="100" height="26" alt="HORIZONTAL3"></td>
1683   </tr>
1684
1685   <tr>
1686     <td>HORIZONTALSAW</td>
1687     <td>R</td>
1688     <td>horizontal saw-tooth pattern, 16x8</td>
1689     <td><img src="../images/patterns/horizontalsaw.png" width="100" height="26" alt="HORIZONTALSAW"></td>
1690   </tr>
1691
1692   <tr>
1693     <td>HS_BDIAGONAL</td>
1694     <td>R</td>
1695     <td>backward diagonal line pattern (45 degrees slope), 8x8</td>
1696     <td><img src="../images/patterns/hs_bdiagonal.png" width="100" height="26" alt="HS_BDIAGONAL"></td>
1697   </tr>
1698
1699   <tr>
1700     <td>HS_CROSS</td>
1701     <td>R</td>
1702     <td>cross line pattern, 8x8</td>
1703     <td><img src="../images/patterns/hs_cross.png" width="100" height="26" alt="HS_CROSS"></td>
1704   </tr>
1705
1706   <tr>
1707     <td>HS_DIAGCROSS</td>
1708     <td>R</td>
1709     <td>diagonal line cross pattern (45 degrees slope), 8x8</td>
1710     <td><img src="../images/patterns/hs_diagcross.png" width="100" height="26" alt="HS_DIAGCROSS"></td>
1711   </tr>
1712
1713   <tr>
1714     <td>HS_FDIAGONAL</td>
1715     <td>R</td>
1716     <td>forward diagonal line pattern (45 degrees slope), 8x8</td>
1717     <td><img src="../images/patterns/hs_fdiagonal.png" width="100" height="26" alt="HS_FDIAGONAL"></td>
1718   </tr>
1719
1720   <tr>
1721     <td>HS_HORIZONTAL</td>
1722     <td>R</td>
1723     <td>horizontal line pattern, 8x8</td>
1724     <td><img src="../images/patterns/hs_horizontal.png" width="100" height="26" alt="HS_HORIZONTAL"></td>
1725   </tr>
1726
1727   <tr>
1728     <td>HS_VERTICAL</td>
1729     <td>R</td>
1730     <td>vertical line pattern, 8x8</td>
1731     <td><img src="../images/patterns/hs_vertical.png" width="100" height="26" alt="HS_VERTICAL"></td>
1732   </tr>
1733
1734   <tr>
1735     <td>LEFT30</td>
1736     <td>R</td>
1737     <td>forward diagonal pattern (30 degrees slope), 8x4</td>
1738     <td><img src="../images/patterns/left30.png" width="100" height="26" alt="LEFT0"></td>
1739   </tr>
1740
1741   <tr>
1742     <td>LEFT45</td>
1743     <td>R</td>
1744     <td>forward diagonal line pattern (45 degrees slope), 8x8</td>
1745     <td><img src="../images/patterns/left45.png" width="100" height="26" alt="LEFT45"></td>
1746   </tr>
1747
1748   <tr>
1749     <td>LEFTSHINGLE</td>
1750     <td>R</td>
1751     <td>left shingle pattern, 24x24</td>
1752     <td><img src="../images/patterns/leftshingle.png" width="100" height="26" alt="LEFTSHINGLE"></td>
1753   </tr>
1754
1755   <tr>
1756     <td>OCTAGONS</td>
1757     <td>R</td>
1758     <td>octagons pattern, 16x16</td>
1759     <td><img src="../images/patterns/octagons.png" width="100" height="26" alt="OCTAGONS"></td>
1760   </tr>
1761
1762   <tr>
1763     <td>RIGHT30</td>
1764     <td>R</td>
1765     <td>backward diagonal line pattern (30 degrees) 8x4</td>
1766     <td><img src="../images/patterns/right30.png" width="100" height="26" alt="RIGHT30"></td>
1767   </tr>
1768
1769   <tr>
1770     <td>RIGHT45</td>
1771     <td>R</td>
1772     <td>backward diagonal line pattern (30 degrees), 8x8</td>
1773     <td><img src="../images/patterns/right45.png" width="100" height="26" alt="RIGHT45"></td>
1774   </tr>
1775
1776   <tr>
1777     <td>RIGHTSHINGLE</td>
1778     <td>R</td>
1779     <td>right shingle pattern, 24x24</td>
1780     <td><img src="../images/patterns/rightshingle.png" width="100" height="26" alt="RIGHTSHINGLE"></td>
1781   </tr>
1782
1783   <tr>
1784     <td>SMALLFISHSCALES</td>
1785     <td>R</td>
1786     <td>small fish scales pattern, 8x8</td>
1787     <td><img src="../images/patterns/smallfishscales.png" width="100" height="26" alt="SMALLFISHSCALES"></td>
1788   </tr>
1789
1790   <tr>
1791     <td>VERTICAL</td>
1792     <td>R</td>
1793     <td>vertical line pattern, 8x8</td>
1794     <td><img src="../images/patterns/vertical.png" width="100" height="26" alt="VERTICAL"></td>
1795   </tr>
1796
1797   <tr>
1798     <td>VERTICAL2</td>
1799     <td>R</td>
1800     <td>vertical line pattern, 8x8</td>
1801     <td><img src="../images/patterns/vertical2.png" width="100" height="26" alt="VERTICAL2"></td>
1802   </tr>
1803
1804   <tr>
1805     <td>VERTICAL3</td>
1806     <td>R</td>
1807     <td>vertical line pattern, 9x9</td>
1808     <td><img src="../images/patterns/vertical3.png" width="100" height="26" alt="VERTICAL3"></td>
1809   </tr>
1810
1811   <tr>
1812     <td>VERTICALBRICKS</td>
1813     <td>R</td>
1814     <td>vertical brick pattern, 16x16</td>
1815     <td><img src="../images/patterns/verticalbricks.png" width="100" height="26" alt="VERTICALBRICKS"></td>
1816   </tr>
1817
1818   <tr>
1819     <td>VERTICALLEFTSHINGLE</td>
1820     <td>R</td>
1821     <td>vertical left shingle pattern, 24x24</td>
1822     <td><img src="../images/patterns/verticalleftshingle.png" width="100" height="26" alt="VERTICALLEFTSHINGLE"></td>
1823   </tr>
1824
1825   <tr>
1826     <td>VERTICALRIGHTSHINGLE</td>
1827     <td>R</td>
1828     <td>vertical right shingle pattern, 24x24</td>
1829     <td><img src="../images/patterns/verticalrightshingle.png" width="100" height="26" alt="VERTICALRIGHTSHINGLE"></td>
1830   </tr>
1831
1832   <tr>
1833     <td>VERTICALSAW</td>
1834     <td>R</td>
1835     <td>vertical saw-tooth pattern, 8x16</td>
1836     <td><img src="../images/patterns/verticalsaw.png" width="100" height="26" alt="VERTICALSAW"></td>
1837   </tr>
1838 </table></div>
1839
1840 <h2 class="magick-header"><a id="embedded"></a>Embedded Image Profiles</h2>
1841
1842 <p>ImageMagick provides a number of format identifiers which are used to add, remove, and save embedded profiles for images which can support embedded profiles. Image types which may contain embedded profiles are TIFF, JPEG, and PDF.</p>
1843
1844 <div class="table-responsive">
1845 <table class="table table-condensed table-striped">
1846   <tbody>
1847   <tr>
1848     <th>Tag</th>
1849     <th>Mode</th>
1850     <th>Description</th>
1851     <th>Notes</th>
1852   </tr>
1853
1854   <tr>
1855     <td>8BIM</td>
1856     <td>RW</td>
1857     <td>Photoshop resource format (binary)</td>
1858     <td> </td>
1859   </tr>
1860
1861   <tr>
1862     <td>8BIMTEXT</td>
1863     <td>RW</td>
1864     <td>Photoshop resource format (ASCII)</td>
1865     <td>An ASCII representation of the 8BIM format.</td>
1866   </tr>
1867
1868   <tr>
1869     <td>APP1</td>
1870     <td>RW</td>
1871     <td>Raw application information</td>
1872     <td> </td>
1873   </tr>
1874
1875   <tr>
1876     <td>APP1JPEG</td>
1877     <td>RW</td>
1878     <td>Raw JPEG binary data</td>
1879     <td>Profile in JPEG wrapper.</td>
1880   </tr>
1881
1882   <tr>
1883     <td>ICC</td>
1884     <td>RW</td>
1885     <td>International Color Consortium color profile</td>
1886     <td>Also known as <code>ICM</code>. To read, use <a href="command-line-options.html#profile">-profile</a> with
1887       <a href="convert.html">convert</a>.</td>
1888   </tr>
1889
1890   <tr>
1891     <td>IPTC</td>
1892     <td>RW</td>
1893     <td>IPTC Newsphoto (binary)</td>
1894     <td>To read, use <a href="command-line-options.html#profile">-profile</a> with <a href="convert.html">convert</a></td>
1895   </tr>
1896
1897   <tr>
1898     <td>IPTCTEXT</td>
1899     <td>RW</td>
1900     <td>IPTC Newsphoto (ASCII)</td>
1901     <td>An ASCII representation of the IPTC format.</td>
1902   </tr>
1903   </tbody>
1904 </table></div>
1905
1906 </div>
1907   <footer class="magick-footer">
1908     <p><a href="support.html">Donate</a> •
1909      <a href="sitemap.html">Sitemap</a> •
1910     <a href="links.html">Related</a> •
1911     <a href="architecture.html">Architecture</a>
1912 </p>
1913     <p><a href="formats.html#">Back to top</a> •
1914     <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> •
1915     <a href="http://nextgen.imagemagick.org/script/contact.php">Contact Us</a></p>
1916         <p><small>©  1999-2015 ImageMagick Studio LLC</small></p>
1917   </footer>
1918 </div><!-- /.container -->
1919
1920   <script src="http://nextgen.imagemagick.org/js/magick.html"></script>
1921 </div>
1922 </body>
1923 </html>