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 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245
|
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<script src="assets/color-modes.js" ></script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ImageMagick – Image Formats</title>
<meta name="keywords" content="Image Formats, Image Processing, Digital Image Editing, Image Conversion, Open-Source Software, Image Manipulation, Command-Line Image Tools" />
<meta name="description" content="ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and complex image transformations." />
<meta name="application-name" content="ImageMagick" />
<meta name="application-url" content="https://imagemagick.org" />
<meta name="copyright" content="Copyright (c) 1999 ImageMagick Studio LLC" />
<meta itemprop='url' content='../' />
<meta itemprop='title' content='ImageMagick' />
<meta itemprop='description' content="ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and complex image transformations." />
<meta property='og:url' content='../' />
<meta property='og:name' content='ImageMagick' />
<meta property='og:image' content='../images/logo.png' />
<meta property='og:type' content='website' />
<meta property='og:site_name' content='ImageMagick' />
<meta property='og:description' content="ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and complex image transformations." />
<meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
<link type="images/png" sizes="64x64" href="../images/wand.png" rel="icon" />
<link type="images/icon" sizes="16x16" href="../images/wand.ico" rel="shortcut icon" />
<link href="formats.html" rel="canonical" />
<link href="assets/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
<symbol id="check2" viewBox="0 0 16 16">
<path d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z"/>
</symbol>
<symbol id="circle-half" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 0 8 1v14zm0 1A8 8 0 1 1 8 0a8 8 0 0 1 0 16z"/>
</symbol>
<symbol id="moon-stars-fill" viewBox="0 0 16 16">
<path d="M6 .278a.768.768 0 0 1 .08.858 7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278z"/>
<path d="M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.734 1.734 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.734 1.734 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.734 1.734 0 0 0 1.097-1.097l.387-1.162zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732L13.863.1z"/>
</symbol>
<symbol id="sun-fill" viewBox="0 0 16 16">
<path d="M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z"/>
</symbol>
</svg>
<div class="dropdown position-fixed bottom-0 end-0 mb-3 me-3 bd-mode-toggle">
<button class="btn btn-bd-secondary py-2 dropdown-toggle d-flex align-items-center"
id="bd-theme"
type="button"
aria-expanded="false"
data-bs-toggle="dropdown"
aria-label="Toggle theme (auto)">
<svg class="bi my-1 theme-icon-active" width="1em" height="1em"><use href="#circle-half"></use></svg>
<span class="visually-hidden" id="bd-theme-text">Toggle theme</span>
</button>
<ul class="dropdown-menu dropdown-menu-end shadow" aria-labelledby="bd-theme-text">
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="light" aria-pressed="false">
<svg class="bi me-2 opacity-50" width="1em" height="1em"><use href="#sun-fill"></use></svg>
Light
<svg class="bi ms-auto d-none" width="1em" height="1em"><use href="#check2"></use></svg>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center active" data-bs-theme-value="dark" aria-pressed="false">
<svg class="bi me-2 opacity-50" width="1em" height="1em"><use href="#moon-stars-fill"></use></svg>
Dark
<svg class="bi ms-auto d-none" width="1em" height="1em"><use href="#check2"></use></svg>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="auto" aria-pressed="true">
<svg class="bi me-2 opacity-50" width="1em" height="1em"><use href="#circle-half"></use></svg>
Auto
<svg class="bi ms-auto d-none" width="1em" height="1em"><use href="#check2"></use></svg>
</button>
</li>
</ul>
</div>
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
<symbol id="arrow-right-circle" viewBox="0 0 16 16">
<path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z"/>
</symbol>
<symbol id="color-mode" viewBox="0 0 118 94">
<title>Color Modes</title>
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.509 0c-6.733 0-11.715 5.893-11.492 12.284.214 6.14-.064 14.092-2.066 20.577C8.943 39.365 5.547 43.485 0 44.014v5.972c5.547.529 8.943 4.649 10.951 11.153 2.002 6.485 2.28 14.437 2.066 20.577C12.794 88.106 17.776 94 24.51 94H93.5c6.733 0 11.714-5.893 11.491-12.284-.214-6.14.064-14.092 2.066-20.577 2.009-6.504 5.396-10.624 10.943-11.153v-5.972c-5.547-.529-8.934-4.649-10.943-11.153-2.002-6.484-2.28-14.437-2.066-20.577C105.214 5.894 100.233 0 93.5 0H24.508zM80 57.863C80 66.663 73.436 72 62.543 72H44a2 2 0 01-2-2V24a2 2 0 012-2h18.437c9.083 0 15.044 4.92 15.044 12.474 0 5.302-4.01 10.049-9.119 10.88v.277C75.317 46.394 80 51.21 80 57.863zM60.521 28.34H49.948v14.934h8.905c6.884 0 10.68-2.772 10.68-7.727 0-4.643-3.264-7.207-9.012-7.207zM49.948 49.2v16.458H60.91c7.167 0 10.964-2.876 10.964-8.281 0-5.406-3.903-8.178-11.425-8.178H49.948z"></path>
</symbol>
</svg>
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="../index.html"><img class="d-block" id="icon" alt="ImageMagick" width="32" height="32" src="../images/wand.ico"/></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#magick-navbars" aria-controls="magick-navbars" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="magick-navbars">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<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">CLI</a>
</li>
<li class="nav-item">
<a class="nav-link " href="develop.html">Develop</a>
</li>
<li class="nav-item">
<a class="nav-link" rel="noopener" target="_blank" href="https://github.com/ImageMagick/ImageMagick/discussions">Community</a>
</li>
<li class="nav-item">
</li>
</ul>
</div>
</div>
</nav>
<div class="col-lg-8 mx-auto p-4 py-md-5 text-body-secondary">
<header class="d-flex align-items-center pb-3 mb-5 border-bottom">
<a href="../index.html" class="d-flex align-items-center text-decoration-none">
<h1 class="mt-5 fs-4">Image Formats</h1>
</a>
</header>
<main class="container">
<div>
<p class="text-center"><a href="#colorspace">A Word about Colorspaces</a> • <a href="#supported">Supported Formats</a> • <a href="#pseudo">Pseudo Formats</a> • <a href="#builtin-images">Built-in Images</a> • <a href="#builtin-patterns">Built-in Patterns</a> • <a href="#embedded">Embedded Profiles</a></p>
<p class="lead">ImageMagick uses an ASCII string known as <var>magick</var> (e.g. <samp>GIF</samp>) 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="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick identify -list format </samp></pre>
<p>On some platforms, ImageMagick automagically processes these extensions: .gz for Zip compression, .Z for Linux 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="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>$ magick identify -verbose image.jpg
Image: image.jpg
Format: JPEG (Joint Photographic Experts Group JFIF format)
...
Colorspace: sRGB </samp></pre>
OR use the appropriate percent escape
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>$ magick image.jpg -print "%[colorspace]\n" null:
sRGB </samp></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="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick image.jpg -colorspace RGB -resize 50% -colorspace sRGB resize.jpg </samp></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="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick lab.tif -resize 50% resize.jpg </samp></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 class="table table-sm table-hover table-striped table-responsive">
<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://www.adobe.com/creativecloud/file-types/images/vector/ai-file.html">AI</a></td>
<td>RW</td>
<td>Adobe Illustrator CS2</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 (<samp>apng:myImage.apng</samp>) image sequence, otherwise it assumes a PNG image and only reads the first frame. You must have <samp>ffmpeg</samp> in your execution path to process APNG images. </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 <samp>-define dng:use-camera-wb=true</samp> to use the RAW-embedded color profile for Sony cameras. You can also set these options: <samp>use-auto-wb</samp>, <samp>no-auto-bright</samp>, and <samp>output-color</samp>.</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><a href="https://en.wikipedia.org/wiki/AV1#AV1_Image_File_Format_(AVIF)#AV1_Image_File_Format_(AVIF)">AVIF</a></td>
<td>RW</td>
<td>Format derived from the keyframes of AV1 video</td>
<td> </td>
</tr>
<tr>
<td>AVS</td>
<td>RW</td>
<td>AVS X image</td>
<td> </td>
</tr>
<tr>
<td>BAYER</td>
<td>RW</td>
<td>Raw mosaiced 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 <samp>-define quantum:format=floating-point</samp>. Set the depth to 32 for single precision floats, 64 for double precision, and 16 for half-precision. For signed pixel data, use <samp>-define quantum:format=signed</samp>.</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 <samp>-define bmp:ignore-filesize</samp> 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.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. <samp>-set gamma 1.7</samp>, <samp>-set reference-black 95</samp>, <samp>-set reference-white 685</samp>). 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 <samp>-define quantum:format=floating-point</samp>. 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 <samp>-define quantum:format=floating-point</samp>. 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>CUBE</td>
<td>R</td>
<td>A lookup table containing math instructions to replace a color (based on RGB value) by another one. It's like a color grading preset. This process is done pixel by pixel with a very high accuracy.</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>Digital Camera Raw Image File</td>
<td>Use DCRAW to leverage the raw photo decoder delegate program, e.g., dcraw:IMG_2600.dng</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. <samp>-define dds:compression={dxt1, dxt5, none}</samp>). Other defines include <samp>dds:cluster-fit={true,false}</samp>, <samp>dds:weight-by-alpha={true,false}</samp>, <samp>dds:fast-mipmaps={true,false}</samp>, and use <samp>dds:mipmaps</samp> to set the number of mipmaps (use <samp>fromlist</samp> to use the image list).</td>
</tr>
<tr>
<td>DEBUG</td>
<td>W</td>
<td>Raw pixel debug file, likely only useful to the developers</td>
<td></td>
</tr>
<tr>
<td>DIB</td>
<td>RW</td>
<td>Microsoft Windows Device Independent Bitmap</td>
<td>DIB is a <a href="#BMP">BMP</a> file without the <a href="#BMP">BMP</a> header. Used to support embedded images in compound formats like WMF.</td>
</tr>
<tr>
<td><a href="../index.html">DJVU</a></td>
<td>R</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="https://github.com/ImageMagick/MagickCache">DMR</a></td>
<td>RW</td>
<td>Digital media repository</td>
<td>Requires the <a href="https://gitlab.com/ImageMagick/MagickCache">MagickCache</a> delegate library. Supported options include <samp>dmr:path</samp> (location of repository), <samp>dmr:passkey</samp> (key to open digital media repository), <samp>dmr:passphrase</samp> (optionally scramble or unscramble media resource), and <samp>dmr:ttl</samp> (time-to-live); Set the <samp>dmr:meta</samp> (metadata) property to store the resource as meta data.</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="../index.html">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. <samp>-define dot:layout-engine=twopi</samp>).</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. <samp>-set gamma 1.7</samp>, <samp>-set reference-black 95</samp>, <samp>-set reference-white 685</samp>).</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="https://www.ghostscript.com/download.html">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPS</td>
<td>RW</td>
<td>Adobe Encapsulated PostScript</td>
<td>Requires <a href="https://www.ghostscript.com/download.html">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPS2</td>
<td>W</td>
<td>Adobe Level II Encapsulated PostScript</td>
<td>Requires <a href="https://www.ghostscript.com/download.html">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPS3</td>
<td>W</td>
<td>Adobe Level III Encapsulated PostScript</td>
<td>Requires <a href="https://www.ghostscript.com/download.html">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPSF</td>
<td>RW</td>
<td>Adobe Encapsulated PostScript</td>
<td>Requires <a href="https://www.ghostscript.com/download.html">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPSI</td>
<td>RW</td>
<td>Adobe Encapsulated PostScript Interchange format</td>
<td>Requires <a href="https://www.ghostscript.com/download.html">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>EPT</td>
<td>RW</td>
<td>Adobe Encapsulated PostScript Interchange format with <a href="#TIFF">TIFF</a> preview</td>
<td>Requires <a href="https://www.ghostscript.com/download.html">Ghostscript</a> to read.</td>
</tr>
<tr>
<td><a href="../index.html">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 <samp>-define exr:color-type={RGB,RGBA,YC,YCA,Y,YA,R,G,B,A}</samp>. Use <a href="command-line-options.html#sampling-factor">-sampling-factor</a> to specify the sampling rate for YC(A) (e.g. <samp>2x2 or 4:2:0</samp>). Requires the <a href="../index.html">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="#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 <samp>100x150%</samp>.</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 <samp>-define quantum:format=floating-point</samp>. 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="../index.html">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://github.com/ImageMagick/libfpx">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://im.snibgo.com/fmttxt.htm">FTXT</a></td>
<td>RW</td>
<td>Read and write multispectral channels as formatted text</td>
<td></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 <samp>GIF87</samp> 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. <samp>-transparent-color wheat</samp>).</td>
</tr>
<tr>
<td>GPLT</td>
<td>R</td>
<td>Gnuplot plot files</td>
<td>Requires <a href="../index.html">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 <samp>-define quantum:format=floating-point</samp>. Set the depth to 32 for single precision floats, 64 for double precision, and 16 for half-precision. For signed pixel data, use <samp>-define quantum:format=signed</samp>. ImageMagick supports scanline padding. If your image is not padded, you can instead read the image as a 1-D vector and reshape it: <samp>magick -size 38700x1 -depth 1 gray:image.bin -reshape 180x215 image.png</samp>.</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 <samp>-define quantum:format=floating-point</samp>. Set the depth to 32 for single precision floats, 64 for double precision, and 16 for half-precision.</td>
</tr>
<tr>
<td>GROUP4</td>
<td>RW</td>
<td>Raw CCITT Group 4 samples</td>
<td>Use <a href="command-line-options.html#size">-size</a> to specify the image width and height.</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>RW</td>
<td>Apple High efficiency Image Format</td>
<td>Set the quality to 100 to produce lossless HEIC images. Requires the <a href="https://github.com/strukturag/libheif">libheif</a> delegate library. Recognized defines include <samp>heic:preserve-orientation={true,false}</samp>, <samp>depth-image={true,false}</samp>, <samp>heic:speed</samp>, and <samp>heic:chroma</samp>.</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 Scan 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 <samp>HTM</samp>. Requires <a href="http://user.it.uu.se/%7Ejan/html2ps.html">html2ps</a> to read. Note, the <samp>\\xff</samp> character is not permitted in any filename when exporting client-side image maps.</td>
</tr>
<tr>
<td>ICO</td>
<td>R</td>
<td>Microsoft icon</td>
<td>Also known as <samp>ICON</samp>.</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#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#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 <samp>BIE</samp> and <samp>JBG</samp>. Requires <a href="http://www.cl.cam.ac.uk/~mgk25/jbigkit/">jbigkit-1.6.tar.gz</a>.</td>
</tr>
<tr>
<td><a href="../index.html">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="../index.html">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="../index.html">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="../index.html">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="../index.html">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="../index.html">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. Specify <a href="command-line-options.html#define">-define jpeg:arithmetic-coding=true</a> to enable Huffman optimization. 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 <samp>jpeg:size</samp>, for example <a href="command-line-options.html#define">-define jpeg:size=128x128</a>. To restrict the maximum file size, use <samp>jpeg:extent</samp>, 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="../index.html">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">JXL</a></td>
<td>RW</td>
<td>JPEG XL image coding system</td>
<td>Requires the <a href="https://gitlab.com/wg1/jpeg-xl.git">JPEG XL</a> delegate library. Use <samp>-define jxl:effort=<i>integer</i></samp> to set the effort and <samp>-define jxl:decoding-speed=<i>integer</i></samp> to set the decoding speed. To specify a single precision floating-point format, use <samp>-define quantum:format=floating-point</samp>. Set the depth to 32 for single precision floats and 16 for half-precision.</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="../index.html">jxrlib</a> delegate library. Put the JxrDecApp and JxrEncApp applications in your execution path.</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>Linux 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 multispectral image file format</td>
<td>This format persists all image attributes known to ImageMagick. To specify a single precision floating-point format, use <samp>-define quantum:format=floating-point</samp>. 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="../index.html">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="../index.html">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 Pixel 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 <samp>.mpc</samp>, whereas, image pixels are written to a file with the extension <samp>.cache</samp>.</td>
</tr>
<tr>
<td>MPO</td>
<td>R</td>
<td>Multi-picture Object</td>
<td> </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 filename is the registry key. The image persists until you explicitly delete it or the program exits. For example, let's use the MPR to create a checkerboard:
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick \( -size 15x15 canvas:black canvas:white -append \) \
\( +clone -flip \) +append -write mpr:checkers +delete \
-size 240x240 tile:mpr:checkers -delete registry:checkers board.png </samp></pre>
</td>
</tr>
<tr>
<td>MRW</td>
<td>R</td>
<td>Sony (Minolta) Raw Image File</td>
<td>Set <samp>-define dng:use-camera-wb=true</samp> 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="../index.html">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="magick.html">magick</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. <samp>-bordercolor black</samp>).</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. <samp>-define pcl:fit-to-page=true</samp>).</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="https://www.ghostscript.com/download.html">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. <samp>-define pdf:use-cropbox=true</samp> or <samp>-define pdf:use-trimbox=true</samp>). Use <a href="command-line-options.html#density">-density</a> to improve the appearance of your PDF rendering (e.g. -density 300x300). To specify direct conversion from Postscript to PDF, use <samp>-define delegate:bimodel=true</samp>. Use <samp>-define pdf:fit-page=true</samp> to scale to the page size. To immediately stop processing upon an error, set <samp>-define pdf:stop-on-error</samp> to <samp>true</samp>. To set the page direction preferences to right-to-left, try <samp>-define pdf:page-direction=right-to-left</samp>. By default, the PDF is printed using "screen" for annotations and images. Use <samp>-define pdf:printed=true</samp> to instead utilize the printer options. Use <a href="command-line-options.html#alpha">-alpha remove </a> to remove transparency. When writing to a PDF, thumbnails are included by default. Generate thumbnails with <samp>-define pdf:thumbnail=true</samp>. To enable interpolation when rendering, use <samp>-define pdf:interpolate=true</samp>.</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><a href="http://netpbm.sourceforge.net/doc/pfm.html">PHM</a></td>
<td>RW</td>
<td>Portable float map format 16-bit half</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). Set the maximum chunk size with <a href="command-line-options.html#define">-define png:chunk-malloc-max=<i>value</i></a>.</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: <samp>magick -density 300 pages?.pdf pocketmod:organize.pdf</samp> </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="https://www.ghostscript.com/download.html">Ghostscript</a> to read. To force ImageMagick to respect the crop box, use <a href="command-line-options.html#define">-define</a> (e.g. <samp>-define eps:use-cropbox=true</samp>). 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 <samp>-define delegate:bimodel=true</samp>.</td>
</tr>
<tr>
<td>PS2</td>
<td>RW</td>
<td>Adobe Level II PostScript file</td>
<td>Requires <a href="https://www.ghostscript.com/download.html">Ghostscript</a> to read.</td>
</tr>
<tr>
<td>PS3</td>
<td>RW</td>
<td>Adobe Level III PostScript file</td>
<td>Requires <a href="https://www.ghostscript.com/download.html">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 multispectral bitmap file</td>
<td>Use <a href="command-line-options.html#define">-define psd:alpha-unblend=off</a> to disable alpha blending 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="#TIFF">TIFF</a></td>
<td>Multi-resolution <a href="#TIFF">TIFF</a> containing successively smaller versions of the image down to the size of an icon. Use <samp>-define ptif:pyramid</samp> to specify the min-base and levels of the pyramid, e.g. 64x4.</td>
</tr>
<tr>
<td><a href="../index.html">PWP</a></td>
<td>R</td>
<td>Seattle File Works multi-image file</td>
<td> </td>
</tr>
<tr>
<td><a href="../index.html">QOI</a></td>
<td>RW</td>
<td>Quite OK Image Format</td>
<td>Fast, lossless image compression.</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>RAW</td>
<td>R</td>
<td>Raw</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 <samp>-define quantum:format=floating-point</samp>. 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 <samp>-define quantum:format=floating-point</samp>. 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="../index.html">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="#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>STRIMG</td>
<td>RW</td>
<td>String to images and back</td>
<td> </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>By default, ImageMagick renders SVGs with <a href="../index.html">inkscape</a> if it is in your execution path; otherwise <a href="http://developer.gnome.org/rsvg/">RSVG</a>. If neither is available, ImageMagick reverts to its internal SVG renderer (called MSVG). The default resolution is 96 dpi. Use the <a href="command-line-options.html#size">-size</a> command line option to specify the maximum width and height. (<samp>-size</samp> is currently ignored by the Inkscape renderer due to a limitation on the Inkscape side). The SVG standard expects to draw over a transparent background. Set <a href="command-line-options.html#background">-background none</a> to comply with the standard. If you want to substitute entities and you trust the SVG source, enable this option: <samp>-define svg:substitute-entities=true</samp>. If you want to render a very large SVG and you trust the source, enable this option: <samp>-define svg:parse-huge=true</samp>. Enable embedding if your SVG embeds another SVG and you trust the source: <samp>-define svg:embedding=true</samp>. If RSVG is installed and you want to render an SVG using RSVG, add <samp>rsvg:</samp> just before the file name. If you want to render an SVG using MSVG, add <samp>msvg:</samp> just before the file name.</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 <samp>ICB</samp>, <samp>VDA</samp>, and <samp>VST</samp>. Use <samp>-define tga:preserve-orientation=true</samp> to preserve the image orientation.</td>
</tr>
<tr>
<td><a href="../index.html">TIFF</a></td>
<td>RW</td>
<td>Tagged image file multispectral format</td>
<td>Also known as <samp>TIF</samp>. Requires <a href="../index.html">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. <samp>-define tiff:rows-per-strip=8</samp>). To define the tile geometry, use for example, <samp>-define tiff:tile-geometry=128x128</samp>. To specify a <var>signed</var> format, use <samp>-define quantum:format=signed</samp>. To specify a single-precision floating-point format, use <samp>-define quantum:format=floating-point</samp>. Set the depth to 64 for a double-precision floating-point format. Use <samp>-define quantum:polarity=min-is-black</samp> or <samp>-define quantum:polarity=min-is-white</samp> toggle the photometric interpretation for a bilevel image. Specify the extra samples as associated or unassociated alpha with, for example, <samp>-define tiff:alpha=unassociated</samp>. Set the fill order with <samp>-define tiff:fill-order=msb|lsb</samp>. Set the TIFF endianness with <samp>-define tiff:endian=msb|lsb</samp>. Use <samp>-define tiff:exif-properties=false</samp> to skip reading the EXIF properties. Use <samp>-define tiff:gps-properties=false</samp> to skip reading the GPS 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: <samp>-define tiff:ignore-tags=comma-separated-list-of-tag-IDs</samp>. Since version 6.9.1-4 there is support for reading photoshop layers in TIFF files, this can be disabled with <samp>-define tiff:ignore-layers=true</samp>. To preserve compression of the source image, use: <samp>-define tiff:preserve-compression=true</samp>.</td>
</tr>
<tr>
<td>TIM</td>
<td>R</td>
<td>PSX TIM file</td>
<td> </td>
</tr>
<tr>
<td><a href="../index.html">TTF</a></td>
<td>R</td>
<td>TrueType font file</td>
<td>Requires <a href="../index.html">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. <samp>-set type:hinting off</samp>).</td>
</tr>
<tr>
<td>TXT</td>
<td>RW</td>
<td>Multispectral raw text file</td>
<td>Use <a href="command-line-options.html#define">-define</a> to specify the color compliance (e.g. <samp>-define txt:compliance=css</samp>).</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><a href="https://developer.android.com/media/platform/hdr-image-format">UHDR</a></td>
<td>RW</td>
<td>Ultra HDR</td>
<td>Requires the <a href="https://github.com/google/libultrahdr.git">libultrahdr</a> delegate library. Recognized <a href="defines.html">defines</a> include <samp>uhdr:hdr-color-gamut</samp>, <samp>uhdr:hdr-color-transfer</samp>, <samp>uhdr:sdr-color-gamut</samp>, <samp>uhdr:gainmap-quality</samp>, <samp>uhdr:gainmap-gamma</samp>, <samp>uhdr:gainmap-min-content-boost</samp>, <samp>uhdr:gainmap-max-content-boost</samp>, and <samp>uhdr:target-display-peak-brightness</samp>.</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>VIDEO</td>
<td>RW</td>
<td>Various video formats</td>
<td>Video formats such as APNG, AVI, MP4, WEBM, etc. Refer to <a href="defines.html">defines</a> for a description of these defines: <samp>video:intermediate-format</samp>, <samp>video:pixel-format</samp>, and <samp>video:vsync</samp> defines, that can affect the operation on these video formats.</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="../index.html">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. The muxing delegate library is required to read animated Webp image containers. 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 <samp>-density 144</samp> results in an image twice as large as the default. Use <samp>-background color</samp> to specify the WMF background color (default white) or <samp>-texture filename</samp> 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. <samp>-define x:screen=true</samp>). Set <samp>x:silent=true</samp> 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 <samp>PM</samp>. 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><a href="../index.html">YAML</a></td>
<td>W</td>
<td>human-readable data-serialization language</td>
<td>Include additional attributes about the image with these defines: <a href="command-line-options.html#define">-define yaml:locate</a>, <a href="command-line-options.html#define">-define yaml:limit</a>, <a href="command-line-options.html#define">-define yaml:moments</a>, or <a href="command-line-options.html#define">-define yaml:features</a>. Specify the JSON model schema version with <a href="command-line-options.html#define">-define yaml:version</a>. The current version is 1.0.</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 p-3 mb-2 text-body-secondary bg-body-tertiary">
<table class="table table-sm table-hover table-striped table-responsive">
<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 explicitly set the canvas size and border width by appending to the filename, e.g. <samp>ashlar:canvas.png[1024x768+4+4]</samp>. By default, alignment is along the left edge. Use <samp>-define ashlar:best-fit=true</samp> to align on both the left and right edges. You can label the image tiles with, for example, <samp>-label %f</samp>. By default, all image tiles are rendered on a single canvas. Use <samp>-define ashlar:tiles=50</samp>, for example, to render at most 50 tiles per canvas.</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 <samp>canvas:red</samp> and <samp>canvas:#FF0000</samp>.<br/>
If no color is specified a '<samp>white</samp>' 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>Use <samp>-define caption:split=true</samp> to split text if required to fit caption on the canvas</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>Clipboard</td>
<td></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 or radial 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 <samp>-define histogram:unique-colors=false</samp> 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 <samp>inline:data:;base64,/9j/4AAQSk...knrn//2Q==</samp>. If the inline image exceeds 5000 characters, reference it from a file (e.g. <samp>inline:inline.txt</samp>). You can also write a base64-encoded image. Embed the mime type in the filename, for example, <samp>magick myimage inline:jpeg:myimage.txt</samp>.</td>
</tr>
<tr>
<td>LABEL</td>
<td>R</td>
<td>Text image format</td>
<td>Specify the desired text as the filename (e.g. <samp>label:"This a label"</samp>).</td>
</tr>
<tr>
<td>MAP</td>
<td>RW</td>
<td>Colormap intensities and indices</td>
<td>Set <a href="command-line-options.html#depth">-depth</a> 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>Grayscale image mask. A sequence is emitted if the source image has more than one 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 <samp>NULL:</samp>). 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: <samp>-define pango:auto-dir=</samp><var>true/false</var>, <samp>-define pango:ellipsize=</samp><var>start/middle/end</var>, <samp>-define pango:gravity-hint=</samp><var>natural/strong/line</var>, <samp>-define pango:hinting=</samp><var>none/auto/full</var>, <samp>-define pango:indent=</samp><var>points</var>, <samp>-define pango:justify=</samp><var>true/false</var>, <samp>-define pango:language=</samp><var>en_US/etc</var>, <samp>-define pango:markup=</samp><var>true/false</var>, <samp>-define pango:single-paragraph=</samp><var>true/false</var>, <samp>-define pango:wrap=</samp><var>word/char/word-char</var> and <samp>-define pango:align=</samp><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>Linux 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="../index.html">SANE</a> Specify the device name and path as the filename (e.g. <samp>scan:'hpaio:/usb/Officejet_6200_series?serial=CN4ATCE3G20453'</samp>).</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. Under Windows, if you have multiple monitors, it returns a screenshot for each monitor.</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
<samp>TILE:image.miff</samp>.</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="#MIFF">MIFF</a> or <a href="#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 '<samp>canvas:</samp>'
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 <samp>magick:</samp> format tag may be used via the syntax <samp>magick:</samp><var>name</var> to request an embedded image (e.g. <samp>magick:logo</samp>). For backwards compatibility, the image specifications <samp>GRANITE:</samp>, <samp>LOGO:</samp>, <samp>NETSCAPE:</samp>, and <samp>ROSE:</samp> may also be used to request images with those names.</p>
<div class="pre-scrollabl">
<table class="table table-sm table-hover table-striped table-responsive">
<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="magick.html">magick</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 <samp>pattern:</samp> format tag may be used via the syntax <samp>pattern:</samp><var>name</var> to request an embedded pattern (e.g. <samp>pattern:checkerboard</samp>). 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 class="table table-sm table-hover table-striped table-responsive">
<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 class="table table-sm table-hover table-striped table-responsive">
<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 <samp>ICM</samp>. To read, use <a href="command-line-options.html#profile">-profile</a> with
<a href="magick.html">magick</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="magick.html">magick</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>
</main><!-- /.container -->
<footer class="text-center pt-5 my-5 text-body-secondary border-top">
<div class="container-fluid">
<a href="security-policy.html">Security</a> •
<a href="news.html">News</a>
<a href="#"><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="cite.html">Cite</a> •
<a href="http://pgp.mit.edu/pks/lookup?op=get&search=0x89AB63D48277377A">Public Key</a> •
<a href="../www/https://imagemagick.org/script/contact.php">Contact Us</a>
<br/>
<a href="https://github.com/imagemagick/imagemagick" rel="noopener" target="_blank" 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" rel="noopener" target="_blank" aria-label="Twitter"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 300 300" width="2%" height="2%" role="img" focusable="false"><title>Twitter</title><path d="M178.57 127.15 290.27 0h-26.46l-97.03 110.38L89.34 0H0l117.13 166.93L0 300.25h26.46l102.4-116.59 81.8 116.59h89.34M36.01 19.54H76.66l187.13 262.13h-40.66"/></svg></a>
<br/>
<small>Copyright © 1999 ImageMagick Studio LLC</small>
</div>
</footer>
</div>
<!-- Javascript assets -->
<script src="assets/bootstrap.bundle.min.js" ></script>
</body>
</html>
<!-- Magick Cache 1st March 2025 17:03 -->
|