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
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta content="HTML Tidy for Linux/x86 (vers 1st March 2003), see www.w3.org"
name="generator" />
<meta http-equiv="Content-Type"
content="text/html; charset=us-ascii" />
<title>ImageMagick - Convert, Edit, and Compose Images</title>
<meta name="Description"
content="ImageMagick is a robust collection of tools and libraries to read, write, and manipulate an image in many image formats including popular formats like TIFF, JPEG, PNG, PDF, PhotoCD, and GIF. With ImageMagick you can create images dynamically, making it suitable for Web applications. You can also resize, rotate, sharpen, color reduce, or add special effects to an image or image sequence and save your completed work in the same or differing image format. Image processing operations are available from the command line, as well as through C, C++, Perl, or Java programming interfaces." />
<meta name="Keywords"
content="ImageMagick,PerlMagick,Magick++,Image,Magick,Magic,Pixel,Graphics,Perl,MagickWand,image-processing" />
<meta name="Resource-type" content="document" />
<meta name="Robots" content="INDEX" />
<link rel="stylesheet" type="text/css" href="../www/magick.css" />
</head>
<body marginheight="1" marginwidth="1" topmargin="1"
leftmargin="1">
<table border="0" cellpadding="0" cellspacing="0" summary="Masthead" width="100%">
<tbody>
<tr>
<td bgcolor="#003399" width="25%" height="118" background="../images/background.gif"><a href="http://www.imagemagick.org/"><img src="../images/script.gif" width="278" height="118" border="0" alt="" /></a></td>
<td bgcolor="#003399" width="60%" height="118" background="../images/background.gif"><a href="http://www.networkeleven.com/direct.php?magick_all"><img src="../images/promote.png" border="0" width="186" height="52" vspace="29" alt="Powered by NetworkEleven" /></a></td>
<td bgcolor="#003399" width="114" height="118" align="right"><img src="../images/sprite.png" width="114" height="118" alt="" /></td>
<td bgcolor="#003399" width="114" height="118" align="right"><a href="http://www.imagemagick.net"><img src="../images/logo.png" width="114" height="118" border="0" alt="ImageMagick logo" /></a></td>
</tr></tbody></table>
<table align="left" border="0" cellpadding="2" cellspacing="2"
summary="Navigation buttons" width="20%">
<tr>
<td>
<form target="_self" action="../ImageMagick.html">
<input type="submit" title="ImageMagick Home" value=" Home"
style="background-color: rgb(25, 71, 163); background-image:url('../images/background.gif'); color: rgb(251, 199, 19); font-weight:bold" />
</form></td>
<td>
<form target="_self" action="../ImageMagick.html#api">
<input type="submit" title="ImageMagick API " value=" API "
style="background-color: rgb(25, 71, 163); background-image:url('../images/background.gif'); color: rgb(251, 199, 19); font-weight:bold" />
</form></td>
<td>
<form target="_self" action="../www/download.html">
<input type="submit" title="ImageMagick Download" value="Download"
style="background-color: rgb(25, 71, 163); background-image:url('../images/background.gif'); color: rgb(251, 199, 19); font-weight:bold" />
</form></td></tr></table>
<div align="right" style="margin-top:3px; padding-right:4px">
<form action="http://studio.imagemagick.org/Sage/scripts/Sage.cgi">
<input type="TEXT" name="query" size="32" maxlength="255" />
<input type="SUBMIT" name="sa" value="Search"
style="background-color: rgb(25, 71, 163); background-image:url('../images/background.gif'); bgcolor:#003399; color: rgb(251, 199, 19); font-weight:bold" />
</form></div>
<a name="top" id="top"></a>
<table border="0" cellpadding="10" cellspacing="0"
style="margin-top:-17px" width="100%">
<tr>
<td><br />
<br />
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="montage"
id="montage"></a>montage</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mont-top"
id="mont-top"></a>NAME</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<p>montage - create a composite image by combining several separate
images<br />
</p></td></tr></table>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mont-contents"
id="mont-contents"></a>Contents</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<dl>
<dt><a href="#mont-syno">Synopsis</a></dt>
<dt><a href="#mont-desc">Description</a></dt>
<dt><a href="#mont-exam">Examples</a></dt>
<dt><a href="#mont-opti">Options</a></dt>
<dt><a href="#mont-xres">X Resources</a></dt>
<dt><a href="#mont-envi">Environment</a></dt>
<dt><a href="#mont-file">Configuration File</a></dt>
<dt><a href="#mont-ackn">Acknowledgement</a></dt>
<dt><a href="#mont-auth">Authors</a></dt>
<dt><a href="#mont-copy">Copyright</a></dt></dl></td></tr></table>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mont-syno"
id="mont-syno"></a>Synopsis</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<p><strong>montage</strong> <strong>[</strong> <em>options</em>
<strong>...]</strong> <em>file</em> <strong>[ [</strong>
<em>options</em> <strong>...]</strong> <em>file</em>
<strong>...]</strong> <em>output_file</em><br />
</p></td></tr></table>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mont-desc"
id="mont-desc"></a>Description</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<p><strong>montage</strong> creates a composite image by combining
several separate images. The images are tiled on the composite
image with the name of the image optionally appearing just below
the individual tile.</p>
<p>The composite image is constructed in the following manner.
First, each image specified on the command line, except for the
last, is scaled to fit the maximum tile size. The maximum tile size
by default is 120x120. It can be modified with the
<strong>-geometry</strong> command line argument or X resource. See
<strong><a href="#mont-opti">Options</a></strong> for more
information on command line arguments. See <strong>X(1)</strong>
for more information on X resources. Note that the maximum tile
size need not be a square.</p>
<p>Next the composite image is initialized with the color specified
by the <strong>-background</strong> command line argument or X
resource. The width and height of the composite image is determined
by the title specified, the maximum tile size, the number of tiles
per row, the tile border width and height, the image border width,
and the label height. The number of tiles per row specifies how
many images are to appear in each row of the composite image. The
default is to have 6 tiles in each row and 4 tiles in each column
of the composite. A specific value is specified with
<strong>-tile</strong>. The tile border width and height, and the
image border width defaults to the value of the X resource
<strong>-borderwidth</strong>. It can be changed with the
<strong>-borderwidth</strong> or <strong>-geometry</strong> command
line argument or X resource. The label height is determined by the
font you specify with the <strong>-font</strong> command line
argument or X resource. If you do not specify a font, a font is
chosen that allows the name of the image to fit the maximum width
of a tiled area. The label colors is determined by the
<strong>-background</strong> and <strong>-fill</strong> command
line argument or X resource. Note, that if the background and pen
colors are the same, labels will not appear.</p>
<p>Initially, the composite image title is placed at the top if one
is specified (refer to <strong>-fill</strong>). Next, each image is
set onto the composite image, surrounded by its border color, with
its name centered just below it. The individual images are
left-justified within the width of the tiled area. The order of the
images is the same as they appear on the command line unless the
images have a scene keyword. If a scene number is specified in each
image, then the images are tiled onto the composite in the order of
their scene number. Finally, the last argument on the command line
is the name assigned to the composite image. By default, the image
is written in the <strong>MIFF</strong> format and can be viewed or
printed with <a href="display.html"><em>display(1)</em></a>.<br />
</p>
<p>Note, that if the number of tiles exceeds the default number of
20 (6 per row, 4 per column), more than one composite image is
created. To ensure a single image is produced, use
<strong>-tile</strong> to increase the number of tiles to meet or
exceed the number of input images.</p>
<p>Finally, to create one or more empty spaces in the sequence of
tiles, use the <strong>"NULL:"</strong> image format.</p>
<p>Note, a composite MIFF image displayed to an X server with
<strong>display</strong> behaves differently than other images. You
can think of the composite as a visual image directory. Choose a
particular tile of the composite and press a button to display it.
See <strong>display(1)</strong> and
<strong>miff(5)</strong></p></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> </p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mont-exam"
id="mont-exam"></a>Examples</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<p>To create a montage of a cockatoo, a parrot, and a hummingbird
and write it to a file called birds, use:</p>
<pre>
montage cockatoo.miff parrot.miff hummingbird.miff birds.miff
</pre>
<p>To tile several bird images so that they are at most 256 pixels
in width and 192 pixels in height, surrounded by a red border, and
separated by 10 pixels of background color, use:</p>
<pre>
montage -geometry 256x192+10+10 -bordercolor red birds.* montage.miff
</pre>
<p>To create an unlabeled parrot image, 640 by 480 pixels, and
surrounded by a border of black, use:</p>
<pre>
montage -geometry 640x480 -bordercolor black -label "" parrot.miff
bird.miff
</pre>
<p>To create an image of an eagle with a textured background,
use:</p>
<pre>
montage -texture bumps.jpg eagle.jpg eagle.png
</pre>
<p>To join several GIF images together without any extraneous
graphics (e.g. no label, no shadowing, no surrounding tile frame),
use:</p>
<pre>
montage +frame +shadow +label -tile 5x1 -geometry 50x50+0+0 *.png joined.png
</pre></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> </p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mont-opti"
id="mont-opti"></a>Options</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<p>Any option you specify on the command line remains in effect for
the group of images following it, until the group is terminated by
the appearance of any option or <strong>-noop</strong>. For
example, to make a montage of three images, the first with 32
colors, the second with an unlimited number of colors, and the
third with only 16 colors, use:<br />
</p>
<pre>
montage -colors 32 cockatoo.1 -noop cockatoo.2 -colors 16 cockatoo.3
cockatoos.miff
</pre>
<p>For a more detailed description of each option, see Options,
above.
<a href="ImageMagick.html"><em>ImageMagick(1)</em></a>.<br />
</p>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-adjoin">-adjoin</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>join images into a single multi-image file</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-authenticate">-authenticate</a>
<i><string></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>decrypt image with this password</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-background">-background</a>
<i><color></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>the background color</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-blue-primary">-blue-primary</a>
<i><x>,<y></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>blue chromaticity primary point</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-blur">-blur</a>
<i><radius></i>{<i>x<sigma></i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>blur the image with a Gaussian operator</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-bordercolor">-bordercolor</a>
<i><color></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>the border color</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-borderwidth
<i><geometry></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>the border width</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-cache">-cache</a>
<i><threshold></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>(This option has been replaced by the -limit
option)</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-chop">-chop</a>
<i><width>x<height></i>{<i>+-</i>}<i><x></i>{<i>+-</i>}<i>
<y></i>{<i>%</i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>remove pixels from the interior of an image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-colors">-colors</a>
<i><value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>preferred number of colors in the image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-colorspace">-colorspace</a>
<i><value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>the type of colorspace</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-comment">-comment</a>
<i><string></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>annotate an image with a comment</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-compose">-compose</a>
<i><operator></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>the type of image composition</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-compress">-compress</a>
<i><type></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>the type of image compression</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-crop">-crop</a>
<i><width>x<height></i>{<i>+-</i>}<i><x></i>{<i>+-</i>}<i>
<y></i>{<i>%</i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>preferred size and location of the cropped
image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-debug
<i><events></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>enable debug printout</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-define">-define</a>
<i><key></i>{<i>=<value></i>}<i>,...</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>add coder/decoder specific options</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-delete">-delete</a>
<i><index></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>delete the image from the image sequence</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-density">-density</a>
<i><width>x<height></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>horizontal and vertical resolution in pixels of the
image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-depth">-depth</a>
<i><value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>depth of the image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-display">-display</a>
<i><host:display[.screen]></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>specifies the X server to contact</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-dispose">-dispose</a>
<i><method></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>GIF disposal method</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-dither">-dither</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>apply Floyd/Steinberg error diffusion to the
image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-draw">-draw</a>
<i><string></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>annotate an image with one or more graphic
primitives</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-encoding">-encoding</a>
<i><type></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>specify the text encoding</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-endian">-endian</a>
<i><type></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>specify endianness (MSB or LSB) of the image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-fill">-fill</a>
<i><color></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>color to use when filling a graphic primitive</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-filter">-filter</a>
<i><type></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>use this type of filter when resizing an
image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-font">-font</a>
<i><name></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>use this font when annotating the image with
text</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-frame">-frame</a>
<i><width>x<height>+<outer bevel width>+<inner
bevel width></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>surround the image with an ornamental border</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-gamma">-gamma</a>
<i><value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>level of gamma correction</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-geometry">-geometry</a>
<i><width>x<height></i>{<i>+-</i>}<i><x></i>{<i>+-</i>}<i>
<y></i>{<i>%</i>}{<i>@</i>}
{<i>!</i>}{<i><</i>}{<i>></i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>preferred size and location of the Image
window.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-gravity">-gravity</a>
<i><type></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>direction primitive gravitates to when annotating the
image.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-green-primary">-green-primary</a>
<i><x>,<y></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>green chromaticity primary point</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-help</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>print usage instructions</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-insert">-insert</a>
<i><index></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>insert last image into the image sequence</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-interlace">-interlace</a>
<i><type></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>the type of interlacing scheme</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-label">-label</a>
<i><name></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>assign a label to an image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-limit">-limit</a>
<i><type>
<value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Area, Disk, File, Map, or Memory resource
limit</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-log">-log</a>
<i><string></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Specify format for debug log</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-matte">-matte</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>store matte channel if the image has one</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-mattecolor">-mattecolor</a>
<i><color></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>specify the color to be used with the <strong>-frame</strong>
option</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-mode
<i><value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>mode of operation</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-monochrome</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>transform the image to black and white</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-page">-page</a>
<i><width>x<height></i>{<i>+-</i>}<i><x></i>{<i>+-</i>}<i>
<y></i>{<i>%</i>}{<i>!</i>}{<i><</i>}{<i>></i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>size and location of an image canvas</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-pen">-pen</a>
<i><color></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>(This option has been replaced by the -fill
option)</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-pointsize
<i><value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>pointsize of the PostScript, OPTION1, or TrueType
font</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-profile">-profile</a>
<i><filename></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>add ICM, IPTC, or generic profile to image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-quality">-quality</a>
<i><value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>JPEG/MIFF/PNG compression level</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-radial-blur">-radial-blur</a>
<i>angle</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>radial blur the image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-red-primary">-red-primary</a>
<i><x>,<y></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>red chromaticity primary point</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-render">-render</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>render vector operations</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-resize">-resize</a>
<i><width>x<height></i>{<i>%</i>}{<i>@</i>}{<i>!</i>}{<i>
<</i>}{<i>></i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>resize an image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-rotate">-rotate</a>
<i><degrees></i>{<i><</i>}{<i>></i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>apply Paeth image rotation to the image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-sampling-factor">-sampling-factor</a>
<i><horizontal_factor>x<vertical_factor></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>sampling factors used by JPEG or MPEG-2 encoder and YUV
decoder/encoder.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-scenes">-scenes</a>
<i><value-value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>range of image scene numbers to read</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-shadow
<i><radius></i>{<i>x<sigma></i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>shadow the montage</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-sharpen">-sharpen</a>
<i><radius></i>{<i>x<sigma></i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>sharpen the image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-size">-size</a>
<i><width>x<height></i>{<i>+offset</i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>width and height of the image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-strip">-strip</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>strip the image of any profiles or comments</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-stroke">-stroke</a>
<i><color></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>color to use when stroking a graphic
primitive</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-strokewidth">-strokewidth</a>
<i><value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>set the stroke width</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-swap">-swap</a>
<i><index,index></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>swap two images in the image sequence</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-texture
<i><filename></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>name of texture to tile onto the image
background</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-thumbnail">-thumbnail</a>
<i><width>x<height></i>{<i>%</i>}{<i>@</i>}{<i>!</i>}{<i>
<</i>}{<i>></i>}</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>create a thumbnail of the image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-tile
<i><geometry></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>layout of images [<em>montage</em>]</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-title">-title</a>
<i><string></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>assign title to displayed image [<em>animate, display,
montage</em>]</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-transparent">-transparent</a>
<i><color></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>make this color transparent within the image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-treedepth">-treedepth</a>
<i><value></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>tree depth for the color reduction algorithm</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-trim">-trim</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>trim an image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-type">-type</a>
<i><type></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>the image type</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-verbose">-verbose</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>print detailed information about the image</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-version">-version</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>print ImageMagick version string</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-white-point">-white-point</a>
<i><x>,<y></i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>chromaticity white point</td></tr></table>
<p>For a more detailed description of each option, see Options,
above.
<a href="ImageMagick.html"><em>ImageMagick(1)</em></a>.<br />
</p></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> </p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mont-xres" id="mont-xres"></a>X
Resources</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<p><strong>Montage</strong> options can appear on the command line
or in your X resource file. Options on the command line supersede
values specified in your X resource file. See <strong>X(1)</strong>
for more information on X resources.</p>
<p>All <strong>montage</strong> options have a corresponding X
resource. In addition, <strong>montage</strong> uses the following
X resources:</p>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">background <i>(class
Background)</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>background color</td></tr></table>
<p>Specifies the preferred color to use for the composite image
background. The default is #ccc.</p>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">borderColor <i>(class
BorderColor)</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>border color</td></tr></table>
<p>Specifies the preferred color to use for the composite image
border. The default is #ccc.</p>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">borderWidth <i>(class
BorderWidth)</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>border width</td></tr></table>
<p>Specifies the width in pixels of the composite image border. The
default is 2.</p>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">font <i>(class
Font)</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>font to use</td></tr></table>
<p>Specifies the name of the preferred font to use when displaying
text within the composite image. The default is 9x15, fixed, or 5x8
determined by the composite image size.</p>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">matteColor <i>(class
MatteColor)</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>color of the frame</td></tr></table>
<p>Specify the color of an image frame. A 3D effect is achieved by
using highlight and shadow colors derived from this color. The
default value is #697B8F.</p>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">pen <i>(class
Pen)</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>text color</td></tr></table>
<p>Specifies the preferred color to use for text within the
composite image. The default is black.</p>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">title <i>(class
Title)</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>composite image title</td></tr></table>
<p>This resource specifies the title to be placed at the top of the
composite image. The default is not to place a title at the top of
the composite image.</p></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> </p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mont-envi"
id="mont-envi"></a>Environment</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">COLUMNS</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Output screen width. Used when formatting text for the screen.
Many Unix systems keep this shell variable up to date, but it may
need to be explicitly exported in order for ImageMagick to see
it.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">DISPLAY</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>X11 display ID (host, display number, and screen in the form
hostname:display.screen).</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">HOME</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Location of user's home directory. ImageMagick searches for
configuration files in $HOME/.magick if the directory exists. See
<strong>MAGICK_CODER_MODULE_PATH</strong>,
<strong>MAGICK_CONFIGURE_PATH</strong>, and
<strong>MAGICK_FILTER_MODULE_PATH</strong> if more flexibility is
needed.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_CODER_MODULE_PATH</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Search path to use when searching for image format coder
modules. This path allows the user to arbitrarily extend the image
formats supported by ImageMagick by adding loadable modules to an
arbitrary location rather than copying them into the ImageMagick
installation directory. The formatting of the search path is
similar to operating system search paths (i.e. colon delimited for
Unix, and semi-colon delimited for Microsoft Windows). This user
specified search path is used before trying the default search
path.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_CONFIGURE_PATH</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Search path to use when searching for configuration (.mgk)
files. The formatting of the search path is similar to operating
system search paths (i.e. colon delimited for Unix, and semi-colon
delimited for Microsoft Windows). This user specified search path
is used before trying the default search path.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_DEBUG</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Debug options (see <strong>-debug</strong> for
details)</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_FILTER_MODULE_PATH</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Search path to use when searching for filter process modules
(invoked via <strong>-process</strong>). This path allows the user
to arbitrarily extend ImageMagick's image processing functionality
by adding loadable modules to an arbitrary location rather than
copying them into the ImageMagick installation directory. The
formatting of the search path is similar to operating system search
paths (i.e. colon delimited for Unix, and semi-colon delimited for
Microsoft Windows). This user specified search path is used before
trying the default search path.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_FONT_PATH</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Directory where ImageMagick should look for TrueType and
Postscript Type1 font files if the font file is not found in the
current directory. It is preferred to define the available fonts
via type.mgk rather than use
<strong>MAGICK_FONT_PATH</strong>.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_HOME</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Path to top of ImageMagick installation directory. Only
observed by "uninstalled" builds of ImageMagick which do not have
their location hard-coded or set by an installer.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_DISK_LIMIT</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Maximum amount of disk space allowed for use by the pixel
cache.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_FILES_LIMIT</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Maximum number of open files.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_MAP_LIMIT</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Maximum size of a memory map.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_MEMORY_LIMIT</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Maximum amount of memory to allocate from the
heap.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">MAGICK_TMPDIR</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>Path to directory where ImageMagick should write temporary
files. The default is to use the system default, or the location
set by <strong>TMPDIR</strong>.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">TMPDIR</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>For POSIX-compatible systems (Unix-compatible), the path to the
directory where all applications should write temporary files.
Overridden by <strong>MAGICK_TMPDIR</strong> if it is
set.</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">TMP <i>or
TEMP</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>For Microsoft Windows, the path to the directory where
applications should write temporary files. Overridden by
<strong>MAGICK_TMPDIR</strong> if it is
set.</td></tr></table></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> </p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mont-file"
id="mont-file"></a>Configuration
Files</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<p>ImageMagick uses a number of XML format configuration files:</p>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">colors.mgk</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>colors configuration file</td></tr></table>
<pre>
<?xml version="1.0"?>
<colormap>
<color name="AliceBlue" red="240" green="248" blue="255"
compliance="SVG, X11, XPM" />
</colormap>
</pre>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">delegates.mgk</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>delegates configuration file</td></tr></table>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">log.mgk</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>logging configuration file</td></tr></table>
<pre>
<?xml version="1.0"?>
<magicklog>
<log events="None" />
<log output="stdout" />
<log filename="Magick-%d.log" />
<log generations="3" />
<log limit="2000" />
<log format="%t %r %u %p %m/%f/%l/%d:\n %e" />
</magicklog>
</pre>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">magic.mgk</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>file header magic test configuration file</td></tr></table>
<pre>
<?xml version="1.0"?>
<magicmap>
<magic name="AVI" offset="0" target="RIFF" />
</magicmap>
</pre>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">coder.mgk</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>loadable modules configuration file</td></tr></table>
<pre>
<?xml version="1.0"?>
<modulemap>
<module magick="8BIM" name="META" />
</modulemap>
</pre>
<table border="0" width="94%">
<tr>
<td width="3%"><br /></td>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle_option.png" alt=">"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">type.mgk</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>master type (fonts) configuration file</td></tr></table>
<pre>
<?xml version="1.0"?>
<typemap>
<include file="type-windows.mgk" />
<type
name="AvantGarde-Book"
fullname="AvantGarde Book"
family="AvantGarde"
foundry="URW"
weight="400"
style="normal"
stretch="normal"
format="type1"
metrics="/usr/local/share/ghostscript/fonts/a010013l.afm"
glyphs="/usr/local/share/ghostscript/fonts/a010013l.pfb"
/>
</typemap>
</pre></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> </p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mont-ackn"
id="mont-ackn"></a>Acknowledgements</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<p>The <strong>MIT X Consortium</strong> for making network
transparent graphics a reality.<br />
</p>
<p><em>Michael Halle</em>, <strong>Spatial Imaging Group at
MIT</strong>, for the initial implementation of Alan Paeth's image
rotation algorithm.<br />
</p>
<p><em>David Pensak</em>, <strong>E. I. du Pont de Nemours and
Company</strong>, for providing a computing environment that made
this program possible.<br />
</p>
<p><em>Peder Langlo</em>, <strong>Hewlett Packard</strong>, Norway,
made hundreds of suggestions and bug reports. Without Peder, this
software would not be nearly as useful as it is today.</p>
<p><em>Rod Bogart</em> and <em>John W. Peterson</em>,
<strong>University of Utah</strong>. Image compositing is loosely
based on rlecomp of the Utah Raster Toolkit.</p>
<p><em>Paul Heckbert</em>, <strong>Carnegie Mellon
University</strong>. Image resizing is based on his Zoom
program.</p>
<p><em>Paul Raveling</em>, <strong>USC Information Sciences
Institute</strong>. The spatial subdivision color reduction
algorithm is based on his Img software.</p></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> </p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt=">" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="copy"
id="copy"></a>Copyright</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<p><strong>Copyright (C) 1999-2004 ImageMagick Studio LLC.
Additional copyrights and licenses apply to this software, see
http://www.imagemagick.org/www/Copyright.html</strong></p></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> </p>
<hr />
<a href="#top"><img src="../images/top.gif" border="0" width="42"
height="42" align="right" alt="Top of page" /></a>
<form action="mailto:magick-users%40imagemagick.org"
style="margin-top:5px"><input type="submit" title="E-Mail us"
value="E-Mail"
style="background-image:url('../images/background.gif'); color: rgb(251, 199, 19); font-weight:bold" />
<small>"Image manipulation software that works like
magick"</small></form></td></tr></table></td></tr></table>
</body>
</html>
|