1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>ImageMagick - Formats</title>
<meta name="application-name" content="ImageMagick" />
<meta name="description" content="Use ImageMagick® to create, edit, compose, and convert bitmap images. Resize an image, crop it, change its shades and colors, add captions, and more." />
<meta name="application-url" content="https://legacy.imagemagick.org" />
<meta name="generator" content="PHP" />
<meta name="keywords" content="formats, image converter, image resizer, image editor, photo editor, jpg converter, png converter, tiff converter, vector images, online, free, swiss army" />
<meta name="rating" content="GENERAL" />
<meta name="robots" content="INDEX, FOLLOW" />
<meta name="generator" content="ImageMagick Studio LLC" />
<meta name="author" content="ImageMagick Studio LLC" />
<meta name="revisit-after" content="2 DAYS" />
<meta name="resource-type" content="document" />
<meta name="copyright" content="Copyright (c) 1999-2020 ImageMagick Studio LLC" />
<meta name="distribution" content="Global" />
<meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1" />
<meta property='og:url' content='https://legacy.imagemagick.org/' />
<meta property='og:title' content='ImageMagick Legacy' />
<meta property='og:image' content='https://legacy.imagemagick.org/images/logo.png' />
<meta property='og:type' content='website' />
<meta property='og:site_name' content='ImageMagick Legacy' />
<meta property='og:description' content="Create, Edit, Compose, or Convert Bitmap Images" />
<meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
<meta name="msvalidate.01" content="103012B23499FEB70AEA89C83C274AC7" />
<link href="formats.html" rel="canonical" />
<link href="../images/wand.png" rel="icon" />
<link href="../images/wand.ico" rel="shortcut icon" />
<link href="assets/magick.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<a class="navbar-brand" href="../index.html"><img class="d-block" id="wand" alt="ImageMagick" width="32" height="32" src="../images/wand.ico"/></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsMagick" aria-controls="navbarsMagick" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbarsMagick" style="">
<ul class="navbar-nav mr-auto">
<li class="nav-item ">
<a class="nav-link" href="../index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item ">
<a class="nav-link" href="download.html">Download</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="command-line-tools.html">Tools</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="command-line-processing.html">Command-line</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="develop.html">Develop</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://github.com/ImageMagick/ImageMagick6/discussions">Community</a>
</li>
<li class="nav-item">
<iframe src="https://github.com/sponsors/ImageMagick/button" title="Sponsor ImageMagick" height="35" width="107" style="border: 0;"></iframe>
</li>
</ul>
</div>
<form class="form-inline my-2 my-md-0" action="https://imagemagick.org/script/search.php">
<input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
</form>
</nav>
<div role="main" class="container">
<script async="async" src="https://localhost/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-3129977114552745"
data-ad-slot="6345125851"
data-full-width-responsive="true"
data-ad-format="horizontal"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<main class="container">
<div class="magick-template">
<div class="magick-header">
<h1 class="text-center">Image Formats</h1>
<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>
<p class="lead magick-description">ImageMagick uses an ASCII string known as <var>convert</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>
<p>To get a complete listing of which image formats are supported on your system, type</p>
<pre class="highlight"><code>identify -list format
</code></pre>
<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>
<h2><a class="anchor" id="colorspace"></a>A Word about Colorspaces</h2>
<p>A majority of the image formats assume an sRGB
colorspace (e.g. JPEG, PNG, etc.). A few support only linear RGB (e.g. EXR,
DPX, CIN, HDR) or only linear GRAY (e.g. PGM). A few formats support CMYK.
Then there is the occasional format that also supports LAB (that is CieLAB)
(e.g. TIFF, PSD, JPG, JP2). To determine the colorspace of your image, use
this command:</p>
<pre class="highlight"><code>-> identify -verbose image.jpg
Image: image.jpg
Format: JPEG (Joint Photographic Experts Group JFIF format)
...
Colorspace: sRGB
</code></pre>
OR use the appropriate percent escape
<pre class="highlight"><code>-> convert image.jpg -print "%[colorspace]\n" null:
sRGB
</code></pre>
<p>When processing an image, be aware of the colorspace. Many image
processing algorithms assume a linear RGB colorspace. Although you may get
satisfactory results processing in the sRGB colorspace, you may get improved
results in linear RGB (essentially sRGB with the gamma function removed). For
example,</p>
<pre class="highlight"><code>convert image.jpg -colorspace RGB -resize 50% -colorspace sRGB resize.jpg
</code></pre>
<p>As of IM 6.7.8-2 one can properly work in LAB colorspace whether or not
Imagemagick is <a href="high-dynamic-range.html">HDRI</a>-enabled. Essentially the A and
B channels are stored with a 50% gray bias, to allow it to handle the
negatives required by the format.</p>
<pre class="highlight"><code>convert lab.tif -resize 50% resize.jpg
</code></pre>
<p>Again, it may not make sense for some image processing operators to work
directly in LAB space, but ImageMagick permits it and generally returns
reasonable results.</p>
<h2><a class="anchor" id="supported"></a>Supported Image Formats</h2>
<p>ImageMagick supports reading over 100 major file formats (not
including sub-formats). The following table provides a summary of
the supported image formats.</p>
<div class="pre-scrollable table-responsive" style="font-size:87.5% !important;">
<table class="table table-sm table-hover">
<tbody>
<tr>
<th>Tag</th>
<th>Mode</th>
<th>Description</th>
<th>Notes</th>
</tr>
<tr>
<td>AAI</td>
<td>RW</td>
<td>AAI Dune image</td>
<td> </td>
</tr>
<tr>
<td><a href="https://en.wikipedia.org/wiki/APNG">APNG</a></td>
<td>RW</td>
<td>Animated Portable Network Graphics</td>
<td>Note, you must use an explicit image format specifier to read an APNG (<code>apng:myImage.apng</code>) image sequence, otherwise it assumes a PNG image and only reads the first frame.</td>
</tr>
<tr>
<td>ART</td>
<td>RW</td>
<td>PFS: 1st Publisher</td>
<td>Format originally used on the Macintosh (MacPaint?) and later used for PFS: 1st Publisher clip art.</td>
</tr>
<tr>
<td>ARW</td>
<td>R</td>
<td>Sony Digital Camera Alpha Raw Image Format</td>
<td>Set <code>-define dng:use-camera-wb=true</code> to use the RAW-embedded color profile for Sony cameras. You can also set these options: <code>use-auto-wb</code>, <code>use-auto-bright</code>, and <code>output-color</code>.</td>
</tr>
<tr>
<td><a href="http://www.jmcgowan.com/avi.html">AVI</a></td>
<td>R</td>
<td>Microsoft Audio/Visual Interleaved</td>
<td> </td>
</tr>
<tr>
<td>AVS</td>
<td>RW</td>
<td>AVS X image</td>
<td> </td>
</tr>
<tr>
<td><a href="http://bellard.org/bpg/">BPG</a></td>
<td>RW</td>
<td>Better Portable Graphics</td>
<td>Use <a href="command-line-options.html#quality">-quality</a> to specify the image compression quality. To meet the requirements of BPG, the quality argument divided by 2 (e.g. -quality 92 assigns 46 as the BPG compression.</td>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/bmp/egff.htm">BMP, BMP2, BMP3</a></td>
<td>RW</td>
<td>Microsoft Windows bitmap</td>
<td>By default the BMP format is version 4. Use BMP3 and BMP2 to write versions 3 and 2 respectively. Use <code>-define bmp:ignore-filesize</code> to ignore the filesize check.</td>
</tr>
<tr>
<td><a href="http://en.wikipedia.org/wiki/Braille_ASCII">BRF</a></td>
<td>W</td>
<td>Braille Ready Format</td>
<td>Uses juxtaposition of 6-dot braille patterns (thus 6x2 dot matrices) to reproduce images, using the BRF ASCII Braille encoding.</td>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/cals/egff.htm">CALS</a></td>
<td>R</td>
<td>Continuous Acquisition and Life-cycle Support Type 1 image</td>
<td>Specified in MIL-R-28002 and MIL-PRF-28002. Standard blueprint archive format as used by the US military to replace microfiche.</td>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/cgm/egff.htm">CGM</a></td>
<td>R</td>
<td>Computer Graphics Metafile</td>
<td>Requires <a href="http://www.agocg.ac.uk/train/cgm/ralcgm.htm">ralcgm</a> to render CGM files.</td>
</tr>
<tr>
<td><a href="http://www.cineon.com/ff_draft.html">CIN</a></td>
<td>RW</td>
<td>Kodak Cineon Image Format</td>
<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>
</tr>
<tr>
<td>CIP</td>
<td>W</td>
<td>Cisco IP phone image format</td>
<td> </td>
</tr>
<tr>
<td>CMYK</td>
<td>RW</td>
<td>Raw cyan, magenta, yellow, and black samples</td>
<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>
</tr>
<tr>
<td>CMYKA</td>
<td>RW</td>
<td>Raw cyan, magenta, yellow, black, and alpha samples</td>
<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>
</tr>
<tr>
<td>CR2</td>
<td>R</td>
<td>Canon Digital Camera Raw Image Format</td>
<td>Requires an explicit image format otherwise the image is interpreted as a TIFF image (e.g. cr2:image.cr2).</td>
</tr>
<tr>
<td>CRW</td>
<td>R</td>
<td>Canon Digital Camera Raw Image Format</td>
<td> </td>
</tr>
<tr>
<td><a href="https://wwwimages2.adobe.com/content/dam/acom/en/products/speedgrade/cc/pdfs/cube-lut-specification-1.0.pdf">CUBE</a></td>
<td>R</td>
<td>Cube Color lookup table converted to a HALD image</td>
<td>Select levels like this: cube:Vibrant.cube[8] for level 8</td>
</tr>
<tr>
<td>CUR</td>
<td>R</td>
<td>Microsoft Cursor Icon</td>
<td> </td>
</tr>
<tr>
<td>CUT</td>
<td>R</td>
<td>DR Halo</td>
<td> </td>
</tr>
<tr>
<td>DCM</td>
<td>R</td>
<td>Digital Imaging and Communications in Medicine (DICOM) image</td>
<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. Use <a href="command-line-options.html#define">-define dcm:rescale=true</a> to enable interpretation of the rescale slope and intercept settings in the file. Use <a href="command-line-options.html#define">-define dcm:window=centerXwidth</a> to override the center and width settings in the file with your own values.</td>
</tr>
<tr>
<td>DCR</td>
<td>R</td>
<td>Kodak Digital Camera Raw Image File</td>
<td> </td>
</tr>
<tr>
<td>DCX</td>
<td>RW</td>
<td>ZSoft IBM PC multi-page Paintbrush image</td>
<td> </td>
</tr>
<tr>
<td><a href="http://en.wikipedia.org/wiki/DirectDraw_Surface">DDS</a></td>
<td>RW</td>
<td>Microsoft Direct Draw Surface</td>
<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>, <code>dds:fast-mipmaps={true,false}</code>, and use <code>dds:mipmaps</code> to set the number of mipmaps (use <code>fromlist</code> to use the image list).</td>
</tr>
<tr>
<td>DIB</td>
<td>RW</td>
<td>Microsoft Windows Device Independent Bitmap</td>
<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>
</tr>
<tr>
<td><a href="http://www.djvu.org/">DJVU</a></td>
<td>R</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="http://www.adobe.com/products/dng/main.html">DNG</a></td>
<td>R</td>
<td>Digital Negative</td>
<td>Requires an explicit image format otherwise the image is interpreted as a TIFF image (e.g. dng:image.dng).</td>
</tr>
<tr>
<td><a href="http://www.graphviz.org">DOT</a></td>
<td>R</td>
<td>Graph Visualization</td>
<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>
</tr>
<tr>
<td><a href="motion-picture.html">DPX</a></td>
<td>RW</td>
<td>SMPTE Digital Moving Picture Exchange 2.0 (SMPTE 268M-2003)</td>
<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>
</tr>
<tr>
<td>EMF</td>
<td>R</td>
<td>Microsoft Enhanced Metafile (32-bit)</td>
<td>Only available under Microsoft Windows. Use <a href="command-line-options.html#size">-size</a> command line option to specify the maximum width and height.</td>
</tr>
<tr>
<td>EPDF</td>
<td>RW</td>
<td>Encapsulated Portable Document Format</td>
<td></td>
</tr>
<tr>
<td>EPI</td>
<td>RW</td>
<td>Adobe Encapsulated PostScript Interchange format</td>
<td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPS</td>
<td>RW</td>
<td>Adobe Encapsulated PostScript</td>
<td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPS2</td>
<td>W</td>
<td>Adobe Level II Encapsulated PostScript</td>
<td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPS3</td>
<td>W</td>
<td>Adobe Level III Encapsulated PostScript</td>
<td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPSF</td>
<td>RW</td>
<td>Adobe Encapsulated PostScript</td>
<td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPSI</td>
<td>RW</td>
<td>Adobe Encapsulated PostScript Interchange format</td>
<td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPT</td>
<td>RW</td>
<td>Adobe Encapsulated PostScript Interchange format with <a href="formats.html#TIFF">TIFF</a> preview</td>
<td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
</tr>
<tr>
<td><a href="http://www.openexr.org">EXR</a></td>
<td>RW</td>
<td>High dynamic-range (HDR) file format developed by Industrial Light & Magic</td>
<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>
</tr>
<tr>
<td>FARBFELD</td>
<td>RW</td>
<td>Farbfeld lossless image format</td>
<td>sRGB 16-bit RGBA lossless image format</td>
</tr>
<tr>
<td>FAX</td>
<td>RW</td>
<td>Group 3 TIFF</td>
<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>
</tr>
<tr>
<td><a href="http://homepage.usask.ca/~ijm451/fig/">FIG</a></td>
<td>R</td>
<td>FIG graphics format</td>
<td>Requires <a href="ftp://ftp.x.org/contrib/applications/drawing_tools/transfig">TransFig</a>.</td>
</tr>
<tr>
<td><a href="http://www.cv.nrao.edu/fits/">FITS</a></td>
<td>RW</td>
<td>Flexible Image Transport System</td>
<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>
</tr>
<tr>
<td>FL32</td>
<td>RW</td>
<td>FilmLight floating point image format</td>
<td></td>
</tr>
<tr>
<td><a href="https://flif.info/">FLIF</a></td>
<td>RW</td>
<td>Free Lossless Image Format</td>
<td></td>
</tr>
<tr>
<td>FPX</td>
<td>RW</td>
<td>FlashPix Format</td>
<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="https://download.imagemagick.org/ImageMagick/download/delegates">FlashPix SDK</a>. Specify the FlashPix viewing parameters with the <a href="command-line-options.html#define">-define fpx:view</a>.</td>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/gif/egff.htm">GIF</a></td>
<td>RW</td>
<td>CompuServe Graphics Interchange Format</td>
<td>8-bit RGB PseudoColor with up to 256 palette entries. 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>
</tr>
<tr>
<td>GPLT</td>
<td>R</td>
<td>Gnuplot plot files</td>
<td>Requires <a href="http://www.gnuplot.info/">gnuplot4.0.tar.Z</a> or later.</td>
</tr>
<tr>
<td>GRAY</td>
<td>RW</td>
<td>Raw gray samples</td>
<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. For signed pixel data, use <code>-define quantum:format=signed</code>.</td>
</tr>
<tr>
<td>GRAYA</td>
<td>RW</td>
<td>Raw gray and alpha samples</td>
<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>
</tr>
<tr>
<td><a href="http://en.wikipedia.org/wiki/RGBE_image_format">HDR</a></td>
<td>RW</td>
<td>Radiance RGBE image format</td>
<td> </td>
</tr>
<tr>
<td><a href="http://en.wikipedia.org/wiki/RGBE_image_format">HDR</a></td>
<td>RW</td>
<td>Radiance RGBE image format</td>
<td> </td>
</tr>
<tr>
<td><a href="https://en.wikipedia.org/wiki/High_Efficiency_Image_File_Format">HEIC</a></td>
<td>R</td>
<td>Apple High efficiency Image Format</td>
<td>HEIC requires the <a href="https://github.com/strukturag/libheif">libheif</a> delegate library.</td>
</tr>
<tr>
<td>HPGL</td>
<td>R</td>
<td>HP-GL plotter language</td>
<td>Requires <a href="http://ftp.gnu.org/gnu/hp2xx">hp2xx-3.4.4.tar.gz</a></td>
</tr>
<tr>
<td>HRZ</td>
<td>RW</td>
<td>Slow Scane TeleVision</td>
<td> </td>
</tr>
<tr>
<td>HTML</td>
<td>RW</td>
<td>Hypertext Markup Language with a client-side image map</td>
<td>Also known as <code>HTM</code>. Requires <a href="http://user.it.uu.se/%7Ejan/html2ps.html">html2ps</a> to read.</td>
</tr>
<tr>
<td>ICO</td>
<td>R</td>
<td>Microsoft icon</td>
<td>Also known as <code>ICON</code>.</td>
</tr>
<tr>
<td>INFO</td>
<td>W</td>
<td>Format and characteristics of the image</td>
<td></td>
</tr>
<tr>
<td><a href="https://www.iso.org/obp/ui/#iso:std:iso:tr:11548:-1">ISOBRL</a></td>
<td>W</td>
<td>ISO/TR 11548-1 BRaiLle</td>
<td>Uses juxtaposition of 8-dot braille patterns (thus 8x2 dot matrices) to reproduce images, using the ISO/TR 11548-1 Braille encoding.</td>
</tr>
<tr>
<td><a href="https://www.iso.org/obp/ui/#iso:std:iso:tr:11548:-1">ISOBRL6</a></td>
<td>W</td>
<td>ISO/TR 11548-1 BRaiLle 6 dots</td>
<td>Uses juxtaposition of 6-dot braille patterns (thus 6x2 dot matrices) to reproduce images, using the ISO/TR 11548-1 Braille encoding.</td>
</tr>
<tr>
<td>JBIG</td>
<td>RW</td>
<td>Joint Bi-level Image experts Group file interchange format</td>
<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>
</tr>
<tr>
<td><a href="http://www.libmng.com/">JNG</a></td>
<td>RW</td>
<td>Multiple-image Network Graphics</td>
<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>
</tr>
<tr>
<td><a href="http://www.openjpeg.org/">JP2</a></td>
<td>RW</td>
<td>JPEG-2000 JP2 File Format Syntax</td>
<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>
</tr>
<tr>
<td><a href="http://www.openjpeg.org/">JPT</a></td>
<td>RW</td>
<td>JPEG-2000 Code Stream Syntax</td>
<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>
</tr>
<tr>
<td><a href="http://www.openjpeg.org/">J2C</a></td>
<td>RW</td>
<td>JPEG-2000 Code Stream Syntax</td>
<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>
</tr>
<tr>
<td><a href="http://www.openjpeg.org/">J2K</a></td>
<td>RW</td>
<td>JPEG-2000 Code Stream Syntax</td>
<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>
</tr>
<tr>
<td><a href="http://www.jpeg.org/">JPEG</a></td>
<td>RW</td>
<td>Joint Photographic Experts Group JFIF format</td>
<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>. These values are multiplied by <a href="command-line-options.html#quality">-quality</a> argument divided by 100.0. 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>
</tr>
<tr>
<td><a href="https://en.wikipedia.org/wiki/JPEG_XR">JXR</a></td>
<td>RW</td>
<td>JPEG extended range</td>
<td>Requires the <a href="https://jxrlib.codeplex.com/">jxrlib</a> delegate library. Put the JxrDecApp and JxrEncApp applications in your execution path. </td>
</tr>
<tr>
<td><a href="http://www.json.org">JSON</a></td>
<td>W</td>
<td>JavaScript Object Notation, a lightweight data-interchange format</td>
<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>. Specify the JSON model schema version with <a href="command-line-options.html#define">-define json:version</a>. The current version is 1.0. Any version less than 1.0, returns the original JSON output which included misspelled labels.</td>
</tr>
<tr>
<td><a href="https://jpeg.org/jpegxl/index.html">JXL</a></td>
<td>RW</td>
<td><a href="https://arxiv.org/ftp/arxiv/papers/1908/1908.03565.pdf">JPEG XL image coding system</a></td>
<td>Requires the <a href="https://github.com/google/brunsli">brunsli</a> delegate library.</td>
</tr>
<tr>
<td>KERNEL</td>
<td>W</td>
<td>Morphology kernel format</td>
<td>format suitable for a morphology kernel</td>
</tr>
<tr>
<td>MAN</td>
<td>R</td>
<td>Unix reference manual pages</td>
<td>Requires that GNU groff and Ghostcript are installed.</td>
</tr>
<tr>
<td>MAT</td>
<td>R</td>
<td>MATLAB image format</td>
<td> </td>
</tr>
<tr>
<td><a href="miff.html">MIFF</a></td>
<td>RW</td>
<td>Magick image file format</td>
<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>
</tr>
<tr>
<td>MONO</td>
<td>RW</td>
<td>Bi-level bitmap in least-significant-byte first order</td>
<td> </td>
</tr>
<tr>
<td><a href="http://www.libpng.org/pub/mng/">MNG</a></td>
<td>RW</td>
<td>Multiple-image Network Graphics</td>
<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>
</tr>
<tr>
<td><a href="http://www.ffmpeg.org/">M2V</a></td>
<td>RW</td>
<td>Motion Picture Experts Group file interchange format (version 2)</td>
<td>Requires <a href="http://www.ffmpeg.org/download.html">ffmpeg</a>.</td>
</tr>
<tr>
<td><a href="http://www.ffmpeg.org/">MPEG</a></td>
<td>RW</td>
<td>Motion Picture Experts Group file interchange format (version 1)</td>
<td>Requires <a href="http://www.ffmpeg.org/download.html">ffmpeg</a>.</td>
</tr>
<tr>
<td>MPC</td>
<td>RW</td>
<td>Magick Persistent Cache image file format</td>
<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>
</tr>
<tr>
<td>MPR</td>
<td>RW</td>
<td>Magick Persistent Registry</td>
<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:
<pre class="highlight"><code>convert \( -size 15x15 canvas:black canvas:white -append \) \
\( +clone -flip \) +append -write mpr:checkers +delete \
-size 240x240 tile:mpr:checkers board.png
</code></pre></td>
</tr>
<tr>
<td>MRW</td>
<td>R</td>
<td>Sony (Minolta) Raw Image File</td>
<td>Set <code>-define dng:use-camera-wb=true</code> to use the RAW-embedded color profile for Sony cameras.</td>
</tr>
<tr>
<td>MSL</td>
<td>RW</td>
<td>Magick Scripting Language</td>
<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>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/mtv/egff.htm">MTV</a></td>
<td>RW</td>
<td>MTV Raytracing image format</td>
<td> </td>
</tr>
<tr>
<td><a href="magick-vector-graphics.html">MVG</a></td>
<td>RW</td>
<td>Magick Vector Graphics.</td>
<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>
</tr>
<tr>
<td>NEF</td>
<td>R</td>
<td>Nikon Digital SLR Camera Raw Image File</td>
<td> </td>
</tr>
<tr>
<td>ORF</td>
<td>R</td>
<td>Olympus Digital Camera Raw Image File</td>
<td> </td>
</tr>
<tr>
<td><a href="https://www.freedesktop.org/wiki/Specifications/OpenRaster/">ORA</a></td>
<td>R</td>
<td>open exchange format for layered raster based graphics</td>
<td> </td>
</tr>
<tr>
<td>OTB</td>
<td>RW</td>
<td>On-the-air Bitmap</td>
<td> </td>
</tr>
<tr>
<td>P7</td>
<td>RW</td>
<td>Xv's Visual Schnauzer thumbnail format</td>
<td> </td>
</tr>
<tr>
<td>PALM</td>
<td>RW</td>
<td>Palm pixmap</td>
<td> </td>
</tr>
<tr>
<td><a href="http://netpbm.sourceforge.net/doc/pam.html">PAM</a></td>
<td>W</td>
<td>Common 2-dimensional bitmap format</td>
<td> </td>
</tr>
<tr>
<td>CLIPBOARD</td>
<td>RW</td>
<td>Windows Clipboard</td>
<td>Only available under Microsoft Windows.</td>
</tr>
<tr>
<td><a href="http://netpbm.sourceforge.net/doc/pbm.html">PBM</a></td>
<td>RW</td>
<td>Portable bitmap format (black and white)</td>
<td> </td>
</tr>
<tr>
<td>PCD</td>
<td>RW</td>
<td>Photo CD</td>
<td>The maximum resolution written is 768x512 pixels since larger images require huffman compression (which is not supported). Use <a href="command-line-options.html#bordercolor">-bordercolor</a> to specify the border color (e.g. <code>-bordercolor black</code>).</td>
</tr>
<tr>
<td>PCDS</td>
<td>RW</td>
<td>Photo CD</td>
<td>Decode with the sRGB color tables.</td>
</tr>
<tr>
<td>PCL</td>
<td>W</td>
<td>HP Page Control Language</td>
<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>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/pcx/egff.htm">PCX</a></td>
<td>RW</td>
<td>ZSoft IBM PC Paintbrush file</td>
<td> </td>
</tr>
<tr>
<td>PDB</td>
<td>RW</td>
<td>Palm Database ImageViewer Format</td>
<td> </td>
</tr>
<tr>
<td>PDF</td>
<td>RW</td>
<td>Portable Document Format</td>
<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>. To set the page direction preferences to right-to-left, try <code>-define pdf:page-direction=right-to-left</code>. Use <a href="command-line-options.html#alpha">-alpha remove </a> to remove transparency. When writing to a PDF, thumbnails are included by default. To skip generating thumbnails, <code>-define pdf:thumbnail=false</code>. To enable interpolation when rendering, use <code>-define pdf:interpolate=true</code>.</td>
</tr>
<tr>
<td>PEF</td>
<td>R</td>
<td>Pentax Electronic File</td>
<td>Requires an explicit image format otherwise the image is interpreted as a TIFF image (e.g. pef:image.pef).</td>
</tr>
<tr>
<td>PES</td>
<td>R</td>
<td>Embrid Embroidery Format</td>
<td> </td>
</tr>
<tr>
<td>PFA</td>
<td>R</td>
<td>Postscript Type 1 font (ASCII)</td>
<td>Opening as file returns a preview image.</td>
</tr>
<tr>
<td>PFB</td>
<td>R</td>
<td>Postscript Type 1 font (binary)</td>
<td>Opening as file returns a preview image.</td>
</tr>
<tr>
<td><a href="http://netpbm.sourceforge.net/doc/pfm.html">PFM</a></td>
<td>RW</td>
<td>Portable float map format</td>
<td> </td>
</tr>
<tr>
<td><a href="http://netpbm.sourceforge.net/doc/pgm.html">PGM</a></td>
<td>RW</td>
<td>Portable graymap format (gray scale)</td>
<td> </td>
</tr>
<tr>
<td>PICON</td>
<td>RW</td>
<td>Personal Icon</td>
<td> </td>
</tr>
<tr>
<td>PICT</td>
<td>RW</td>
<td>Apple Macintosh QuickDraw/PICT file</td>
<td> </td>
</tr>
<tr>
<td>PIX</td>
<td>R</td>
<td>Alias/Wavefront RLE image format</td>
<td> </td>
</tr>
<tr>
<td><a href="http://www.libpng.org/pub/png/">PNG</a></td>
<td>RW</td>
<td>Portable Network Graphics</td>
<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>
</tr>
<tr>
<td><a href="http://www.libpng.org/pub/png/">PNG8</a></td>
<td>RW</td>
<td>Portable Network Graphics</td>
<td>8-bit indexed with optional binary transparency</td>
</tr>
<tr>
<td><a href="http://www.libpng.org/pub/png/">PNG00</a></td>
<td>RW</td>
<td>Portable Network Graphics</td>
<td>PNG inheriting subformat from original if possible</td>
</tr>
<tr>
<td><a href="http://www.libpng.org/pub/png/">PNG24</a></td>
<td>RW</td>
<td>Portable Network Graphics</td>
<td>opaque or binary transparent 24-bit RGB</td>
</tr>
<tr>
<td><a href="http://www.libpng.org/pub/png/">PNG32</a></td>
<td>RW</td>
<td>Portable Network Graphics</td>
<td>opaque or transparent 32-bit RGBA</td>
</tr>
<tr>
<td><a href="http://www.libpng.org/pub/png/">PNG48</a></td>
<td>RW</td>
<td>Portable Network Graphics</td>
<td>opaque or binary transparent 48-bit RGB</td>
</tr>
<tr>
<td><a href="http://www.libpng.org/pub/png/">PNG64</a></td>
<td>RW</td>
<td>Portable Network Graphics</td>
<td>opaque or transparent 64-bit RGB</td>
</tr>
<tr>
<td><a href="http://netpbm.sourceforge.net/doc/pnm.html">PNM</a></td>
<td>RW</td>
<td>Portable anymap</td>
<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>
</tr>
<tr>
<td>POCKETMOD</td>
<td>RW</td>
<td>Pocketmod personal organizer format</td>
<td>Example usage: <code>convert -density 300 pages?.pdf pocketmod:organize.pdf</code> </td>
</tr>
<tr>
<td><a href="http://netpbm.sourceforge.net/doc/ppm.html">PPM</a></td>
<td>RW</td>
<td>Portable pixmap format (color)</td>
<td> </td>
</tr>
<tr>
<td>PS</td>
<td>RW</td>
<td>Adobe PostScript file</td>
<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>
</tr>
<tr>
<td>PS2</td>
<td>RW</td>
<td>Adobe Level II PostScript file</td>
<td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>PS3</td>
<td>RW</td>
<td>Adobe Level III PostScript file</td>
<td>Requires <a href="http://www.cs.wisc.edu/%7Eghost">Ghostscript</a> to read.</td>
</tr>
<tr>
<td><a href="http://www.adobe.com/devnet-apps/photoshop/fileformatashtml/">PSB</a></td>
<td>RW</td>
<td>Adobe Large Document Format</td>
<td> </td>
</tr>
<tr>
<td><a href="http://www.adobe.com/devnet-apps/photoshop/fileformatashtml/">PSD</a></td>
<td>RW</td>
<td>Adobe Photoshop bitmap file</td>
<td>Use <a href="command-line-options.html#define">-define psd:alpha-unblend=off</a> to disable alpha blenning in the merged image. Use <a href="command-line-options.html#define">-define psd:additional-info=all|selective</a> to transfer additional information from the input PSD file to output PSD file. The 'selective' option will preserve all additional information that is not related to the geometry of the image. The 'all' option should only be used when the geometry of the image has not been changed. This option is helpful when transferring non-simple layers, such as adjustment layers from the input PSD file to the output PSD file. This define is available as of Imagemagick version 6.9.5-8. Use <a href="command-line-options.html#define">-define psd:preserve-opacity-mask=true</a> to preserve the opacity mask of a layer and add it back to the layer when the image is saved.</td>
</tr>
<tr>
<td>PTIF</td>
<td>RW</td>
<td>Pyramid encoded <a href="formats.html#TIFF">TIFF</a></td>
<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>
</tr>
<tr>
<td><a href="http://www.photoworks.com/">PWP</a></td>
<td>R</td>
<td>Seattle File Works multi-image file</td>
<td> </td>
</tr>
<tr>
<td>RAD</td>
<td>R</td>
<td>Radiance image file</td>
<td>Requires that <i>ra_ppm</i> from the Radiance software package be installed.</td>
</tr>
<tr>
<td>RAF</td>
<td>R</td>
<td>Fuji CCD-RAW Graphic File</td>
<td> </td>
</tr>
<tr>
<td>RGB</td>
<td>RW</td>
<td>Raw red, green, and blue samples</td>
<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>
</tr>
<tr>
<td>RGB565</td>
<td>R</td>
<td>Raw red, green, blue pixels in the 5-6-5 format</td>
<td>Use <a href="command-line-options.html#size">-size</a> to specify the image width and height.</td>
</tr>
<tr>
<td>RGBA</td>
<td>RW</td>
<td>Raw red, green, blue, and alpha samples</td>
<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>
</tr>
<tr>
<td>RGF</td>
<td>RW</td>
<td>LEGO Mindstorms EV3 Robot Graphics File</td>
<td> </td>
</tr>
<tr>
<td>RLA</td>
<td>R</td>
<td>Alias/Wavefront image file</td>
<td> </td>
</tr>
<tr>
<td>RLE</td>
<td>R</td>
<td>Utah Run length encoded image file</td>
<td> </td>
</tr>
<tr>
<td><a href="http://www.oreilly.com/www/centers/gff/formats/scitex/">SCT</a></td>
<td>R</td>
<td>Scitex Continuous Tone Picture</td>
<td> </td>
</tr>
<tr>
<td><a href="http://www.photoworks.com/">SFW</a></td>
<td>R</td>
<td>Seattle File Works image</td>
<td> </td>
</tr>
<tr>
<td>SGI</td>
<td>RW</td>
<td>Irix RGB image</td>
<td> </td>
</tr>
<tr>
<td>SHTML</td>
<td>W</td>
<td>Hypertext Markup Language client-side image map</td>
<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>
</tr>
<tr>
<td>SID, MrSID</td>
<td>R</td>
<td>Multiresolution seamless image</td>
<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>
</tr>
<tr>
<td>SPARSE-COLOR</td>
<td>W</td>
<td>Raw text file</td>
<td>Format compatible with the <a href="command-line-options.html#sparse-color">-sparse-color</a> option. Lists only non-fully-transparent pixels.</td>
</tr>
<tr>
<td>SUN</td>
<td>RW</td>
<td>SUN Rasterfile</td>
<td> </td>
</tr>
<tr>
<td><a href="http://www.w3.org/Graphics/SVG">SVG</a></td>
<td>RW</td>
<td>Scalable Vector Graphics</td>
<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 96 DPI. Use <a href="command-line-options.html#size">-size</a> command line option to specify the maximum width and height. If you want to render a very large SVG and you trust the source, enable this option: <code>-define svg:xml-parse-huge=true</code>.</td>
</tr>
<tr>
<td>TEXT</td>
<td>R</td>
<td>text file</td>
<td>Requires an explicit format specifier to read, e.g. text:README.txt.</td>
</tr>
<tr>
<td>TGA</td>
<td>RW</td>
<td>Truevision Targa image</td>
<td>Also known as formats <code>ICB</code>, <code>VDA</code>, and <code>VST</code>.</td>
</tr>
<tr>
<td><a href="http://www.libtiff.org/">TIFF</a></td>
<td>RW</td>
<td>Tagged Image File Format</td>
<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 endianness 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>. To preserve compression of the source image, use: <code>-define tiff:preserve-compression=true</code>.</td>
</tr>
<tr>
<td>TIM</td>
<td>R</td>
<td>PSX TIM file</td>
<td> </td>
</tr>
<tr>
<td><a href="http://www.freetype.org/">TTF</a></td>
<td>R</td>
<td>TrueType font file</td>
<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>
</tr>
<tr>
<td>TXT</td>
<td>RW</td>
<td>Raw text file</td>
<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>
</tr>
<tr>
<td><a href="http://www.unicode.org/charts/PDF/U2800.pdf">UBRL</a></td>
<td>W</td>
<td>Unicode BRaiLle</td>
<td>Uses juxtaposition of 8-dot braille patterns (thus 8x2 dot matrices) to reproduce images, using the Unicode Braille encoding.</td>
</tr>
<tr>
<td><a href="http://www.unicode.org/charts/PDF/U2800.pdf">UBRL6</a></td>
<td>W</td>
<td>Unicode BRaiLle 6 dots</td>
<td>Uses juxtaposition of 6-dot braille patterns (thus 6x2 dot matrices) to reproduce images, using the Unicode Braille encoding.</td>
</tr>
<tr>
<td>UIL</td>
<td>W</td>
<td>X-Motif UIL table</td>
<td> </td>
</tr>
<tr>
<td>UYVY</td>
<td>RW</td>
<td>Interleaved YUV raw image</td>
<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>
</tr>
<tr>
<td>VICAR</td>
<td>RW</td>
<td>VICAR rasterfile format</td>
<td> </td>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/viff/egff.htm">VIFF</a></td>
<td>RW</td>
<td>Khoros Visualization Image File Format</td>
<td> </td>
</tr>
<tr>
<td><a href="http://www.openmobilealliance.org/Technical/wapindex.aspx">WBMP</a></td>
<td>RW</td>
<td>Wireless bitmap</td>
<td>Support for uncompressed monochrome only.</td>
</tr>
<tr>
<td><a href="https://en.wikipedia.org/wiki/JPEG_XR">WDP</a></td>
<td>RW</td>
<td>JPEG extended range</td>
<td>Requires the <a href="https://jxrlib.codeplex.com/">jxrlib</a> delegate library. Put the JxrDecApp and JxrEncApp applications in your execution path. </td>
</tr>
<tr>
<td><a href="http://en.wikipedia.org/wiki/WebP">WEBP</a></td>
<td>RW</td>
<td>Weppy image format</td>
<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>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/wmf/egff.htm">WMF</a></td>
<td>R</td>
<td>Windows Metafile</td>
<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>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/wpg/egff.htm">WPG</a></td>
<td>R</td>
<td>Word Perfect Graphics File</td>
<td> </td>
</tr>
<tr>
<td>X</td>
<td>RW</td>
<td>display or import an image to or from an X11 server</td>
<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>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/xbm/egff.htm">XBM</a></td>
<td>RW</td>
<td>X Windows system bitmap, black and white only</td>
<td>Used by the X Windows System to store monochrome icons.</td>
</tr>
<tr>
<td>XCF</td>
<td>R</td>
<td>GIMP image</td>
<td> </td>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/xpm/egff.htm">XPM</a></td>
<td>RW</td>
<td>X Windows system pixmap</td>
<td>Also known as <code>PM</code>. Used by the X Windows System to store color icons.</td>
</tr>
<tr>
<td><a href="http://www.fileformat.info/format/xwd/egff.htm">XWD</a></td>
<td>RW</td>
<td>X Windows system window dump</td>
<td>Used by the X Windows System to save/display screen dumps.</td>
</tr>
<tr>
<td>X3F</td>
<td>R</td>
<td>Sigma Camera RAW Picture File</td>
<td> </td>
</tr>
<tr>
<td>YCbCr</td>
<td>RW</td>
<td>Raw Y, Cb, and Cr samples</td>
<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>
</tr>
<tr>
<td>YCbCrA</td>
<td>RW</td>
<td>Raw Y, Cb, Cr, and alpha samples</td>
<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>
</tr>
<tr>
<td>YUV</td>
<td>RW</td>
<td>CCIR 601 4:1:1</td>
<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>
</tr>
</tbody>
</table>
</div>
<br/>
<h2><a class="anchor" id="pseudo"></a>Pseudo-image Formats</h2>
<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>
<div class="pre-scrollable table-responsive" style="font-size:87.5% !important;">
<table class="table table-sm table-hover">
<tr>
<th>Tag</th>
<th>Mode</th>
<th>Description</th>
<th>Notes</th>
</tr>
<tr>
<td>ASHLAR</td>
<td>W</td>
<td>Image sequence laid out in continuous irregular courses</td>
<td>By default, a reasonable canvas size and border width is determined relative to the image collection you provide. You can explicitedly set the canvas size and border width by appending to the filename, e.g. <code>ashlar:canvas.png[1024x768+4+4]</code>. By default, alignment is along the left edge. Use <code>-define ashlar:best-fit=true</code> to align on both the left and right edges. You can label the image tiles with, for example, <code>-label %f</code>.</td>
</tr>
<tr>
<td>CANVAS</td>
<td>R</td>
<td>Canvas image of specified color</td>
<td>Useful to create solid color <var>canvas</var> images. 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. Example canvas color specifications
include <code>canvas:red</code> and <code>canvas:#FF0000</code>.<br/>
If no color is specified a '<code>white</code>' canvas image is
generated. If no <a href="command-line-options.html#size" >-size</a> is specified
a single pixel image of the specified color is generated.</td>
</tr>
<tr>
<td>CAPTION</td>
<td>R</td>
<td>Image caption</td>
<td> </td>
</tr>
<tr>
<td>CLIP</td>
<td>RW</td>
<td>Clip path of image</td>
<td> </td>
</tr>
<tr>
<td>CLIPBOARD</td>
<td>RW</td>
<td>Windows Clipboard</td>
<td>Only available under Microsoft Windows.</td>
</tr>
<tr>
<td>FRACTAL</td>
<td>R</td>
<td>Plasma fractal image</td>
<td> </td>
</tr>
<tr>
<td>GRADIENT</td>
<td>R</td>
<td>Gradual passing from one shade to another</td>
<td>Returns a rendered linear top-to-bottom <a href="gradient.html">gradient image</a> using the specified image size.</td>
</tr>
<tr>
<td>HALD</td>
<td>R</td>
<td>Identity Hald CLUT Image</td>
<td>Select levels like this: hald:[8] for level 8.</td>
</tr>
<tr>
<td>HISTOGRAM</td>
<td>W</td>
<td>Histogram of the image</td>
<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>
</tr>
<tr>
<td>INLINE</td>
<td>RW</td>
<td>Base64-encoded inline image</td>
<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>
</tr>
<tr>
<td>LABEL</td>
<td>R</td>
<td>Text image format</td>
<td>Specify the desired text as the filename (e.g. <code>label:"This a label"</code>).</td>
</tr>
<tr>
<td>MAP</td>
<td>RW</td>
<td>Colormap intensities and indices</td>
<td>Set -depth to set the sample size of the intensities; indices are 16-bit if colors > 256.</td>
</tr>
<tr>
<td>MASK</td>
<td>RW</td>
<td>Image mask</td>
<td> </td>
</tr>
<tr>
<td>MATTE</td>
<td>W</td>
<td>MATTE format</td>
<td>Write only.</td>
</tr>
<tr>
<td>NULL</td>
<td>RW</td>
<td>NULL image</td>
<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>
</tr>
<tr>
<td>PANGO</td>
<td>R</td>
<td>Image caption</td>
<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>, <code>-define pango:wrap=</code><var>word/char/word-char</var> and <code>-define pango:align=</code><var>left/center/right</var>.</td>
</tr>
<tr>
<td>PLASMA</td>
<td>R</td>
<td>Plasma fractal image</td>
<td> </td>
</tr>
<tr>
<td>PREVIEW</td>
<td>W</td>
<td>Show a preview an image enhancement, effect, or f/x</td>
<td>Creates a preview montage of images prepared over a parametric range in order to assist with parameter selection. Specify the desired
preview type via the -preview option).</td>
</tr>
<tr>
<td>PRINT</td>
<td>W</td>
<td>Send image to your computer printer</td>
<td>Unix users may set the PRINTER (for 'lpr') or LPDEST (for 'lp') environment variables to select the desired printer.</td>
</tr>
<tr>
<td>SCAN</td>
<td>R</td>
<td>Import image from a scanner device</td>
<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>
</tr>
<tr>
<td>RADIAL_GRADIENT</td>
<td>R</td>
<td>Gradual radial passing from one shade to another</td>
<td>Returns a rendered radial top-to-bottom <a href="gradient.html">gradient image</a> using the specified image size.</td>
</tr>
<tr>
<td>SCANX</td>
<td>R</td>
<td>Import image from the default scanner device</td>
<td> </td>
</tr>
<tr>
<td>SCREENSHOT</td>
<td>R</td>
<td>an image that shows the contents of a computer display</td>
<td> </td>
</tr>
<tr>
<td>STEGANO</td>
<td>R</td>
<td>Steganographic image</td>
<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>
</tr>
<tr>
<td>TILE</td>
<td>R</td>
<td>Tiled image</td>
<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. Tiles are composited on an image background and therefore is responsive to the <a href="command-line-options.html#compose">-compose</a> option. The image is specified similar to
<code>TILE:image.miff</code>.</td>
</tr>
<tr>
<td>UNIQUE</td>
<td>W</td>
<td>Write only unique pixels to the image file.</td>
<td> </td>
</tr>
<tr>
<td>VID</td>
<td>RW</td>
<td>Visual Image Directory</td>
<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>
</tr>
<tr>
<td>WIN</td>
<td>RW</td>
<td>Select image from or display image to your computer screen</td>
<td>Only supported under Microsoft Windows.</td>
</tr>
<tr>
<td>X</td>
<td>RW</td>
<td>Select image from or display image to your X server screen</td>
<td>Also see the <a href="import.html">import</a> and <a href="display.html">display</a>
programs.</td>
</tr>
<tr>
<td>XC</td>
<td>R</td>
<td>Canvas image of specified color</td>
<td>An backward compatible alias for the '<code>canvas:</code>'
psuedo-file format, used to create a solid color <var>canvas</var> image.
</td>
</tr>
</table>
</div>
<br/>
<h2><a class="anchor" id="builtin-images"></a>Built-in Images</h2>
<p>ImageMagick includes a number of built-in (embedded) images which may be referenced as if they were an image file. The <code>convert:</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>
<div class="pre-scrollable table-responsive" style="font-size:87.5% !important;">
<table class="table table-sm table-hover">
<tr>
<th>Tag</th>
<th>Mode</th>
<th>Description</th>
<th>Notes</th>
</tr>
<tr>
<td>GRANITE</td>
<td>R</td>
<td>128x128 granite texture pattern</td>
<td><img src="../images/granite.png" width="64" height="64" alt="GRANITE"/></td>
</tr>
<tr>
<td><a href="../images/logo.png">LOGO</a></td>
<td>R</td>
<td>ImageMagick Logo, 640x480</td>
<td><img src="../images/logo.jpg" width="123" height="118" alt="Logo"/></td>
</tr>
<tr>
<td> NETSCAPE</td>
<td>R</td>
<td>image using colors in Netscape 216 (6x6x6 ) color cube, 216x144</td>
<td>Most commonly used with the <a href="convert.html">convert</a> and <a href="mogrify.html">magick mogrify</a> programs with the <a href="command-line-options.html#map">-map</a> option to create <var>web safe</var> images.</td>
</tr>
<tr>
<td>ROSE</td>
<td>R</td>
<td>Picture of a rose, 70x46</td>
<td><img src="../images/rose.png" width="70" height="46" alt="ROSE"/></td>
</tr>
<tr>
<td><a href="../images/wizard.png">WIZARD</a></td>
<td>R</td>
<td>ImageMagick Wizard, 480x640</td>
<td><img src="../images/wizard.jpg" width="125" height="167" alt="Logo"/></td>
</tr>
</table></div>
<br/>
<h2><a class="anchor" id="builtin-patterns"></a>Built-in Patterns</h2>
<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>
<div class="pre-scrollable table-responsive" style="font-size:87.5% !important;">
<table class="table table-sm table-hover">
<tr>
<th>Tag</th>
<th>Mode</th>
<th>Description</th>
<th>Notes</th>
</tr>
<tr>
<td>BRICKS</td>
<td>R</td>
<td>brick pattern, 16x16</td>
<td><img src="../images/patterns/bricks.png" width="100" height="26" alt="BRICKS" /></td>
</tr>
<tr>
<td>CHECKERBOARD</td>
<td>R</td>
<td>checkerboard pattern, 30x30</td>
<td><img src="../images/patterns/checkerboard.png" width="100" height="26" alt="CHECKERBOARD" /></td>
</tr>
<tr>
<td>CIRCLES</td>
<td>R</td>
<td>circles pattern, 16x16</td>
<td><img src="../images/patterns/circles.png" width="100" height="26" alt="CIRCLES"/></td>
</tr>
<tr>
<td>CROSSHATCH</td>
<td>R</td>
<td>crosshatch pattern, 8x4</td>
<td><img src="../images/patterns/crosshatch.png" width="100" height="26" alt="CROSSHATCH" /></td>
</tr>
<tr>
<td>CROSSHATCH30</td>
<td>R</td>
<td>crosshatch pattern with lines at 30 degrees, 8x4</td>
<td><img src="../images/patterns/crosshatch30.png" width="100" height="26" alt="CROSSHATCH30" /></td>
</tr>
<tr>
<td>CROSSHATCH45</td>
<td>R</td>
<td>crosshatch pattern with lines at 45 degrees, 8x4</td>
<td><img src="../images/patterns/crosshatch45.png" width="100" height="26" alt="CROSSHATCH45" /></td>
</tr>
<tr>
<td>FISHSCALES</td>
<td>R</td>
<td>fish scales pattern, 16x8</td>
<td><img src="../images/patterns/fishscales.png" width="100" height="26" alt="FISHSCALES" /></td>
</tr>
<tr>
<td>GRAY0</td>
<td>R</td>
<td>0% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray0.png" width="100" height="32" alt="GRAY0" /></td>
</tr>
<tr>
<td>GRAY5</td>
<td>R</td>
<td>5% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray5.png" width="100" height="32" alt="GRAY5" /></td>
</tr>
<tr>
<td>GRAY10</td>
<td>R</td>
<td>10% intensity gray, 32x32</td>
<td> <img src="../images/patterns/gray10.png" width="100" height="32" alt="GRAY10" /></td>
</tr>
<tr>
<td>GRAY15</td>
<td>R</td>
<td>15% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray15.png" width="100" height="32" alt="GRAY15" /></td>
</tr>
<tr>
<td>GRAY20</td>
<td>R</td>
<td>20% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray20.png" width="100" height="32" alt="GRAY20" /></td>
</tr>
<tr>
<td>GRAY25</td>
<td>R</td>
<td>25% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray25.png" width="100" height="32" alt="GRAY25" /></td>
</tr>
<tr>
<td>GRAY30</td>
<td>R</td>
<td>30% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray30.png" width="100" height="32" alt="GRAY30" /></td>
</tr>
<tr>
<td>GRAY35</td>
<td>R</td>
<td>35% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray35.png" width="100" height="32" alt="GRAY35" /></td>
</tr>
<tr>
<td>GRAY40</td>
<td>R</td>
<td>40% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray40.png" width="100" height="32" alt="GRAY40" /></td>
</tr>
<tr>
<td>GRAY45</td>
<td>R</td>
<td>45% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray45.png" width="100" height="32" alt="GRAY45" /></td>
</tr>
<tr>
<td>GRAY50</td>
<td>R</td>
<td>50% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray50.png" width="100" height="32" alt="GRAY50" /></td>
</tr>
<tr>
<td>GRAY55</td>
<td>R</td>
<td>55% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray55.png" width="100" height="32" alt="GRAY55" /></td>
</tr>
<tr>
<td>GRAY60</td>
<td>R</td>
<td>60% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray60.png" width="100" height="32" alt="GRAY60" /></td>
</tr>
<tr>
<td>GRAY65</td>
<td>R</td>
<td>65% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray65.png" width="100" height="32" alt="GRAY65" /></td>
</tr>
<tr>
<td>GRAY70</td>
<td>R</td>
<td>70% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray70.png" width="100" height="32" alt="GRAY70" /></td>
</tr>
<tr>
<td>GRAY75</td>
<td>R</td>
<td>75% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray75.png" width="100" height="32" alt="GRAY75" /></td>
</tr>
<tr>
<td>GRAY80</td>
<td>R</td>
<td>80% intensity gray, 32x32</td>
<td> <img src="../images/patterns/gray80.png" width="100" height="32" alt="GRAY80" /></td>
</tr>
<tr>
<td>GRAY85</td>
<td>R</td>
<td>85% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray85.png" width="100" height="32" alt="GRAY85" /></td>
</tr>
<tr>
<td>GRAY90</td>
<td>R</td>
<td>90% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray90.png" width="100" height="32" alt="GRAY90" /></td>
</tr>
<tr>
<td>GRAY95</td>
<td>R</td>
<td>95% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray95.png" width="100" height="32" alt="GRAY95" /></td>
</tr>
<tr>
<td>GRAY100</td>
<td>R</td>
<td>100% intensity gray, 32x32</td>
<td><img src="../images/patterns/gray100.png" width="100" height="32" alt="GRAY100" /></td>
</tr>
<tr>
<td>HEXAGONS</td>
<td>R</td>
<td>hexagon pattern, 30x18</td>
<td><img src="../images/patterns/hexagons.png" width="100" height="26" alt="HEXAGONS" /></td>
</tr>
<tr>
<td>HORIZONTAL</td>
<td>R</td>
<td>horizontal line pattern, 8x4</td>
<td><img src="../images/patterns/horizontal.png" width="100" height="26" alt="HORIZONTAL" /></td>
</tr>
<tr>
<td>HORIZONTAL2</td>
<td>R</td>
<td>horizontal line pattern, 8x8</td>
<td><img src="../images/patterns/horizontal2.png" width="100" height="26" alt="HORIZONTAL2" /></td>
</tr>
<tr>
<td>HORIZONTAL3</td>
<td>R</td>
<td>horizontal line pattern, 9x9</td>
<td><img src="../images/patterns/horizontal3.png" width="100" height="26" alt="HORIZONTAL3" /></td>
</tr>
<tr>
<td>HORIZONTALSAW</td>
<td>R</td>
<td>horizontal saw-tooth pattern, 16x8</td>
<td><img src="../images/patterns/horizontalsaw.png" width="100" height="26" alt="HORIZONTALSAW" /></td>
</tr>
<tr>
<td>HS_BDIAGONAL</td>
<td>R</td>
<td>backward diagonal line pattern (45 degrees slope), 8x8</td>
<td><img src="../images/patterns/hs_bdiagonal.png" width="100" height="26" alt="HS_BDIAGONAL" /></td>
</tr>
<tr>
<td>HS_CROSS</td>
<td>R</td>
<td>cross line pattern, 8x8</td>
<td><img src="../images/patterns/hs_cross.png" width="100" height="26" alt="HS_CROSS" /></td>
</tr>
<tr>
<td>HS_DIAGCROSS</td>
<td>R</td>
<td>diagonal line cross pattern (45 degrees slope), 8x8</td>
<td><img src="../images/patterns/hs_diagcross.png" width="100" height="26" alt="HS_DIAGCROSS" /></td>
</tr>
<tr>
<td>HS_FDIAGONAL</td>
<td>R</td>
<td>forward diagonal line pattern (45 degrees slope), 8x8</td>
<td><img src="../images/patterns/hs_fdiagonal.png" width="100" height="26" alt="HS_FDIAGONAL" /></td>
</tr>
<tr>
<td>HS_HORIZONTAL</td>
<td>R</td>
<td>horizontal line pattern, 8x8</td>
<td><img src="../images/patterns/hs_horizontal.png" width="100" height="26" alt="HS_HORIZONTAL" /></td>
</tr>
<tr>
<td>HS_VERTICAL</td>
<td>R</td>
<td>vertical line pattern, 8x8</td>
<td><img src="../images/patterns/hs_vertical.png" width="100" height="26" alt="HS_VERTICAL" /></td>
</tr>
<tr>
<td>LEFT30</td>
<td>R</td>
<td>forward diagonal pattern (30 degrees slope), 8x4</td>
<td><img src="../images/patterns/left30.png" width="100" height="26" alt="LEFT0" /></td>
</tr>
<tr>
<td>LEFT45</td>
<td>R</td>
<td>forward diagonal line pattern (45 degrees slope), 8x8</td>
<td><img src="../images/patterns/left45.png" width="100" height="26" alt="LEFT45" /></td>
</tr>
<tr>
<td>LEFTSHINGLE</td>
<td>R</td>
<td>left shingle pattern, 24x24</td>
<td><img src="../images/patterns/leftshingle.png" width="100" height="26" alt="LEFTSHINGLE" /></td>
</tr>
<tr>
<td>OCTAGONS</td>
<td>R</td>
<td>octagons pattern, 16x16</td>
<td><img src="../images/patterns/octagons.png" width="100" height="26" alt="OCTAGONS" /></td>
</tr>
<tr>
<td>RIGHT30</td>
<td>R</td>
<td>backward diagonal line pattern (30 degrees) 8x4</td>
<td><img src="../images/patterns/right30.png" width="100" height="26" alt="RIGHT30" /></td>
</tr>
<tr>
<td>RIGHT45</td>
<td>R</td>
<td>backward diagonal line pattern (30 degrees), 8x8</td>
<td><img src="../images/patterns/right45.png" width="100" height="26" alt="RIGHT45" /></td>
</tr>
<tr>
<td>RIGHTSHINGLE</td>
<td>R</td>
<td>right shingle pattern, 24x24</td>
<td><img src="../images/patterns/rightshingle.png" width="100" height="26" alt="RIGHTSHINGLE" /></td>
</tr>
<tr>
<td>SMALLFISHSCALES</td>
<td>R</td>
<td>small fish scales pattern, 8x8</td>
<td><img src="../images/patterns/smallfishscales.png" width="100" height="26" alt="SMALLFISHSCALES" /></td>
</tr>
<tr>
<td>VERTICAL</td>
<td>R</td>
<td>vertical line pattern, 8x8</td>
<td><img src="../images/patterns/vertical.png" width="100" height="26" alt="VERTICAL" /></td>
</tr>
<tr>
<td>VERTICAL2</td>
<td>R</td>
<td>vertical line pattern, 8x8</td>
<td><img src="../images/patterns/vertical2.png" width="100" height="26" alt="VERTICAL2" /></td>
</tr>
<tr>
<td>VERTICAL3</td>
<td>R</td>
<td>vertical line pattern, 9x9</td>
<td><img src="../images/patterns/vertical3.png" width="100" height="26" alt="VERTICAL3" /></td>
</tr>
<tr>
<td>VERTICALBRICKS</td>
<td>R</td>
<td>vertical brick pattern, 16x16</td>
<td><img src="../images/patterns/verticalbricks.png" width="100" height="26" alt="VERTICALBRICKS" /></td>
</tr>
<tr>
<td>VERTICALLEFTSHINGLE</td>
<td>R</td>
<td>vertical left shingle pattern, 24x24</td>
<td><img src="../images/patterns/verticalleftshingle.png" width="100" height="26" alt="VERTICALLEFTSHINGLE" /></td>
</tr>
<tr>
<td>VERTICALRIGHTSHINGLE</td>
<td>R</td>
<td>vertical right shingle pattern, 24x24</td>
<td><img src="../images/patterns/verticalrightshingle.png" width="100" height="26" alt="VERTICALRIGHTSHINGLE" /></td>
</tr>
<tr>
<td>VERTICALSAW</td>
<td>R</td>
<td>vertical saw-tooth pattern, 8x16</td>
<td><img src="../images/patterns/verticalsaw.png" width="100" height="26" alt="VERTICALSAW" /></td>
</tr>
</table></div>
<br/>
<h2><a class="anchor" id="embedded"></a>Embedded Image Profiles</h2>
<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>
<div class="pre-scrollable table-responsive" style="font-size:87.5% !important;">
<table class="table table-sm table-hover">
<tbody>
<tr>
<th>Tag</th>
<th>Mode</th>
<th>Description</th>
<th>Notes</th>
</tr>
<tr>
<td>8BIM</td>
<td>RW</td>
<td>Photoshop resource format (binary)</td>
<td> </td>
</tr>
<tr>
<td>8BIMTEXT</td>
<td>RW</td>
<td>Photoshop resource format (ASCII)</td>
<td>An ASCII representation of the 8BIM format.</td>
</tr>
<tr>
<td>APP1</td>
<td>RW</td>
<td>Raw application information</td>
<td> </td>
</tr>
<tr>
<td>APP1JPEG</td>
<td>RW</td>
<td>Raw JPEG binary data</td>
<td>Profile in JPEG wrapper.</td>
</tr>
<tr>
<td>ICC</td>
<td>RW</td>
<td>International Color Consortium color profile</td>
<td>Also known as <code>ICM</code>. To read, use <a href="command-line-options.html#profile">-profile</a> with
<a href="convert.html">convert</a>.</td>
</tr>
<tr>
<td>IPTC</td>
<td>RW</td>
<td>IPTC Newsphoto (binary)</td>
<td>To read, use <a href="command-line-options.html#profile">-profile</a> with <a href="convert.html">convert</a></td>
</tr>
<tr>
<td>IPTCTEXT</td>
<td>RW</td>
<td>IPTC Newsphoto (ASCII)</td>
<td>An ASCII representation of the IPTC format.</td>
</tr>
</tbody>
</table></div>
</div>
</div>
</main><!-- /.container -->
<footer class="magick-footer">
<div class="container">
<p><a href="security-policy.html">Security</a> •
<a href="news.html">News</a>
<a href="formats.html#"><img class="d-inline" id="wand" alt="And Now a Touch of Magick" width="16" height="16" src="../images/wand.ico"/></a>
<a href="links.html">Related</a> •
<a href="sitemap.html">Sitemap</a>
<br/>
<a href="support.html">Sponsor</a> •
<a href="http://pgp.mit.edu/pks/lookup?op=get&search=0x89AB63D48277377A">Public Key</a> •
<a href="https://imagemagick.org/script/contact.php">Contact Us</a>
<br/>
<a href="https://github.com/imagemagick/imagemagick6" target="_blank" rel="noopener" aria-label="GitHub"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 512 499.36" width="2%" height="2%" role="img" focusable="false"><title>GitHub</title><path fill="currentColor" fill-rule="evenodd" d="M256 0C114.64 0 0 114.61 0 256c0 113.09 73.34 209 175.08 242.9 12.8 2.35 17.47-5.56 17.47-12.34 0-6.08-.22-22.18-.35-43.54-71.2 15.49-86.2-34.34-86.2-34.34-11.64-29.57-28.42-37.45-28.42-37.45-23.27-15.84 1.73-15.55 1.73-15.55 25.69 1.81 39.21 26.38 39.21 26.38 22.84 39.12 59.92 27.82 74.5 21.27 2.33-16.54 8.94-27.82 16.25-34.22-56.84-6.43-116.6-28.43-116.6-126.49 0-27.95 10-50.8 26.35-68.69-2.63-6.48-11.42-32.5 2.51-67.75 0 0 21.49-6.88 70.4 26.24a242.65 242.65 0 0 1 128.18 0c48.87-33.13 70.33-26.24 70.33-26.24 14 35.25 5.18 61.27 2.55 67.75 16.41 17.9 26.31 40.75 26.31 68.69 0 98.35-59.85 120-116.88 126.32 9.19 7.9 17.38 23.53 17.38 47.41 0 34.22-.31 61.83-.31 70.23 0 6.85 4.61 14.81 17.6 12.31C438.72 464.97 512 369.08 512 256.02 512 114.62 397.37 0 256 0z"/></svg></a> •
<a href="https://twitter.com/imagemagick" target="_blank" rel="noopener" aria-label="Twitter"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 512 416.32" width="2%" height="2%" role="img" focusable="false"><title>Twitter</title><path fill="currentColor" d="M160.83 416.32c193.2 0 298.92-160.22 298.92-298.92 0-4.51 0-9-.2-13.52A214 214 0 0 0 512 49.38a212.93 212.93 0 0 1-60.44 16.6 105.7 105.7 0 0 0 46.3-58.19 209 209 0 0 1-66.79 25.37 105.09 105.09 0 0 0-181.73 71.91 116.12 116.12 0 0 0 2.66 24c-87.28-4.3-164.73-46.3-216.56-109.82A105.48 105.48 0 0 0 68 159.6a106.27 106.27 0 0 1-47.53-13.11v1.43a105.28 105.28 0 0 0 84.21 103.06 105.67 105.67 0 0 1-47.33 1.84 105.06 105.06 0 0 0 98.14 72.94A210.72 210.72 0 0 1 25 370.84a202.17 202.17 0 0 1-25-1.43 298.85 298.85 0 0 0 160.83 46.92"/></svg></a>
<br/>
<small>© 1999-2021 ImageMagick Studio LLC</small></p>
</div>
</footer>
<!-- Javascript assets -->
<script>window.jQuery || document.write('<script src="assets/jquery.slim.min.js"><\/script>')</script><script src="assets/bootstrap.bundle.min.js" integrity="sha384-LtrjvnR4Twt/qOuYxE721u19sVFLVSA4hf/rRt6PrZTmiPltdZcI7q7PXQBYTKyf" crossorigin="anonymous">
</body>
</html>
|