File: animate.html

package info (click to toggle)
imagemagick 6%3A6.0.6.2-2.9
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 33,284 kB
  • ctags: 14,844
  • sloc: ansic: 190,790; cpp: 17,203; sh: 8,740; perl: 4,190; makefile: 1,740; tcl: 459
file content (1635 lines) | stat: -rw-r--r-- 68,227 bytes parent folder | download
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
<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 />
&nbsp;<br />
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="animate"
id="animate"></a>animate</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="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="top"
id="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>animate - animate a sequence of images</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="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="contents"
id="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="#syno">Synopsis</a></dt>
<dt><a href="#desc">Description</a></dt>
<dt><a href="#exam">Examples</a></dt>
<dt><a href="#opti">Options</a></dt>
<dt><a href="#mous">Mouse Buttons</a></dt>
<dt><a href="#comm">Command Widget</a></dt>
<dt><a href="#keyb">Keyboard Accelerators</a></dt>
<dt><a href="#xres">X Resources</a></dt>
<dt><a href="#envi">Environment</a></dt>
<dt><a href="#file">Configuration Files</a></dt>
<dt><a href="#copy">Copyright</a></dt>
<dt><a href="#ackn">Acknowledgement</a></dt>
<dt><a href="#auth">Authors</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="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="syno"
id="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>animate</strong> <strong>[</strong> <em>options</em>
<strong>...]</strong> <em>file</em> [ [ <em>options</em> ...]
<em>file</em> ...]<br />
&nbsp;</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="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="desc"
id="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>Animate</strong> displays a sequence of images on any
workstation display running an X server. <strong>animate</strong>
first determines the hardware capabilities of the workstation. If
the number of unique colors in an image is less than or equal to
the number the workstation can support, the image is displayed in
an X window. Otherwise the number of colors in the image is first
reduced to match the color resolution of the workstation before it
is displayed.</p>
<p>This means that a continuous-tone 24 bits-per-pixel image can
display on a 8 bit pseudo-color device or monochrome device. In
most instances the reduced color image closely resembles the
original. Alternatively, a monochrome or pseudo-color image
sequence can display on a continuous-tone 24 bits-per-pixel
device.</p>
<p>To help prevent color flashing on X server visuals that have
colormaps, <strong>animate</strong> creates a single colormap from
the image sequence. This can be rather time consuming. You can
speed this operation up by reducing the colors in the image before
you "animate" them. Use <strong>mogrify</strong> to color reduce
the images to a single colormap. See <strong>mogrify(1)</strong>
for details. Alternatively, you can use a Standard Colormap; or a
static, direct, or true color visual. You can define a Standard
Colormap with <em>xstdcmap</em>. See <strong>xstdcmap(1)</strong>
for details. This method is recommended for colormapped X server
because it eliminates the need to compute a global
colormap.</p></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> &nbsp;</p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="exam"
id="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 animate a set of images of a cockatoo, use:<br />
&nbsp;</p>
<pre>
    animate cockatoo.*
</pre>
<p>To animate a cockatoo image sequence while using the Standard
Colormap <em>best</em>, use:<br />
&nbsp;</p>
<pre>
    xstdcmap -best
    animate -map best cockatoo.*
</pre>
<p>To animate an image of a cockatoo without a border centered on a
backdrop, use:<br />
&nbsp;</p>
<pre>
    animate +borderwidth -backdrop cockatoo.*
</pre></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> &nbsp;</p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="opti"
id="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>For a more detailed description of each option, see Options,
above.
<a href="ImageMagick.html"><em>ImageMagick(1)</em></a>.<br />
&nbsp;</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="&gt;"
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>&lt;string&gt;</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-backdrop">-backdrop</a>
<i>&lt;color&gt;</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>display the image centered on a backdrop.</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="&gt;"
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>&lt;color&gt;</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="&gt;"
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>&lt;color&gt;</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-borderwidth
<i>&lt;geometry&gt;</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="&gt;"
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>&lt;threshold&gt;</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="&gt;"
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>&lt;width&gt;x&lt;height&gt;</i>{<i>+-</i>}<i>&lt;x&gt;</i>{<i>+-</i>}<i>
&lt;y&gt;</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-colormap">-colormap</a>
<i>&lt;type&gt;</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>define the colormap 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="&gt;"
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>&lt;value&gt;</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="&gt;"
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>&lt;value&gt;</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="&gt;"
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>&lt;width&gt;x&lt;height&gt;</i>{<i>+-</i>}<i>&lt;x&gt;</i>{<i>+-</i>}<i>
&lt;y&gt;</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-debug
<i>&lt;events&gt;</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="&gt;"
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>&lt;key&gt;</i>{<i>=&lt;value&gt;</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-delay">-delay</a>
<i>&lt;1/100ths of a
second&gt;</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>display the next image after pausing</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="&gt;"
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>&lt;index&gt;</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="&gt;"
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>&lt;width&gt;x&lt;height&gt;</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="&gt;"
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>&lt;value&gt;</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="&gt;"
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>&lt;host:display[.screen]&gt;</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="&gt;"
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>&lt;method&gt;</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="&gt;"
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="&gt;"
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>&lt;name&gt;</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-foreground">-foreground</a>
<i>&lt;color&gt;</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>define the foreground 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="&gt;"
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>&lt;value&gt;</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="&gt;"
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>&lt;width&gt;x&lt;height&gt;</i>{<i>+-</i>}<i>&lt;x&gt;</i>{<i>+-</i>}<i>
&lt;y&gt;</i>{<i>%</i>}{<i>@</i>}
{<i>!</i>}{<i>&lt;</i>}{<i>&gt;</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="&gt;"
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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-iconGeometry">-iconGeometry</a>
<i>&lt;geometry&gt;</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 icon geometry</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-iconic</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>iconic animation</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="&gt;"
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>&lt;index&gt;</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="&gt;"
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>&lt;type&gt;</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="&gt;"
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>&lt;type&gt;
&lt;value&gt;</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="&gt;"
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>&lt;string&gt;</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-map">-map</a>
<i>&lt;type&gt;</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>display image using this 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="&gt;"
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="&gt;"
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>&lt;color&gt;</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="&gt;"
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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-name</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>name 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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-pause">-pause</a>
<i>&lt;seconds&gt;</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>pause between animation loops [animate]</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-remote">-remote</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>perform a remote 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="&gt;"
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>&lt;degrees&gt;</i>{<i>&lt;</i>}{<i>&gt;</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="&gt;"
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>&lt;horizontal_factor&gt;x&lt;vertical_factor&gt;</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="&gt;"
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>&lt;value-value&gt;</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-shared-memory">-shared-memory</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>use shared memory</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="&gt;"
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>&lt;width&gt;x&lt;height&gt;</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="&gt;"
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="&gt;"
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>&lt;index,index&gt;</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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-text-font">-text-font</a>
<i>&lt;name&gt;</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 for writing fixed-width 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="&gt;"
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>&lt;string&gt;</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="&gt;"
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>&lt;value&gt;</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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-visual">-visual</a>
<i>&lt;type&gt;</i></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>animate images using this X visual 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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a href="ImageMagick.html#details-window">-window</a>
<i>&lt;id&gt;</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 image the background of a window</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 />
&nbsp;</p>
<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 animate three images, the first with 32 colors, the
second with an unlimited number of colors, and the third with only
16 colors, use:<br />
&nbsp;</p>
<pre>
     animate -colors 32 cockatoo.1 -noop cockatoo.2 -colors 16 cockatoo.3
</pre>
<p><strong>Animate</strong> options can appear on the command line
or in your X resources file. See <em>X(1)</em>. Options on the
command line supersede values specified in your X resources
file.</p>
<p>Image filenames may appear in any order on the command line if
the image format is <em>MIFF</em> (refer to
<strong>miff(5)</strong> and the <strong>scene</strong> keyword is
specified in the image. Otherwise the images will display in the
order they appear on the command line.</p></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> &nbsp;</p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="mous" id="mous"></a>Mouse
Buttons</font></font></font></b></td></tr></table>
<table width="94%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="3%"><br /></td>
<td>
<p>Press any button to map or unmap the Command widget. See the
next section for more information about the Command
widget.</p></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> &nbsp;</p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="comm" id="comm"></a>Command
Widget</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 Command widget lists a number of sub-menus and commands.
They are</p>
<ul>
<li><strong>Animate</strong> 
<ul>
<li>Open</li>
<li>Play</li>
<li>Step</li>
<li>Repeat</li>
<li>Auto Reverse</li></ul></li>
<li><strong>Speed</strong> 
<ul>
<li>Faster</li>
<li>Slower</li></ul></li>
<li><strong>Direction</strong> 
<ul>
<li>Forward</li>
<li>Reverse</li></ul></li>
<li><strong>Image Info</strong></li>
<li><strong>Help</strong></li>
<li><strong>Quit</strong></li></ul>
<p>Menu items with a indented triangle have a sub-menu. They are
represented above as the indented items. To access a sub-menu item,
move the pointer to the appropriate menu and press a button and
drag. When you find the desired sub-menu item, release the button
and the command is executed. Move the pointer away from the
sub-menu if you decide not to execute a particular
command.</p></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> &nbsp;</p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="keyb" id="keyb"></a>Keyboard
Accelerators</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><strong>Ctl+O</strong></dt>
<dd>Press to load an image from a file.</dd>
<dt><strong>space</strong></dt>
<dd>Press to display the next image in the sequence.</dd>
<dt><strong>&lt;</strong></dt>
<dd>Press to speed-up the display of the images. Refer to
<strong>-delay</strong> for more information.</dd>
<dt><strong>&gt;</strong></dt>
<dd>Press to slow the display of the images. Refer to
<strong>-delay</strong> for more information.</dd>
<dt><strong>?</strong></dt>
<dd>Press to display information about the image. Press any key or
button to erase the information.</dd>
<dd>This information is printed: image name; image size; and the
total number of unique colors in the image.</dd>
<dt><strong>F1</strong></dt>
<dd>Press to display helpful information about
<strong>animate(1)</strong>.</dd>
<dt><strong>Ctl-q</strong></dt>
<dd>Press to discard all images and exit
program.</dd></dl></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> &nbsp;</p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="xres" id="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>Animate</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>animate</strong> options have a corresponding X
resource. In addition, the <strong>animate</strong> program uses
the following X resources:</p>
<dl>
<dt><strong>background</strong> <strong>(</strong><em>class</em>
<strong>Background)</strong></dt>
<dd>Specifies the preferred color to use for the Image window
background. The default is #ccc.</dd>
<dt><strong>borderColor</strong> <strong>(</strong><em>class</em>
<strong>BorderColor)</strong></dt>
<dd>Specifies the preferred color to use for the Image window
border. The default is #ccc.</dd>
<dt><strong>borderWidth</strong> <strong>(</strong><em>class</em>
<strong>BorderWidth)</strong></dt>
<dd>Specifies the width in pixels of the Image window border. The
default is 2.</dd>
<dt><strong>font</strong> <strong>(</strong><em>class</em>
<strong>Font</strong> <strong>or</strong>
<strong>FontList)</strong></dt>
<dd>Specifies the name of the preferred font to use in normal
formatted text. The default is 14 point <em>Helvetica</em>.</dd>
<dt><strong>foreground</strong> <strong>(</strong><em>class</em>
<strong>Foreground)</strong></dt>
<dd>Specifies the preferred color to use for text within the Image
window. The default is black.</dd>
<dt><strong>geometry</strong> <strong>(</strong><em>class</em>
<strong>geometry)</strong></dt>
<dd>Specifies the preferred size and position of the image window.
It is not necessarily obeyed by all window managers. Offsets, if
present, are handled in <em>X(1)</em> style. A negative x offset is
measured from the right edge of the screen to the right edge of the
icon, and a negative y offset is measured from the bottom edge of
the screen to the bottom edge of the icon.</dd>
<dt><strong>iconGeometry</strong> <strong>(</strong><em>class</em>
<strong>IconGeometry)</strong></dt>
<dd>Specifies the preferred size and position of the application
when iconified. It is not necessarily obeyed by all window
managers. Offsets, if present, are handled in the same manner as in
class Geometry.</dd>
<dt><strong>iconic</strong> <strong>(</strong><em>class</em>
<strong>Iconic)</strong></dt>
<dd>This resource indicates that you would prefer that the
application's windows initially not be visible as if the windows
had be immediately iconified by you. Window managers may choose not
to honor the application's request.</dd>
<dt><strong>matteColor</strong> <strong>(</strong><em>class</em>
<strong>MatteColor)</strong></dt>
<dd>Specify the color of windows. It is used for the backgrounds of
windows, menus, and notices. A 3D effect is achieved by using
highlight and shadow colors derived from this color. Default value:
#ddd.</dd>
<dt><strong>name</strong> <strong>(</strong><em>class</em>
<strong>Name)</strong></dt>
<dd>This resource specifies the name under which resources for the
application should be found. This resource is useful in shell
aliases to distinguish between invocations of an application,
without resorting to creating links to alter the executable file
name. The default is the application name.</dd>
<dt><strong>sharedMemory</strong> <strong>(</strong><em>class</em>
<strong>SharedMemory)</strong></dt>
<dd>This resource specifies whether animate should attempt use
shared memory for pixmaps. ImageMagick must be compiled with shared
memory support, and the display must support the MIT-SHM extension.
Otherwise, this resource is ignored. The default is True.</dd>
<dt><strong>text_font</strong> <strong>(</strong><em>class</em>
<strong>textFont)</strong></dt>
<dd>Specifies the name of the preferred font to use in fixed
(typewriter style) formatted text. The default is 14 point
<em>Courier</em>.</dd>
<dt><strong>title</strong> <strong>(</strong><em>class</em>
<strong>Title)</strong></dt>
<dd>This resource specifies the title to be used for the Image
window. This information is sometimes used by a window manager to
provide some sort of header identifying the window. The default is
the image file name.</dd></dl></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> &nbsp;</p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="envi"
id="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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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="&gt;"
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> &nbsp;</p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="file" id="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="&gt;"
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>
  &lt;?xml version="1.0"?&gt;
  &lt;colormap&gt;
    &lt;color name="AliceBlue" red="240" green="248" blue="255"
           compliance="SVG, X11, XPM" /&gt;
  &lt;/colormap&gt;
</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="&gt;"
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="&gt;"
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>
  &lt;?xml version="1.0"?&gt;
  &lt;magicklog&gt;
    &lt;log events="None" /&gt;
    &lt;log output="stdout" /&gt;
    &lt;log filename="Magick-%d.log" /&gt;
    &lt;log generations="3" /&gt;
    &lt;log limit="2000" /&gt;
    &lt;log format="%t %r %u %p %m/%f/%l/%d:\n  %e"  /&gt;
  &lt;/magicklog&gt;
</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="&gt;"
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>
  &lt;?xml version="1.0"?&gt;
  &lt;magicmap&gt;
    &lt;magic name="AVI" offset="0" target="RIFF" /&gt;
  &lt;/magicmap&gt;
</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="&gt;"
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>
  &lt;?xml version="1.0"?&gt;
  &lt;modulemap&gt;
    &lt;module magick="8BIM" name="META" /&gt;
  &lt;/modulemap&gt;
</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="&gt;"
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>
  &lt;?xml version="1.0"?&gt;
  &lt;typemap&gt;
    &lt;include file="type-windows.mgk" /&gt;
    &lt;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"
    /&gt;
  &lt;/typemap&gt;
</pre></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> &nbsp;</p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="ackn"
id="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>
<dl>
<dd>The <strong>MIT X Consortium</strong> for making network
transparent graphics a reality.</dd>
<dd><em>Michael Halle</em>, <strong>Spatial Imaging Group at
MIT</strong>, for the initial implementation of Alan Paeth's image
rotation algorithm.</dd>
<dd><em>David Pensak</em>, <strong>duPont</strong>, for providing a
computing environment that made this program possible.</dd>
<dd><em>Paul Raveling</em>, <strong>USC Information Sciences
Institute</strong>. The spatial subdivision color reduction
algorithm is based on his Img software.</dd></dl></td></tr></table>
<p><i><a href="#top">Back to Contents</a></i> &nbsp;</p>
<table border="0" width="100%">
<tr>
<td align="left" bgcolor="#003399"
background="../images/background.gif">
<img src="../images/right_triangle.png" alt="&gt;" 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> &nbsp;</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>