-
Notifications
You must be signed in to change notification settings - Fork 4
/
reference.html
1509 lines (1476 loc) · 72.5 KB
/
reference.html
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
<html lang="en"><HEAD>
<meta charset="utf-8" >
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" >
<link rel="stylesheet" href="assets/usage.css">
<TITLE>ImageMagick Examples -- Reference Index</TITLE>
<LINK REL="shortcut icon" HREF="img_www/favicon.ico">
<meta name="description" content="Use ImageMagick® to create, edit, compose, and convert bitmap images. Resize an image, crop it, change its shades and colors, add captions, and more.">
<!--[if gte IE 5.5000]><![if lt IE 7.0000]>
<script type="text/javascript" src="img_www/pngfix.js"></script>
<![endif]><![endif]-->
</HEAD><body><main class="container"><div class="magick-template"><div class="magick-header">
<H1>ImageMagick Examples -- Reference Index</H1>
<div>
<DL>
<DT><B>Index</B>
<DT><A HREF="."
><IMG SRC="img_www/granitesm_left.gif" BORDER=0 WIDTH=15 HEIGHT=15
> ImageMagick Examples Preface and Index</A>
<DD><A HREF="#commands"
><IMG SRC="img_www/granitesm_right.gif" BORDER=0 WIDTH=15 HEIGHT=15
> IM Command Index</A>
<DD><A HREF="#operators"
><IMG SRC="img_www/granitesm_right.gif" BORDER=0 WIDTH=15 HEIGHT=15
> Operator Options Index</A>
<DD><A HREF="#settings"
><IMG SRC="img_www/granitesm_right.gif" BORDER=0 WIDTH=15 HEIGHT=15
> Setting Options Index</A>
<DD><A HREF="#formats"
><IMG SRC="img_www/granitesm_right.gif" BORDER=0 WIDTH=15 HEIGHT=15
> File Formats Index</A>
</UL>
</DL></P>
This page attempts to index the various operators, settings and image formats
to the appropriate sections that detail that option. This will let you find
what aspect of image processing a specific option or is involved with, and
direct you to examples using that option. </P>
This is not however a complete list of options available in ImageMagick (see
<A HREF="https://imagemagick.org/script/command-line-options.php?#affine" >Command Line Options Reference Manual</A>
for the complete list), as IM Examples is far from complete in all aspects of
what IM can do. Most likely this index may not even be up-to-date with regard
to IM Examples, as it is hand generated, so any mistakes, or additions, should
be reported to me, (Email in page footer).
<HR><!-- ---------------------------------------------------------------- -->
<A NAME="commands"></A>
<H2>IM Command Index </H2>
<DIV ALIGN=center><FONT SIZE=+2><B>
<IMG SRC="img_www/const_barrier.gif" WIDTH=39 HEIGHT=35 ALIGN=top>
Under Construction
<IMG SRC="img_www/const_hole.gif" WIDTH=144 HEIGHT=50 ALIGN=middle>
</B></FONT></DIV></P>
<table class="table table-sm table-hover table-striped" width="100%" CELLSPACING=0>
<TR valign="top"><TD WIDTH=0><B>Command</B></TD>
<TD WIDTH=* COLSPAN=2><B>IM Example Reference...</B></TD>
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/convert.php" >Convert</A>
<TD><A HREF="basics/#convert"
>convert/process images between image formats</A>
<BR>See also <A HREF="basics/#example" >Working Example</A>
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/mogrify.php" >Mogrify</A>
<TD><A HREF="basics/#mogrify"
>in-place batch processing</A>
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/composite.php" >Composite</A>
<TD><A HREF="basics/#composite"
>Overlay two images in special ways</A>
<BR>See also <A HREF="compose/" >Compositing</A> IM Examples page
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/montage.php" >Montage</A>
<TD><A HREF="basics/#montage"
>Generating arrays of thumbnails</A>
<BR>See also <A HREF="montage/" >Montage</A> IM Examples page
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/identify.php" >Identify</A>
<TD><A HREF="basics/#identify"
>Output information an image</A>
<BR>See also <A HREF="files/#info" >info:</A> File Format
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/compare.php" >Compare</A>
<TD><A HREF="basics/#compare"
>Look for Differences</A>
<BR>See also <A HREF="compare/#compare" >Comparison Statistics</A>
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/display.php" >Display</A>
<TD><A HREF="basics/#display"
>Display Images and Slideshows</A>
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/animate.php" >Animate</A>
<TD><A HREF="basics/#animate"
>Animate Multiple Images</A>
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/conjure.php" >Conjure</A>
<TD><A HREF="basics/#conjure"
>IM experimental scripting Language</A>
</TR>
</TABLE></P>
</DIV>
<HR><!-- ---------------------------------------------------------------- -->
<A NAME="operators"></A>
<H2>Operator Options Index </H2>
<DIV ALIGN=center><FONT SIZE=+2><B>
<IMG SRC="img_www/const_barrier.gif" WIDTH=39 HEIGHT=35 ALIGN=top>
Under Construction
<IMG SRC="img_www/const_hole.gif" WIDTH=144 HEIGHT=50 ALIGN=middle>
</B></FONT></DIV></P>
<table class="table table-sm table-hover table-striped" width="100%" CELLSPACING=0>
<TR valign="top"><TD WIDTH=0><B>Operator</B></TD>
<TD WIDTH=* COLSPAN=2><B>IM Example References...</B></TD>
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/command-line-processing.php#stack"
>( )</A> (parenthesis)</CODE>
<TD><A HREF="basics/#parenthesis" >Image_Seqs</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#adaptive-resize"
>-adaptive-resize</A></CODE>
<TD><A HREF="resize/#adaptive-resize" >Adaptive Resize</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#adjoin"
>+adjoin</A></CODE>
<TD><A HREF="files/#adjoin" >Adjoin Multi-Images</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#alpha"
>-alpha</A></CODE>
<TD><A HREF="masking/#alpha" >Alpha Channels</A>
<TD><A HREF="misc/#transparent" >Virtual Pixels</A>,
<A HREF="compose/#copyopacity" >Masking</A>,
<A HREF="masking/#erase" >Mask Editing</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#append"
>-append</A></CODE>
<TD><A HREF="layers/#append" >Append</A>
<TD><A HREF="canvas/#tile_memory" >Tiling Images</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#annotate"
>-annotate</A></CODE>
<TD><A HREF="text/#annotate" >Annotate</A>
<TD><A HREF="misc/#annotate" >Annotate Args</A>
<A HREF="draw/#annotate" >Drawing Text</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#average"
>-evaluate-sequence mean</A></CODE>
<TD><A HREF="layers/#average" >Evaluate-Sequence</A>
<TD>Obsolete use "<CODE>-evaluate-sequence mean</CODE>"
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#average"
>-auto-orient</A></CODE>
<TD><A HREF="photos/#fix" >Photos</A>
<TD><A HREF="thumbnails/#general" >Thumbnails</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#blend"
>-blend</A> (composite)</CODE>
<TD><A HREF="compose/#blend" >Blend Usage</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#blur"
>-blur</A></CODE>
<TD><A HREF="blur/#blur" >Blurring Images</A>
<TD><A HREF="fonts/#fuzzy" >Fuzzy Font</A>,
<A HREF="canvas/#plasma" >Plasma</A>,
<A HREF="canvas/#random" >Random Noise</A>,
<A HREF="transform/#shade_blur" >Rounded Shade</A>,
<A HREF="blur/#shadow_internals" >Shadow Internals</A>,
<A HREF="misc/#spots" >Spots of Color</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#border"
>-border</A></CODE>
<TD><A HREF="crop/#border" >Border</A>
<TD><A HREF="thumbnails/#fancy" >Thumbnail</A>,
<A HREF="canvas/#specific" >Canvas</A>,
<A HREF="misc/#border" >Transparent</A>,
<A HREF="anim_mods/#flatten" >Multi-Image Flatten</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#charcoal"
>-charcoal</A></CODE>
<TD><A HREF="transform/#charcoal" >Charcoal</A>
<TD><A HREF="photo/#charcoal" >Photos</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#clone"
>-clamp</A></CODE>
<TD><A HREF="basics/#clamp" >Clamp HDRI</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#clone"
>-clone</A></CODE>
<TD><A HREF="basics/#clone" >Image Sequences</A>
<TD><A HREF="canvas/#tile_memory" >Tiling Images</A>,
(alt) <A HREF="files/#mpr" ><CODE>mpr:</CODE></A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#hald-clut"
>-clut</A></CODE>
<TD><A HREF="color_mods/#clut" >Color LUTs</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#coalesce"
>-coalesce</A></CODE>
<TD><A HREF="anim_basics/#coalesce" >Coalesce</A>
<TD><A HREF="layers/#coalesce" >Progressive Flatten</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#colorize"
>-colorize</A></CODE>
<TD><A HREF="color_mods/#colorize" >Color Tinting</A>
<TD><A HREF="canvas/#specific" >Canvas</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#colors"
>-colors</A></CODE>
<TD><A HREF="quantize/#colors" >Color Quantization</A>
<TD><A HREF="quantize/#colors_two" >Two Color Dither</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#colorspace"
>-colorspace</A></CODE>
<TD><A HREF="color_basics/#colorspace" >Color Space</A>
<TD><A HREF="canvas/#plasma_greyscale" >Plasma</A>,
<A HREF="color_mods/#grayscale" >Grayscale</A>,
<A HREF="formats/#color_profile_mods" >Profiles</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#combine"
>-combine</A></CODE>
<TD><A HREF="color_basics/#combine" >Combine</A>
<TD><A HREF="mapping/#distortion_unified" >Distortion Maps</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#composite"
>-composite</A></CODE>
<TD><A HREF="compose/#compose" >Image Composition</A>
<TD><A HREF="layers/#convert" >Multiple Images</A>,
<A HREF="thumbnails/#framing" >Framing Techniques</A>,
<A HREF="anim_mods/#composite" >Animations</A>,
<A HREF="transform/#gradient_math" >Gradient Math</A>
<A HREF="mapping/#blur" >Blur Mapping</A>
<A HREF="mapping/#displace" >Displace Mapping</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#contrast-stretch"
>-contrast-stretch</A></CODE>
<TD><A HREF="color_mods/#contrast-stretch" >contrast-stretch</A>
<TD><A HREF="color_mods/#histogram" >histogram</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#convolve"
>-convolve</A></CODE>
<TD><A HREF="convolve/#convolve" >Convolution</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#decipher"
>-decipher</A></CODE>
<TD><A HREF="transform/#encipher" >Encrypting Images</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#define"
>-define</A></CODE>
<TD><A HREF="basics/#define" >Image Artifacts</A>
<A HREF="filter/#options" >Expert Filter Options</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#delete"
>-delete</A></CODE>
<TD><A HREF="basics/#delete" >Image_Seqs</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#dissolve"
>-dissolve</A> (composite)</CODE>
<TD><A HREF="compose/#dissolve" >Dissolve</A>
<TD><A HREF="annotating/#wmark_image" >Watermarking</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#distort"
>-distort</A></CODE>
<TD><A HREF="distorts/#distort" >Distort</A>
<TD><A HREF="resize/#distort" >Resize</A>,
<A HREF="misc/#interpolate_line" >Interpolate</A>,
<A HREF="canvas/#gradient_distort" >Gradient</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#draw"
>-draw</A></CODE>
<TD><A HREF="draw/#intro" >Draw</A>
<TD><A HREF="draw/#primitives" >Primitives</A>,
<A HREF="draw/#mvg" >MVG</A>,
<A HREF="canvas/#specific" >Canvas Clearing</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#duplicate"
>-duplicate</A></CODE>
<TD><A HREF="basics/#duplicate" >Image Seqs</A>
<TD><A HREF="anim_mods/#morph" >Color Morphing</A>,
<A HREF="anim_mods/#distort" >Animated Distorts</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#edge"
>-edge</A></CODE>
<TD><A HREF="transform/#edge" >Edge Detection</A>
<TD><A HREF="photos/#color-in" >Color-In Image</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#emboss"
>-emboss</A></CODE>
<TD><A HREF="transform/#emboss" >Emboss</A>
<TD>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#encipher"
>-encipher</A></CODE>
<TD><A HREF="transform/#encipher" >Encrypting</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#evaluate"
>-evaluate</A></CODE>
<TD><A HREF="transform/#evaluate" >Math Transform</A>
<TD><A HREF="color_basics/#zeroing" >Zeroing Channels</A>,
<A HREF="color_basics/#modulate_diy" >Modulate DIY</A>
<A HREF="color_mods/#grayscale" >Gray-scaling</A>,
<A HREF="canvas/#other" >Canvas Clearing</A>,
<A HREF="canvas/#gradient_functions" >Gradients</A>,
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#evaluate-sequence"
>-evaluate-sequence</A></CODE>
<TD><A HREF="layers/#evaluate-sequence" >Evaluate-Sequence</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#extent"
>-extent</A></CODE>
<TD><A HREF="crop/#extent" >Extent Edge/Crop</A>
<TD><A HREF="thumbnails/#pad" >Pad/Fill Image</A>,
<A HREF="canvas/#specific" >Canvas</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#flatten"
>-flatten</A></CODE>
<TD><A HREF="layers/#flatten" >Flatten</A>
<TD><A HREF="canvas/#specific" >Canvas</A>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#flip"
>-flip</A></CODE>
<TD><A HREF="warping/#flip" >Simple Distorts</A>
<TD><A HREF="thumbnails/#rounded" >Rounded Corners</A>,
<A HREF="anim_mods/#morph" >Color Morphing</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#floodfill"
>-floodfill</A></CODE>
<TD><A HREF="color_basics/#floodfill" >Replace Areas</A>
<TD><A HREF="color_basics/#fuzz" >Fuzz Factor</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#flop"
>-flop</A></CODE>
<TD><A HREF="warping/#flip" >Simple Distorts</A>
<TD><A HREF="thumbnails/#rounded" >Rounded Corners</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#frame"
>-frame</A></CODE>
<TD><A HREF="crop/#frame" >Frame</A>
<TD><A HREF="thumbnails/#frame" >Thumbnail</A>,
<A HREF="misc/#border" >Transparent</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#function"
>-function</A></CODE>
<TD><A HREF="transform/#function" >Math Transform</A>
<TD><A HREF="color_mods/#curves" >Curves Adjustment</A>,
<A HREF="canvas/#gradient_functions" >Gradients</A>,
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#frame"
>-fx</A></CODE>
<TD><A HREF="transform/#fx" >DIY Image Op</A>
<TD><A HREF="transform/#fx_escapes" >FX Escapes</A>,
<A HREF="canvas/#specific" >Canvas Create</A>,
<A HREF="canvas/#gradient_fx" >DIY Gradient</A>,
<A HREF="canvas/#random" >Random Noise</A>,
<A HREF="color_mods/#color_lut" >Color Lookup</A>,
<A HREF="quantize/#diy_hlines" >DIY O-Dither</A>,
<A HREF="quantize/#diy_symbols" >Symbol Dither</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#gamma"
>-gamma</A></CODE>
<TD><A HREF="color_mods/#gamma" >Gamma Adj</A>
<TD><A HREF="color_mods/#level_gamma" >Level Gamma</A>,
<A HREF="color_basics/#zeroing" >Zeroing Channels</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#gaussian-blur"
>-gaussian-blur</A></CODE>
<TD><A HREF="blur/#blur" >Gaussian Blur</A>
<TD><A HREF="blur/#blur_gaussian" >Blur vs Gaussian</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#geomtery"
>-geometry</A></CODE>
<TD><A HREF="resize/#geometry" >Geometry (resize)</A>
<TD><A HREF="compose/#geometry" >Composite</A>,
<A HREF="layers/#convert" >Multi-Composite</A>,
<A HREF="filter/#filter" >Filters</A>,
<A HREF="filter/#support" >Support</A>,
<A HREF="resize/#space_fill" >Fill Space</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#hald-clut"
>-hald-clut</A></CODE>
<TD><A HREF="color_mods/#hald" >Hald CLUTs</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#identify"
>-identify</A></CODE>
<TD><A HREF="basics/#identify_alt" >Text Output</A>
<TD><A HREF="files/#info" ><CODE>info:</CODE></A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#implode"
>-implode</A></CODE>
<TD><A HREF="warping/#implode" >Implode</A>
<TD><A HREF="masking/#region_warping" >Local Warping</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#insert"
>-insert</A></CODE>
<TD><A HREF="basics/#insert" >Image Seqs</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#list"
>-list</A></CODE>
<TD><A HREF="basics/#controls" >IM Controls</A>
<TD>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#lat"
>-lat</A></CODE>
<TD><A HREF="transform/#lat" >LAT</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#layers"
>-layers</A></CODE>
<TD>
<TD><A HREF="layers/#flatten" >Flatten/Mosaic/Merge</A>,
<A HREF="anim_mods/#trim" >Trim Bounds</A>
<A HREF="anim_basics/#compare" >Frame Compare</A>,
<A HREF="anim_opt/#optimize" >GIF Optimizations</A>,
<A HREF="anim_mods/#composite" >Image List Composite</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#level"
>-level</A></CODE>
<TD><A HREF="color_mods/#level" >Level Adj</A>
<TD><A HREF="color_mods/#level_plus" >Level Plus</A>,
<A HREF="color_mods/#level_gamma" >Level Gamma</A>,
<A HREF="transform/#math_multiply" >Gradient Math</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#level-colors"
>-level-colors</A></CODE>
<TD><A HREF="color_mods/#level-colors" >Level Colors</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#linear-stretch"
>-linear-stretch</A></CODE>
<TD><A HREF="color_mods/#histogram" >histogram</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#liquid-rescale"
>-liquid-rescale</A></CODE>
<TD><A HREF="resize/#liquid-rescale" >Liquid Rescale</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#remap"
>-remap</A></CODE>
<TD><A HREF="quantize/#remap" >Remap Colors</A>
<TD><A HREF="video/#gif" >Video Optimize</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#matte"
>-alpha set</A></CODE>
<TD><A HREF="masking/#matte" >Alpha Channels</A>
<TD><A HREF="canvas/#other" >Canvas Creation</A>,
<A HREF="misc/#transparent" >Virtual Pixels</A>,
<A HREF="compose/#copyopacity" >Masking</A>,
<A HREF="masking/#erase" >Mask Editing</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#median"
>-median</A></CODE>
<TD>
<TD><A HREF="quantize/#dither_speckle" >Dither Speckle</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#modulate"
>-modulate</A></CODE>
<TD><A HREF="color_mods/#modulate" >Modulate</A>
<TD><A HREF="color_mods/#grayscale" >Grayscale</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#monochrome"
>-monochrome</A></CODE>
<TD><A HREF="quantize/#monochrome" >BW Dither</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#monochrome"
>-morph</A></CODE>
<TD><A HREF="anim_mods/#morph" >Color Morph</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#morphology"
>-morphology</A></CODE>
<TD><A HREF="morphology/#intro" >Morphology</A>
<TD>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#mosaic"
>-mosaic</A></CODE>
<TD><A HREF="layers/#mosaic" >Mosaic</A>
<TD><A HREF="blur/#shadow" >Shadows</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#motion-blur"
>-motion-blur</A></CODE>
<TD><A HREF="blur/#motion-blur" >Motion Blur</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#negate"
>-negate</A></CODE>
<TD><A HREF="color_mods/#negate" >Negate Images</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#normalize"
>-normalize</A></CODE>
<TD><A HREF="color_mods/#normalize" >Normalize</A>
<TD><A HREF="canvas/#plasma" >Plasma Canvas</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#noise"
>-noise</A></CODE>
<TD>
<TD><A HREF="canvas/#random" >Random Noise</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#opaque"
>-opaque</A></CODE>
<TD><A HREF="color_basics/#replace" >Color Replace</A>
<TD><A HREF="color_basics/#fuzz" >Fuzz Factor</A>
<A HREF="canvas/#pattern" >Pattern Mods</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#ordered-dither"
>-ordered-dither</A></CODE>
<TD><A HREF="quantize/#ordered-dither" >Ordered Dither</A>
<TD><A HREF="quantize/#halftone" >Halftone Dither</A>,
<A HREF="quantize/#diy_hlines" >DIY O-Dither</A>,
<A HREF="video/#gif" >Video Optimize</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#paint"
>-paint</A></CODE>
<TD><A HREF="transform/#paint" >Oil Painting</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#pen"
>-pen</A></CODE>
<TD>OBSOLETE
<TD>See <A HREF="#fill" >fill</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#polaroid"
>-polaroid</A></CODE>
<TD><A HREF="transform/#polaroid" >Polaroid Transform</A>
<TD><A HREF="thumbnails/#polaroid" >Thumbnail</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#posterize"
>-posterize</A></CODE>
<TD><A HREF="quantize/#posterize" >Posterize</A>
<TD><A HREF="canvas/#other" >Canvas</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#print"
>-print</A></CODE>
<TD><A HREF="basics/#identify_alt" >Text Output</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#profile"
>-profile</A></CODE>
<TD><A HREF="formats/#profiles" >Image Profiles</A>
<TD><A HREF="thumbnails/#profiles" >Thumbnails</A>,
<A HREF="formats/#jpg_read" >JPG Read</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#radial-blur"
>-radial-blur</A></CODE>
<TD><A HREF="blur/#radial-blur" >Radial Blur</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#raise"
>-raise</A></CODE>
<TD><A HREF="transform/#raise" >Raise/Sink Borders</A>
<TD><A HREF="thumbnails/#button" >Thumbnail</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#random-threshold"
>-random-threshold</A></CODE>
<TD><A HREF="quantize/#random-threshold" >Random Dither</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#repage"
>-repage</A></CODE>
<TD><A HREF="crop/#crop_repage" >Canvas Removal</A>
<TD><A HREF="anim_basics/#gif_anim" >Gif Animations</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#repage"
>-recolor</A></CODE>
<TD><A HREF="color_mods/#recolor" >Recolor</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#resample"
>-resample</A></CODE>
<TD><A HREF="resize/#resample" >Resample</A>
<TD><A HREF="text/#postscript" ><CODE>ps:</CODE></A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#resample"
>-region</A></CODE>
<TD><A HREF="masking/#regions" >Regions</A>
<TD><A HREF="masking/#region_internals" >Region Internals</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#resize"
>-resize</A></CODE>
<TD><A HREF="resize/#resize" >Resize</A>
<TD><A HREF="text/#postscript" ><CODE>ps:</CODE></A>,
<A HREF="thumbnails/#creation" >Thumbnail</A>,
<A HREF="canvas/#gradient_resize" >Gradient</A>,
<A HREF="anim_mods/#resize" >Animations</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#roll"
>-roll</A></CODE>
<TD><A HREF="warping/#roll" >Simple Distorts</A>
<TD>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#rotate"
>-rotate</A></CODE>
<TD><A HREF="warping/#rotate" >Rotate Image</A>
<TD><A HREF="warping/#rect_rotates" >Rectangular Rotate</A>,
<A HREF="thumbnails/#polaroid" >Thumbnail</A>,
<A HREF="canvas/#gradient_rotated" >Gradient</A>,
<A HREF="masking/#region_internals" >Regions</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#sample"
>-sample</A></CODE>
<TD><A HREF="resize/#sample" >Sample</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#scale"
>-scale</A></CODE>
<TD><A HREF="resize/#scale" >Scale</A>
<TD><A HREF="canvas/#solid" >Canvas</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#segment"
>-segment</A></CODE>
<TD><A HREF="compare/#type_general" >Image Sorting</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#separate"
>-separate</A></CODE>
<TD><A HREF="color_basics/#separate" >Separate</A>
<TD><A HREF="canvas/#plasma_greyscale" >Plasma</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#sepia"
>-sepia</A></CODE>
<TD><A HREF="color_mods/#sepia" >Sepia Tone</A>
<TD><A HREF="color_mods/#duotone" >Duotone Colors</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#set"
>-set</A></CODE>
<TD><A HREF="basics/#set" >Image Properities</A>
<TD><A HREF="anim_basics/#gif_anim" >Gif Animations</A>,
<A HREF="transform/#fx_escapes" >Save Options</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#sketch"
>-sketch</A></CODE>
<TD><A HREF="photos/#pencil" >Pencil Sketch</A>
<TD><A HREF="photo/#pencil" >Photos</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#shade"
>-shade</A></CODE>
<TD><A HREF="transform/#shade" >3D Highlights</A>
<TD><A HREF="fonts/#bevel" >Bevel Font</A>,
<A HREF="canvas/#plasma_greyscale" >Plasma</A>,
<A HREF="advanced/#3d-bullets" >3D Bullets</A>,
<A HREF="advanced/#3d-logos" >3D Logo</A>,
<A HREF="advanced/#jigsaw" >Jigsaw</A>,
<A HREF="advanced/#gel_effects" >Gel Effect</A>,
<A HREF="advanced/#aqua_effects" >Aqua Effect</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#shadow"
>-shadow</A></CODE>
<TD><A HREF="blur/#shadow" >Shadow</A>
<TD><A HREF="thumbnails/#shadow" >Thumbnail</A>,
<A HREF="anim_mods/#shadow" >Animation</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#sharpen"
>-sharpen</A></CODE>
<TD><A HREF="convolve/#unsharpen" >Unsharp Convolve</A>
<TD><A HREF="convolve/#sharpen" >True Sharpen</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#sigmoidal-contrast"
>-sigmoidal-contrast</A></CODE>
<TD><A HREF="color_mods/#sigmoidal" >Sigmoidal Contrast</A>
<TD><A HREF="photos/#brightening" >Under-exposed Photos</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#solarize"
>-solarize</A></CODE>
<TD><A HREF="color_mods/#solarize" >Solarize</A>
<TD><A HREF="transform/#edge_shapes" >Shape Outlines</A>,
<A HREF="compare/#type_general" >Image Sorting</A>,
<A HREF="canvas/#random_flux" >Random Flux</A>,
<A HREF="transform/#edge_bitmap" >Edge Outlines</A>,
<A HREF="transform/#math_multiply" >Gradient Math</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#sparse-color"
>-sparse-color</A></CODE>
<TD><A HREF="canvas/#sparse-color" >Sparse Color</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#splice"
>-splice</A></CODE>
<TD><A HREF="crop/#splice" >Splice</A>
<TD><A HREF="misc/#splice" >Splice DIY</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#spread"
>-spread</A></CODE>
<TD>
<TD><A HREF="thumbnails/#torn" >Torn Edge</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#stegano"
>-stegano</A></CODE>
<TD><A HREF="transform/#stegano" >Embeding Images</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#strip"
>-strip</A></CODE>
<TD><A HREF="thumbnails/#profiles" >Image Profiles</A>
<TD><A HREF="formats/#jpg_read" >JPG Read</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#swap"
>-swap</A></CODE>
<TD><A HREF="basics/#swap" >Image Seqs</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#swirl"
>-swirl</A></CODE>
<TD><A HREF="warping/#swirl" >Swirl</A>
<TD><A HREF="masking/#region_warping" >Local Warping</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#taint"
>-taint</A></CODE>
<TD><A HREF="files/#taint" >Delegates</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#threshold"
>-threshold</A></CODE>
<TD><A HREF="quantize/#threshold" >Threshold</A>
<TD><A HREF="canvas/#other" >Canvas</A>,
<A HREF="color_basics/#zeroing" >Zeroing Channels</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#thumbnail"
>-thumbnail</A></CODE>
<TD><A HREF="thumbnails/#creation" >Thumbnail</A>
<TD><A HREF="resize/#thumbnail" >Resize</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#tint"
>-tint</A></CODE>
<TD><A HREF="color_mods/#tint" >Tint Grey</A>
<TD>
</TR>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#transform"
>-transform</A></CODE>
<TD><A HREF="distorts/affine/#affine" >Affine Transform</A>
<TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#transparent"
>-transparent</A></CODE>
<TD><A HREF="color_basics/#replace" >Color Replace</A>
<TD><A HREF="color_basics/#fuzz" >Fuzz Factor</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#transpose"
>-transpose</A></CODE>
<TD><A HREF="warping/#transpose" >Simple Distorts</A>
<TD>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#transverse"
>-transverse</A></CODE>
<TD><A HREF="warping/#transverse" >Simple Distorts</A>
<TD>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#type"
>-type</A></CODE>
<TD><A HREF="basics/#type" >Type</A>
<TD><A HREF="color_mods/#grayscale" >Grayscale</A>
</TR>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#unique-colors"
>-unique-colors</A></CODE>
<TD><A HREF="quantize/#extract" >Image Colors</A>
<TD><A HREF="files/#txt" ><CODE>txt:</CODE></A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#unsharp"
>-unsharp</A></CODE>
<TD><A HREF="convolve/#unsharpen" >Unsharp Convolve</A>
<TD><A HREF="resize/#resize_unsharp" >Resize Unsharp</A>,
<A HREF="convolve/#sharpen" >True Sharpen</A>
</TR>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#vignette"
>-vignette</A></CODE>
<TD><A HREF="transform/#vignette" >Vignette</A>
<TD><A HREF="thumbnails/#soft_edges" >Thumbnail</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#watermark"
>-watermark</A> (composite)</CODE>
<TD><A HREF="compose/#watermark" >Watermark</A>
<TD><A HREF="annotating/#wmark_image" >Watermarking</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#write"
>-write</A></CODE>
<TD><A HREF="files/#write" >Write Multiple</A>
<TD>(special use) <A HREF="files/#mpr" ><CODE>mpr:</CODE></A>
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/command-line-processing.php#input"
>format:</A> (reading)</CODE>
<TD><A HREF="files/#read" >Reading Images</A>
<TD>(See <A HREF="#formats" >File Format Index</A> for specific formats)
</TR>
<TR valign="top"><TD><CODE><A
HREF="https://imagemagick.org/script/command-line-processing.php#output"
>format:</A> (writing)</CODE>
<TD><A HREF="files/#save" >Saving Images</A>
<TD>(See <A HREF="#formats" >File Format Index</A> for specific formats)
</TR>
<TR valign="top"><TD><CODE><!A
HREF="https://imagemagick.org/script/command-line-processing.php#input"
>format:</A> (large images)</CODE>
<TD><A HREF="files/#massive" >Massive Images</A>
<TD><A HREF="files/#mpc" ><CODE>mpc:</CODE></A>
</TR>
</TABLE></P>
<HR><!-- ---------------------------------------------------------------- -->
<A NAME="settings"></A>
<H2>Setting Options Index </H2>
<DIV ALIGN=center><FONT SIZE=+2><B>
<IMG SRC="img_www/const_barrier.gif" WIDTH=39 HEIGHT=35 ALIGN=top>
Under Construction
<IMG SRC="img_www/const_hole.gif" WIDTH=144 HEIGHT=50 ALIGN=middle>
</B></FONT></DIV></P>
<table class="table table-sm table-hover table-striped" width="100%" CELLSPACING=0>
<TR valign="top"><TD WIDTH=0><B>Setting</B></TD>
<TD WIDTH=0><B>Type</B></TD>
<TD WIDTH=* COLSPAN=2><B>IM Example References...</B></TD>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#affine"
>-affine</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD><A HREF="distorts/affine/#affine" >Affine</A>
<TD><A HREF="distorts/#affine" >Affine Projection</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#attenuate"
>-attenuate</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD>
<TD> (noise amplitude)
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#authenticate"
>-authenticate</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD>
<TD> (noise amplitude)
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#background"
>-background</A></CODE>
<TH><FONT SIZE=-2>In/Op/Out</FONT></TD>
<TD><A HREF="text/#label" ><CODE>label:</CODE></A>,
<A HREF="text/#caption" ><CODE>caption:</CODE></A>,
<A HREF="text/#text" ><CODE>text:</CODE></A>
<TD><A HREF="draw/#reading" ><CODE>mvg:</CODE></A>,
<A HREF="draw/#svg" ><CODE>svg:</CODE></A>,
<A HREF="montage/#color" >Montage</A>,
<A HREF="layers/#flatten" >Flatten & Mosaic</A>
<A HREF="crop/#splice" >Splice</A>
<A HREF="crop/#extend" >Extend</A>
<A HREF="color_basics/#combine" >Combine</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#bordercolor"
>-bordercolor</A></CODE>
<TH><FONT SIZE=-2>In/Op/Out</FONT></TD>
<TD><A HREF="crop/#border" >Border</A>
<TD><A HREF="montage/#color" >Montage</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#bias"
>-bias</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD><A HREF="convolve/#bias" >Convolve Bias</A>
<TD><A HREF="convolve/#correlate" >Correlate</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#blackpoint-compensation"
>-blackpoint-compensation</A></CODE>
<TH><FONT SIZE=-2>Out</FONT></TD>
<TD><A HREF="formats/#color_profile_mods" >Profiles</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#channel"
>-channel</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD><A HREF="color_basics/#channels" >Color Channels</A>
<TD><A HREF="masking/#matte" >Matte Channel</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#clip"
>-clip</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD><A HREF="masking/#clip" >Clip Masks</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#clip-mask"
>-clip-mask</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD><A HREF="masking/#clip-path" >Clip Path</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#clip-path"
>-clip-path</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD><A HREF="masking/#clip-path" >Clip Path</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#compose"
>-compose</A></CODE>
<TH><FONT SIZE=-2>In/Op</FONT></TD>
<TD><A HREF="compose/#duff-porter" >Compose Methods</A>
<TD><A HREF="anim_mods/#composite" >Animations</A>,
<A HREF="layers/#compose" >Flatten</A>,
<A HREF="montage/#controls" >Montage</A>,
<A HREF="crop/#border" >Border</A>,
<A HREF="crop/#frame" >Frame</A>,
<A HREF="transform/#gradient_math" >Gradient Math</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#compress"
>-compress</A></CODE>
<TH><FONT SIZE=-2>Out</FONT></TD>
<TD><A HREF="files/#save" >Saving Images</A>
<TD><A HREF="formats/#jpg_write" >JPG Write</A>,
<A HREF="formats/#tiff" >TIFF Notes</A>,
<A HREF="formats/#netpbm" >NetPBM</A>,
<A HREF="formats/#eps" >EPS Notes</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#debug"
>-debug</A></CODE>
<TH><FONT SIZE=-2>Ctrl</FONT></TD>
<TD><A HREF="basics/#debug" >IM Controls</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#define"
>-define</A></CODE>
<TH><FONT SIZE=-2>Op/Out</FONT></TD>
<TD><A HREF="basics/#attributes" >Image Attributes</A>
<TD><A HREF="formats/#jpg_write" >JPG Write</A>,
<A HREF="formats/#tiff" >TIFF Notes</A>
<A HREF="formats/#pdf" >PDF Notes</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#delay"
>-delay</A></CODE>
<TH><FONT SIZE=-2>In</FONT></TD>
<TD><A HREF="anim_basics/#gif_anim" >Gif Animations</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#density"
>-density</A></CODE>
<TH><FONT SIZE=-2>In/Out</FONT></TD>
<TD><A HREF="text/#pointsize" >Font Size Control</A>
<TD><A HREF="text/#postscript" ><CODE>ps:</CODE></A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#depth"
>-depth</A></CODE>
<TH><FONT SIZE=-2>Out</FONT></TD>
<TD><A HREF="basics/#depth" >Depth & Quality</A>
<TD><A HREF="files/#txt" ><CODE>txt:</CODE></A>,
<A HREF="formats/#netpbm" >NetPBM</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#dispose"
>-dispose</A></CODE>
<TH><FONT SIZE=-2>In</FONT></TD>
<TD><A HREF="anim_basics/#dispose" >GIF Disposal</A>
<TD><A HREF="layers/#coalesce" >Progressive Flatten</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#dither"
>+dither</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD><A HREF="quantize/#dither_error" >E-Dithers</A>
<TD><A HREF="quantize/#colors" >Quantization</A>,
<A HREF="quantize/#remap" >ReMap Colors</A>,
<A HREF="quantize/#posterize" >Posterize</A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#encoding"
>-encoding</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD>
<TD>(text encoding, default: UTF8)
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#endian"
>-endian</A></CODE>
<TH><FONT SIZE=-2>Out</FONT></TD>
<TD><A HREF="formats/#mono" ><CODE>tiff:</CODE></A>
</TR>
<TR valign="top"><TD><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#extract"
>-extract</A></CODE>
<TH><FONT SIZE=-2>In</FONT></TD>
<TD><A HREF="files/#read_mods" >Read Mods</A>
<TD><A HREF="files/#massive" >Massive Images</A>
</TR>
<TR valign="top"><TD><A NAME="fill"></A><CODE><A HREF="https://imagemagick.org/script/command-line-options.php?#fill"
>-fill</A></CODE>
<TH><FONT SIZE=-2>Op</FONT></TD>
<TD><A HREF="draw/#primitives" >Draw Primatives</A>
<TD><A HREF="draw/#bounds" >Fill Bounds</A>,
<A HREF="text/#label" ><CODE>label:</CODE></A>,