File: import.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 (1271 lines) | stat: -rw-r--r-- 52,616 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
<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="import"
id="import"></a>import</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="imp-top"
id="imp-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>import - capture some or all of an X server screen and save the
image to a file.</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="imp-contents"
id="imp-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="#imp-desc">Description</a></dt>
<dt><a href="#imp-exam">Examples</a></dt>
<dt><a href="#imp-opti">Options</a></dt>
<dt><a href="#imp-envi">Environment</a></dt>
<dt><a href="#imp-file">Configuration Files</a></dt>
<dt><a href="#imp-auth">Authors</a></dt>
<dt><a href="#imp-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="&gt;" border="0"
height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1"><a name="imp-syno"
id="imp-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>import</strong> <strong>[</strong> <em>options</em>
<strong>... ]</strong> <em>file</em></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="imp-desc"
id="imp-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>Import</strong> reads an image from any visible window
on an X server and outputs it as an image file. You can capture a
single window, the entire screen, or any rectangular portion of the
screen. Use <em><a href="display.html">display</a></em> for
redisplay, printing, editing, formatting, archiving, image
processing, etc. of the captured image.</p>
<p>The target window can be specified by id, name, or may be
selected by clicking the mouse in the desired window. If you press
a button and then drag, a rectangle will form which expands and
contracts as the mouse moves. To save the portion of the screen
defined by the rectangle, just release the button. The keyboard
bell is rung once at the beginning of the screen capture and twice
when it completes.</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="imp-exam"
id="imp-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 select an X window or an area of the screen with the mouse
and save it in the MIFF image format to a file entitled
window.miff, use:</p>
<pre>
    import window.miff
</pre>
<p>To select an X window or an area of the screen with the mouse
and save it in the Encapsulated PostScript format to include in
another document, use:</p>
<pre>
    import figure.eps
</pre>
<p>To capture the entire X server screen in the JPEG image format
in a file entitled root.jpeg, without using the mouse, use:</p>
<pre>
    import -window root root.jpeg
</pre>
<p>To capture the 512x256 area at the upper right corner of the X
server screen in the PNG image format in a well-compressed file
entitled corner.png, without using the mouse, use:</p>
<pre>
    import -window root -crop 512x256-0+0 -quality 90
           corner.png
</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="imp-opti"
id="imp-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>Options are processed in command line order. Any option you
specify on the command line remains in effect until it is
explicitly changed by specifying the option again with a different
effect.</p>
<p><strong>Import</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>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-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"><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-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-comment">-comment</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>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="&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-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">-descend</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>obtain image by descending window hierarchy</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-encoding">-encoding</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>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="&gt;"
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>&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>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="&gt;"
border="0" height="14"
width="15" /><b><font face="Helvetica, Arial"><font color="#FFFFFF">
<font size="+1">-frame</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>include the X window frame in the imported
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-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-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-label">-label</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>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="&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">-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"><a href="ImageMagick.html#details-negate">-negate</a></font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>replace every pixel with its complementary
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-page">-page</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>&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>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="&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 snapshots [import]</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">-ping</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>efficiently determine image characteristics</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">-pointsize
<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>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="&gt;"
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>&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>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="&gt;"
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>&lt;width&gt;x&lt;height&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>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="&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-scene">-scene</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>set scene number</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-screen">-screen</a></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 screen to capture</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">-silent</font></font></font></b></td></tr></table>
<table width="90%" border="0" cellspacing="0" cellpadding="8">
<tr>
<td width="6%"><br /></td>
<td>operate silently</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-snaps">-snaps</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>number of screen snapshots</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-thumbnail">-thumbnail</a>
<i>&lt;width&gt;x&lt;height&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>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="&gt;"
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>&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>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="&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>
<p>For a more detailed description of each option, see Options,
above.
<a href="ImageMagick.html"><em>ImageMagick(1)</em></a>.<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="imp-envi"
id="imp-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="imp-file" id="imp-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="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>