]> granicus.if.org Git - imagemagick/blob - MagickCore/option.c
(no commit message)
[imagemagick] / MagickCore / option.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %                   OOO   PPPP   TTTTT  IIIII   OOO   N   N                   %
7 %                  O   O  P   P    T      I    O   O  NN  N                   %
8 %                  O   O  PPPP     T      I    O   O  N N N                   %
9 %                  O   O  P        T      I    O   O  N  NN                   %
10 %                   OOO   P        T    IIIII   OOO   N   N                   %
11 %                                                                             %
12 %                                                                             %
13 %                         MagickCore Option Methods                           %
14 %                                                                             %
15 %                              Software Design                                %
16 %                                   Cristy                                    %
17 %                                 March 2000                                  %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2014 ImageMagick Studio LLC, a non-profit organization      %
21 %  dedicated to making software imaging solutions freely available.           %
22 %                                                                             %
23 %  You may not use this file except in compliance with the License.  You may  %
24 %  obtain a copy of the License at                                            %
25 %                                                                             %
26 %    http://www.imagemagick.org/script/license.php                            %
27 %                                                                             %
28 %  Unless required by applicable law or agreed to in writing, software        %
29 %  distributed under the License is distributed on an "AS IS" BASIS,          %
30 %  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   %
31 %  See the License for the specific language governing permissions and        %
32 %  limitations under the License.                                             %
33 %                                                                             %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35 %
36 %
37 %
38 */
39 \f
40 /*
41   Include declarations.
42 */
43 #include "MagickCore/studio.h"
44 #include "MagickCore/artifact.h"
45 #include "MagickCore/cache.h"
46 #include "MagickCore/color.h"
47 #include "MagickCore/compare.h"
48 #include "MagickCore/constitute.h"
49 #include "MagickCore/distort.h"
50 #include "MagickCore/draw.h"
51 #include "MagickCore/effect.h"
52 #include "MagickCore/exception.h"
53 #include "MagickCore/exception-private.h"
54 #include "MagickCore/fourier.h"
55 #include "MagickCore/fx.h"
56 #include "MagickCore/gem.h"
57 #include "MagickCore/geometry.h"
58 #include "MagickCore/image.h"
59 #include "MagickCore/image-private.h"
60 #include "MagickCore/layer.h"
61 #include "MagickCore/mime-private.h"
62 #include "MagickCore/memory_.h"
63 #include "MagickCore/monitor.h"
64 #include "MagickCore/montage.h"
65 #include "MagickCore/morphology.h"
66 #include "MagickCore/option.h"
67 #include "MagickCore/pixel.h"
68 #include "MagickCore/policy.h"
69 #include "MagickCore/property.h"
70 #include "MagickCore/quantize.h"
71 #include "MagickCore/quantum.h"
72 #include "MagickCore/resample.h"
73 #include "MagickCore/resource_.h"
74 #include "MagickCore/splay-tree.h"
75 #include "MagickCore/statistic.h"
76 #include "MagickCore/string_.h"
77 #include "MagickCore/token.h"
78 #include "MagickCore/utility.h"
79 \f
80 /*
81   ImageMagick options.
82 */
83 static const OptionInfo
84   AlignOptions[] =
85   {
86     { "Undefined", UndefinedAlign, UndefinedOptionFlag, MagickTrue },
87     { "Center", CenterAlign, UndefinedOptionFlag, MagickFalse },
88     { "End", RightAlign, UndefinedOptionFlag, MagickFalse },
89     { "Left", LeftAlign, UndefinedOptionFlag, MagickFalse },
90     { "Middle", CenterAlign, UndefinedOptionFlag, MagickFalse },
91     { "Right", RightAlign, UndefinedOptionFlag, MagickFalse },
92     { "Start", LeftAlign, UndefinedOptionFlag, MagickFalse },
93     { (char *) NULL, UndefinedAlign, UndefinedOptionFlag, MagickFalse }
94   },
95   AlphaChannelOptions[] =
96   {
97     { "Undefined", UndefinedAlphaChannel, UndefinedOptionFlag, MagickTrue },
98     { "Activate", ActivateAlphaChannel, UndefinedOptionFlag, MagickFalse },
99     { "Background", BackgroundAlphaChannel, UndefinedOptionFlag, MagickFalse },
100     { "Copy", CopyAlphaChannel, UndefinedOptionFlag, MagickFalse },
101     { "Deactivate", DeactivateAlphaChannel, UndefinedOptionFlag, MagickFalse },
102     { "Extract", ExtractAlphaChannel, UndefinedOptionFlag, MagickFalse },
103     { "Off", DeactivateAlphaChannel, UndefinedOptionFlag, MagickFalse },
104     { "On", ActivateAlphaChannel, UndefinedOptionFlag, MagickFalse },
105     { "Opaque", OpaqueAlphaChannel, UndefinedOptionFlag, MagickFalse },
106     { "Remove", RemoveAlphaChannel, UndefinedOptionFlag, MagickFalse },
107     { "Set", SetAlphaChannel, UndefinedOptionFlag, MagickFalse },
108     { "Shape", ShapeAlphaChannel, UndefinedOptionFlag, MagickFalse },
109     { "Reset", SetAlphaChannel, DeprecateOptionFlag, MagickTrue },
110     { "Transparent", TransparentAlphaChannel, UndefinedOptionFlag, MagickFalse },
111     { (char *) NULL, UndefinedAlphaChannel, UndefinedOptionFlag, MagickFalse }
112   },
113   BooleanOptions[] =
114   {
115     { "False", MagickFalse, UndefinedOptionFlag, MagickFalse },
116     { "True", MagickTrue, UndefinedOptionFlag, MagickFalse },
117     { "0", MagickFalse, UndefinedOptionFlag, MagickFalse },
118     { "1", MagickTrue, UndefinedOptionFlag, MagickFalse },
119     { (char *) NULL, MagickFalse, UndefinedOptionFlag, MagickFalse }
120   },
121   CacheOptions[] =
122   {
123     { "Disk", DiskCache, UndefinedOptionFlag, MagickFalse },
124     { "Distributed", DistributedCache, UndefinedOptionFlag, MagickFalse },
125     { "Map", MapCache, UndefinedOptionFlag, MagickFalse },
126     { "Memory", MemoryCache, UndefinedOptionFlag, MagickFalse },
127     { "Ping", PingCache, UndefinedOptionFlag, MagickFalse },
128     { (char *) NULL, MagickFalse, UndefinedOptionFlag, MagickFalse }
129   },
130   ChannelOptions[] =
131   {
132     { "Undefined", UndefinedChannel, UndefinedOptionFlag, MagickTrue },
133     /* special */
134     { "All", CompositeChannels, UndefinedOptionFlag, MagickFalse },
135     { "Sync", SyncChannels, UndefinedOptionFlag, MagickFalse },
136     { "Default", DefaultChannels, UndefinedOptionFlag, MagickFalse },
137     /* individual channel */
138     { "A", AlphaChannel, UndefinedOptionFlag, MagickFalse },
139     { "Alpha", AlphaChannel, UndefinedOptionFlag, MagickFalse },
140     { "Black", BlackChannel, UndefinedOptionFlag, MagickFalse },
141     { "B", BlueChannel, UndefinedOptionFlag, MagickFalse },
142     { "Blue", BlueChannel, UndefinedOptionFlag, MagickFalse },
143     { "C", CyanChannel, UndefinedOptionFlag, MagickFalse },
144     { "Cyan", CyanChannel, UndefinedOptionFlag, MagickFalse },
145     { "Gray", GrayChannel, UndefinedOptionFlag, MagickFalse },
146     { "G", GreenChannel, UndefinedOptionFlag, MagickFalse },
147     { "Green", GreenChannel, UndefinedOptionFlag, MagickFalse },
148     { "H", RedChannel, UndefinedOptionFlag, MagickFalse },
149     { "Hue", RedChannel, UndefinedOptionFlag, MagickFalse },
150     { "K", BlackChannel, UndefinedOptionFlag, MagickFalse },
151     { "L", BlueChannel, UndefinedOptionFlag, MagickFalse },
152     { "Lightness", BlueChannel, UndefinedOptionFlag, MagickFalse },
153     { "Luminance", BlueChannel, UndefinedOptionFlag, MagickFalse },
154     { "Luminosity", BlueChannel, DeprecateOptionFlag, MagickTrue },
155     { "M", MagentaChannel, UndefinedOptionFlag, MagickFalse },
156     { "Magenta", MagentaChannel, UndefinedOptionFlag, MagickFalse },
157     { "Matte", AlphaChannel, DeprecateOptionFlag, MagickTrue },/*depreciate*/
158     { "Opacity", AlphaChannel, DeprecateOptionFlag, MagickTrue },/*depreciate*/
159     { "R", RedChannel, UndefinedOptionFlag, MagickFalse },
160     { "Red", RedChannel, UndefinedOptionFlag, MagickFalse },
161     { "S", GreenChannel, UndefinedOptionFlag, MagickFalse },
162     { "Saturation", GreenChannel, UndefinedOptionFlag, MagickFalse },
163     { "Y", YellowChannel, UndefinedOptionFlag, MagickFalse },
164     { "Yellow", YellowChannel, UndefinedOptionFlag, MagickFalse },
165     { (char *) NULL, UndefinedChannel, UndefinedOptionFlag, MagickFalse }
166   },
167   ClassOptions[] =
168   {
169     { "Undefined", UndefinedClass, UndefinedOptionFlag, MagickTrue },
170     { "DirectClass", DirectClass, UndefinedOptionFlag, MagickFalse },
171     { "PseudoClass", PseudoClass, UndefinedOptionFlag, MagickFalse },
172     { (char *) NULL, UndefinedClass, UndefinedOptionFlag, MagickFalse }
173   },
174   ClipPathOptions[] =
175   {
176     { "Undefined", UndefinedPathUnits, UndefinedOptionFlag, MagickTrue },
177     { "ObjectBoundingBox", ObjectBoundingBox, UndefinedOptionFlag, MagickFalse },
178     { "UserSpace", UserSpace, UndefinedOptionFlag, MagickFalse },
179     { "UserSpaceOnUse", UserSpaceOnUse, UndefinedOptionFlag, MagickFalse },
180     { (char *) NULL, UndefinedPathUnits, UndefinedOptionFlag, MagickFalse }
181   },
182   CommandOptions[] =
183   {
184     /* WARNING: this must be sorted by name, then by switch character
185        So that it can be referenced using a binary search for speed.
186        See GetCommandOptionInfo() below for details.
187
188        Check on sort...
189            magick -list command > t1
190            sort -k 1.2  t1 | diff t1 -
191        Should not show any differences...
192     */
193     { "(", 0L, NoImageOperatorFlag, MagickTrue },
194     { ")", 0L, NoImageOperatorFlag, MagickTrue },
195     { "{", 0L, NoImageOperatorFlag, MagickTrue },
196     { "}", 0L, NoImageOperatorFlag, MagickTrue },
197     { "--", 1L, NoImageOperatorFlag, MagickTrue },
198     { "+adaptive-blur", 1L, DeprecateOptionFlag, MagickTrue },
199     { "-adaptive-blur", 1L, SimpleOperatorFlag, MagickFalse },
200     { "+adaptive-resize", 1L, DeprecateOptionFlag, MagickTrue },
201     { "-adaptive-resize", 1L, SimpleOperatorFlag, MagickFalse },
202     { "+adaptive-sharpen", 1L, DeprecateOptionFlag, MagickTrue },
203     { "-adaptive-sharpen", 1L, SimpleOperatorFlag, MagickFalse },
204     { "+adjoin", 0L, ImageInfoOptionFlag, MagickFalse },
205     { "-adjoin", 0L, ImageInfoOptionFlag, MagickFalse },
206     { "+affine", 0L, ReplacedOptionFlag | DrawInfoOptionFlag, MagickTrue },
207     { "-affine", 1L, ReplacedOptionFlag | DrawInfoOptionFlag, MagickTrue },
208     { "+affinity", 0L, DeprecateOptionFlag, MagickTrue },
209     { "-affinity", 1L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
210     { "+alpha", 1L, DeprecateOptionFlag, MagickTrue },
211     { "-alpha", 1L, SimpleOperatorFlag, MagickFalse },
212     { "+annotate", 0L, DeprecateOptionFlag, MagickTrue },
213     { "-annotate", 2L, SimpleOperatorFlag | AlwaysInterpretArgsFlag, MagickFalse },
214     { "+antialias", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
215     { "-antialias", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
216     { "+append", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
217     { "-append", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
218     { "+attenuate", 0L, ImageInfoOptionFlag, MagickFalse },
219     { "-attenuate", 1L, ImageInfoOptionFlag, MagickFalse },
220     { "+authenticate", 0L, ImageInfoOptionFlag, MagickFalse },
221     { "-authenticate", 1L, ImageInfoOptionFlag, MagickFalse },
222     { "+auto-gamma", 0L, DeprecateOptionFlag, MagickTrue },
223     { "-auto-gamma", 0L, SimpleOperatorFlag, MagickFalse },
224     { "+auto-level", 0L, DeprecateOptionFlag, MagickTrue },
225     { "-auto-level", 0L, SimpleOperatorFlag, MagickFalse },
226     { "+auto-orient", 0L, DeprecateOptionFlag, MagickTrue },
227     { "-auto-orient", 0L, SimpleOperatorFlag, MagickFalse },
228     { "+average", 0L, DeprecateOptionFlag, MagickTrue },
229     { "-average", 0L, ReplacedOptionFlag | ListOperatorFlag | FireOptionFlag, MagickTrue },
230     { "+backdrop", 0L, NonMagickOptionFlag | NeverInterpretArgsFlag, MagickFalse },
231     { "-backdrop", 1L, NonMagickOptionFlag | NeverInterpretArgsFlag, MagickFalse },
232     { "+background", 0L, ImageInfoOptionFlag, MagickFalse },
233     { "-background", 1L, ImageInfoOptionFlag, MagickFalse },
234     { "+bench", 1L, DeprecateOptionFlag, MagickTrue },
235     { "-bench", 1L, GenesisOptionFlag, MagickFalse },
236     { "+bias", 0L, ImageInfoOptionFlag, MagickFalse },
237     { "-bias", 1L, ImageInfoOptionFlag, MagickFalse },
238     { "+black-point-compensation", 0L, ImageInfoOptionFlag, MagickFalse },
239     { "-black-point-compensation", 0L, ImageInfoOptionFlag, MagickFalse },
240     { "+black-threshold", 0L, DeprecateOptionFlag, MagickTrue },
241     { "-black-threshold", 1L, SimpleOperatorFlag, MagickFalse },
242     { "+blend", 0L, NonMagickOptionFlag, MagickFalse },
243     { "-blend", 1L, NonMagickOptionFlag, MagickFalse },
244     { "+blue-primary", 0L, ImageInfoOptionFlag, MagickFalse },
245     { "-blue-primary", 1L, ImageInfoOptionFlag, MagickFalse },
246     { "+blue-shift", 1L, SimpleOperatorFlag, MagickFalse },
247     { "-blue-shift", 1L, SimpleOperatorFlag, MagickFalse },
248     { "+blur", 0L, DeprecateOptionFlag, MagickTrue },
249     { "-blur", 1L, SimpleOperatorFlag, MagickFalse },
250     { "+border", 1L, DeprecateOptionFlag, MagickTrue },
251     { "-border", 1L, SimpleOperatorFlag, MagickFalse },
252     { "+bordercolor", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
253     { "-bordercolor", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
254     { "+borderwidth", 0L, NonMagickOptionFlag, MagickFalse },
255     { "-borderwidth", 1L, NonMagickOptionFlag, MagickFalse },
256     { "+box", 0L, ReplacedOptionFlag | ImageInfoOptionFlag | DrawInfoOptionFlag, MagickTrue },
257     { "-box", 1L, ReplacedOptionFlag | ImageInfoOptionFlag | DrawInfoOptionFlag, MagickTrue },
258     { "+brightness-contrast", 0L, DeprecateOptionFlag, MagickTrue },
259     { "-brightness-contrast", 1L, SimpleOperatorFlag, MagickFalse },
260     { "+cache", 0L, GlobalOptionFlag, MagickFalse },
261     { "-cache", 1L, GlobalOptionFlag, MagickFalse },
262     { "+caption", 0L, ImageInfoOptionFlag | NeverInterpretArgsFlag, MagickFalse },
263     { "-caption", 1L, ImageInfoOptionFlag | NeverInterpretArgsFlag, MagickFalse },
264     { "+cdl", 1L, DeprecateOptionFlag, MagickTrue },
265     { "-cdl", 1L, SimpleOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
266     { "+channel", 0L, ImageInfoOptionFlag, MagickFalse },
267     { "-channel", 1L, ImageInfoOptionFlag, MagickFalse },
268     { "-channel-fx", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
269     { "+charcoal", 1L, DeprecateOptionFlag, MagickTrue },
270     { "-charcoal", 1L, SimpleOperatorFlag, MagickFalse },
271     { "+chop", 1L, DeprecateOptionFlag, MagickTrue },
272     { "-chop", 1L, SimpleOperatorFlag, MagickFalse },
273     { "+clamp", 0L, DeprecateOptionFlag, MagickTrue },
274     { "-clamp", 0L, SimpleOperatorFlag, MagickFalse },
275     { "+clip", 0L, SimpleOperatorFlag, MagickFalse },
276     { "-clip", 0L, SimpleOperatorFlag, MagickFalse },
277     { "+clip-mask", 0L, SimpleOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
278     { "-clip-mask", 1L, SimpleOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
279     { "+clip-path", 1L, SimpleOperatorFlag, MagickFalse },
280     { "-clip-path", 1L, SimpleOperatorFlag, MagickFalse },
281     { "+clone", 0L, NoImageOperatorFlag, MagickFalse },
282     { "-clone", 1L, NoImageOperatorFlag, MagickFalse },
283     { "+clut", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
284     { "-clut", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
285     { "+coalesce", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
286     { "-coalesce", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
287     { "+color-matrix", 1L, DeprecateOptionFlag, MagickTrue },
288     { "-color-matrix", 1L, SimpleOperatorFlag, MagickFalse },
289     { "+colorize", 1L, DeprecateOptionFlag, MagickTrue },
290     { "-colorize", 1L, SimpleOperatorFlag, MagickFalse },
291     { "+colormap", 0L, NonMagickOptionFlag, MagickFalse },
292     { "-colormap", 1L, NonMagickOptionFlag, MagickFalse },
293     { "+colors", 1L, DeprecateOptionFlag, MagickTrue },
294     { "-colors", 1L, SimpleOperatorFlag, MagickFalse },
295     { "+colorspace", 0L, ImageInfoOptionFlag | SimpleOperatorFlag, MagickFalse },
296     { "-colorspace", 1L, ImageInfoOptionFlag | SimpleOperatorFlag, MagickFalse },
297     { "+combine", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
298     { "-combine", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
299     { "+comment", 0L, ImageInfoOptionFlag | NeverInterpretArgsFlag, MagickFalse },
300     { "-comment", 1L, ImageInfoOptionFlag | NeverInterpretArgsFlag, MagickFalse },
301     { "+compare", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
302     { "-compare", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
303     { "+complex", 1L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
304     { "-complex", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
305     { "+compose", 0L, ImageInfoOptionFlag, MagickFalse },
306     { "-compose", 1L, ImageInfoOptionFlag, MagickFalse },
307     { "+composite", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
308     { "-composite", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
309     { "+compress", 0L, ImageInfoOptionFlag, MagickFalse },
310     { "-compress", 1L, ImageInfoOptionFlag, MagickFalse },
311     { "+concurrent", 0L, DeprecateOptionFlag, MagickTrue },
312     { "-concurrent", 0L, GenesisOptionFlag, MagickFalse },
313     { "+contrast", 0L, ReplacedOptionFlag | SimpleOperatorFlag, MagickTrue },
314     { "-contrast", 0L, ReplacedOptionFlag | SimpleOperatorFlag, MagickTrue },
315     { "+contrast-stretch", 1L, DeprecateOptionFlag, MagickTrue },
316     { "-contrast-stretch", 1L, SimpleOperatorFlag, MagickFalse },
317     { "+convolve", 1L, DeprecateOptionFlag, MagickTrue },
318     { "-convolve", 1L, SimpleOperatorFlag, MagickFalse },
319     { "+crop", 1L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
320     { "-crop", 1L, SimpleOperatorFlag | FireOptionFlag, MagickFalse },
321     { "+cycle", 1L, DeprecateOptionFlag, MagickTrue },
322     { "-cycle", 1L, SimpleOperatorFlag, MagickFalse },
323     { "+debug", 0L, GlobalOptionFlag | FireOptionFlag, MagickFalse },
324     { "-debug", 1L, GlobalOptionFlag | FireOptionFlag, MagickFalse },
325     { "+decipher", 1L, DeprecateOptionFlag, MagickTrue },
326     { "-decipher", 1L, SimpleOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
327     { "+deconstruct", 0L, DeprecateOptionFlag, MagickTrue },
328     { "-deconstruct", 0L, ReplacedOptionFlag | ListOperatorFlag | FireOptionFlag, MagickTrue },
329     { "+define", 1L, ImageInfoOptionFlag | NeverInterpretArgsFlag | FireOptionFlag, MagickFalse },
330     { "-define", 1L, ImageInfoOptionFlag | NeverInterpretArgsFlag | FireOptionFlag, MagickFalse },
331     { "+delay", 0L, ImageInfoOptionFlag, MagickFalse },
332     { "-delay", 1L, ImageInfoOptionFlag, MagickFalse },
333     { "+delete", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
334     { "-delete", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
335     { "+density", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
336     { "-density", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
337     { "+depth", 0L, ImageInfoOptionFlag | SimpleOperatorFlag, MagickFalse },
338     { "-depth", 1L, ImageInfoOptionFlag | SimpleOperatorFlag, MagickFalse },
339     { "+descend", 0L, NonMagickOptionFlag, MagickFalse },
340     { "-descend", 1L, NonMagickOptionFlag, MagickFalse },
341     { "+deskew", 0L, SimpleOperatorFlag, MagickFalse },
342     { "-deskew", 1L, SimpleOperatorFlag, MagickFalse },
343     { "+despeckle", 0L, DeprecateOptionFlag, MagickTrue },
344     { "-despeckle", 0L, SimpleOperatorFlag, MagickFalse },
345     { "+direction", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
346     { "-direction", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
347     { "+displace", 0L, NonMagickOptionFlag, MagickFalse },
348     { "-displace", 1L, NonMagickOptionFlag, MagickFalse },
349     { "+display", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
350     { "-display", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
351     { "+dispose", 0L, ImageInfoOptionFlag, MagickFalse },
352     { "-dispose", 1L, ImageInfoOptionFlag, MagickFalse },
353     { "+dissolve", 0L, NonMagickOptionFlag, MagickFalse },
354     { "-dissolve", 1L, NonMagickOptionFlag, MagickFalse },
355     { "+dissimilarity-threshold", 0L, NonMagickOptionFlag | ImageInfoOptionFlag, MagickFalse },
356     { "-dissimilarity-threshold", 1L, NonMagickOptionFlag | ImageInfoOptionFlag, MagickFalse },
357     { "+distort", 2L, SimpleOperatorFlag | AlwaysInterpretArgsFlag, MagickFalse },
358     { "-distort", 2L, SimpleOperatorFlag | AlwaysInterpretArgsFlag, MagickFalse },
359     { "+dither", 0L, ImageInfoOptionFlag | QuantizeInfoOptionFlag, MagickFalse },
360     { "-dither", 1L, ImageInfoOptionFlag | QuantizeInfoOptionFlag, MagickFalse },
361     { "+draw", 0L, DeprecateOptionFlag, MagickTrue },
362     { "-draw", 1L, SimpleOperatorFlag, MagickFalse },
363     { "+duplicate", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
364     { "-duplicate", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
365     { "+duration", 1L, GenesisOptionFlag, MagickFalse },
366     { "-duration", 1L, GenesisOptionFlag, MagickFalse },
367     { "+edge", 1L, DeprecateOptionFlag, MagickTrue },
368     { "-edge", 1L, SimpleOperatorFlag, MagickFalse },
369     { "+emboss", 1L, DeprecateOptionFlag, MagickTrue },
370     { "-emboss", 1L, SimpleOperatorFlag, MagickFalse },
371     { "+encipher", 1L, DeprecateOptionFlag, MagickTrue },
372     { "-encipher", 1L, SimpleOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
373     { "+encoding", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
374     { "-encoding", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
375     { "+endian", 0L, ImageInfoOptionFlag, MagickFalse },
376     { "-endian", 1L, ImageInfoOptionFlag, MagickFalse },
377     { "+enhance", 0L, DeprecateOptionFlag, MagickTrue },
378     { "-enhance", 0L, SimpleOperatorFlag, MagickFalse },
379     { "+equalize", 0L, DeprecateOptionFlag, MagickTrue },
380     { "-equalize", 0L, SimpleOperatorFlag, MagickFalse },
381     { "+evaluate", 2L, DeprecateOptionFlag, MagickTrue },
382     { "-evaluate", 2L, SimpleOperatorFlag, MagickFalse },
383     { "+evaluate-sequence", 1L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
384     { "-evaluate-sequence", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
385     { "-exit", 0L, SpecialOptionFlag, MagickFalse },
386     { "+extent", 1L, DeprecateOptionFlag, MagickTrue },
387     { "-extent", 1L, SimpleOperatorFlag, MagickFalse },
388     { "+extract", 0L, ImageInfoOptionFlag, MagickFalse },
389     { "-extract", 1L, ImageInfoOptionFlag, MagickFalse },
390     { "+family", 0L, DeprecateOptionFlag, MagickTrue },
391     { "-family", 1L, DrawInfoOptionFlag, MagickFalse },
392     { "+features", 0L, SimpleOperatorFlag | FireOptionFlag, MagickFalse },
393     { "-features", 1L, SimpleOperatorFlag | FireOptionFlag, MagickFalse },
394     { "+fft", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
395     { "-fft", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
396     { "+fill", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
397     { "-fill", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
398     { "+filter", 0L, ImageInfoOptionFlag, MagickFalse },
399     { "-filter", 1L, ImageInfoOptionFlag, MagickFalse },
400     { "+flatten", 0L, DeprecateOptionFlag, MagickTrue },
401     { "-flatten", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
402     { "+flip", 0L, DeprecateOptionFlag, MagickTrue },
403     { "-flip", 0L, SimpleOperatorFlag, MagickFalse },
404     { "+floodfill", 2L, SimpleOperatorFlag, MagickFalse },
405     { "-floodfill", 2L, SimpleOperatorFlag, MagickFalse },
406     { "+flop", 0L, DeprecateOptionFlag, MagickTrue },
407     { "-flop", 0L, SimpleOperatorFlag, MagickFalse },
408     { "+font", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
409     { "-font", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
410     { "+foreground", 0L, NonMagickOptionFlag, MagickFalse },
411     { "-foreground", 1L, NonMagickOptionFlag, MagickFalse },
412     { "+format", 0L, ImageInfoOptionFlag, MagickFalse },
413     { "-format", 1L, ImageInfoOptionFlag | NeverInterpretArgsFlag, MagickFalse },
414     { "+frame", 1L, DeprecateOptionFlag, MagickTrue },
415     { "-frame", 1L, SimpleOperatorFlag, MagickFalse },
416     { "+function", 2L, DeprecateOptionFlag, MagickTrue },
417     { "-function", 2L,SimpleOperatorFlag | AlwaysInterpretArgsFlag, MagickFalse },
418     { "+fuzz", 0L, ImageInfoOptionFlag, MagickFalse },
419     { "-fuzz", 1L, ImageInfoOptionFlag, MagickFalse },
420     { "+fx", 1L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
421     { "-fx", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
422     { "+gamma", 1L, SimpleOperatorFlag, MagickFalse },
423     { "-gamma", 1L, SimpleOperatorFlag, MagickFalse },
424     { "+gaussian", 1L, DeprecateOptionFlag, MagickTrue },
425     { "-gaussian", 1L, ReplacedOptionFlag | SimpleOperatorFlag, MagickTrue },
426     { "+gaussian-blur", 1L, DeprecateOptionFlag, MagickTrue },
427     { "-gaussian-blur", 1L, SimpleOperatorFlag, MagickFalse },
428     { "+geometry", 0L, SimpleOperatorFlag, MagickFalse },
429     { "-geometry", 1L, SimpleOperatorFlag, MagickFalse },
430     { "+gravity", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
431     { "-gravity", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
432     { "+grayscale", 1L, SimpleOperatorFlag, MagickTrue },
433     { "-grayscale", 1L, SimpleOperatorFlag, MagickFalse },
434     { "+green-primary", 0L, ImageInfoOptionFlag, MagickFalse },
435     { "-green-primary", 1L, ImageInfoOptionFlag, MagickFalse },
436     { "+hald-clut", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
437     { "-hald-clut", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
438     { "+highlight-color", 0L, NonMagickOptionFlag | ImageInfoOptionFlag, MagickFalse },
439     { "-highlight-color", 1L, NonMagickOptionFlag | ImageInfoOptionFlag, MagickFalse },
440     { "+iconGeometry", 0L, NonMagickOptionFlag, MagickFalse },
441     { "-iconGeometry", 1L, NonMagickOptionFlag, MagickFalse },
442     { "+iconic", 0L, NonMagickOptionFlag, MagickFalse },
443     { "-iconic", 0L, NonMagickOptionFlag, MagickFalse },
444     { "+identify", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
445     { "-identify", 0L, SimpleOperatorFlag | FireOptionFlag, MagickFalse },
446     { "+ift", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
447     { "-ift", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
448     { "+immutable", 0L, NonMagickOptionFlag, MagickFalse },
449     { "-immutable", 0L, NonMagickOptionFlag, MagickFalse },
450     { "+implode", 0L, DeprecateOptionFlag, MagickTrue },
451     { "-implode", 1L, SimpleOperatorFlag, MagickFalse },
452     { "+insert", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
453     { "-insert", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
454     { "+intensity", 0L, ImageInfoOptionFlag, MagickFalse },
455     { "-intensity", 1L, ImageInfoOptionFlag, MagickFalse },
456     { "+intent", 0L, ImageInfoOptionFlag, MagickFalse },
457     { "-intent", 1L, ImageInfoOptionFlag, MagickFalse },
458     { "+interlace", 0L, ImageInfoOptionFlag, MagickFalse },
459     { "-interlace", 1L, ImageInfoOptionFlag, MagickFalse },
460     { "+interline-spacing", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
461     { "-interline-spacing", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
462     { "+interpolate", 0L, ImageInfoOptionFlag, MagickFalse },
463     { "-interpolate", 1L, ImageInfoOptionFlag, MagickFalse },
464     { "+interpolative-resize", 1L, DeprecateOptionFlag, MagickTrue },
465     { "-interpolative-resize", 1L, SimpleOperatorFlag, MagickFalse },
466     { "+interword-spacing", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
467     { "-interword-spacing", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
468     { "+kerning", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
469     { "-kerning", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
470     { "+label", 0L, ImageInfoOptionFlag | NeverInterpretArgsFlag, MagickFalse },
471     { "-label", 1L, ImageInfoOptionFlag | NeverInterpretArgsFlag, MagickFalse },
472     { "+lat", 1L, DeprecateOptionFlag, MagickTrue },
473     { "-lat", 1L, SimpleOperatorFlag, MagickFalse },
474     { "+layers", 1L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
475     { "-layers", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
476     { "+level", 1L, SimpleOperatorFlag, MagickFalse },
477     { "-level", 1L, SimpleOperatorFlag, MagickFalse },
478     { "+level-colors", 1L, SimpleOperatorFlag, MagickFalse },
479     { "-level-colors", 1L, SimpleOperatorFlag, MagickFalse },
480     { "+limit", 0L, DeprecateOptionFlag, MagickTrue },
481     { "-limit", 2L, GlobalOptionFlag | FireOptionFlag, MagickFalse },
482     { "+linear-stretch", 1L, DeprecateOptionFlag, MagickTrue },
483     { "-linear-stretch", 1L, SimpleOperatorFlag, MagickFalse },
484     { "+liquid-rescale", 1L, DeprecateOptionFlag, MagickTrue },
485     { "-liquid-rescale", 1L, SimpleOperatorFlag, MagickFalse },
486     { "+list", 0L, DeprecateOptionFlag, MagickTrue },
487     { "-list", 1L, NoImageOperatorFlag, MagickFalse },
488     { "+log", 0L, DeprecateOptionFlag, MagickFalse },
489     { "-log", 1L, GlobalOptionFlag, MagickFalse },
490     { "+loop", 0L, ImageInfoOptionFlag, MagickFalse },
491     { "-loop", 1L, ImageInfoOptionFlag, MagickFalse },
492     { "+lowlight-color", 0L, NonMagickOptionFlag | ImageInfoOptionFlag, MagickFalse },
493     { "-lowlight-color", 1L, NonMagickOptionFlag | ImageInfoOptionFlag, MagickFalse },
494     { "+magnify", 0L, DeprecateOptionFlag, MagickTrue },
495     { "-magnify", 0L, SimpleOperatorFlag, MagickFalse },
496     { "+map", 0L, ReplacedOptionFlag | ListOperatorFlag | FireOptionFlag, MagickTrue },
497     { "-map", 1L, ReplacedOptionFlag | SimpleOperatorFlag, MagickTrue },
498     { "+mask", 0L, SimpleOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
499     { "-mask", 1L, SimpleOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
500     { "+matte", 0L, ReplacedOptionFlag | SimpleOperatorFlag, MagickTrue },
501     { "-matte", 0L, ReplacedOptionFlag | SimpleOperatorFlag, MagickTrue },
502     { "+mattecolor", 0L, ImageInfoOptionFlag, MagickFalse },
503     { "-mattecolor", 1L, ImageInfoOptionFlag, MagickFalse },
504     { "+maximum", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
505     { "-maximum", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
506     { "+median", 1L, DeprecateOptionFlag, MagickTrue },
507     { "-median", 1L, ReplacedOptionFlag | SimpleOperatorFlag | FireOptionFlag, MagickTrue },
508     { "+metric", 0L, DeprecateOptionFlag | FireOptionFlag, MagickFalse },
509     { "-metric", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
510     { "+minimum", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
511     { "-minimum", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
512     { "+moments", 0L, SimpleOperatorFlag | FireOptionFlag, MagickFalse },
513     { "-moments", 0L, SimpleOperatorFlag | FireOptionFlag, MagickFalse },
514     { "+mode", 1L, NonMagickOptionFlag, MagickFalse },
515     { "-mode", 1L, ReplacedOptionFlag | SimpleOperatorFlag, MagickTrue },
516     { "+modulate", 1L, DeprecateOptionFlag, MagickTrue },
517     { "-modulate", 1L, SimpleOperatorFlag, MagickFalse },
518     { "+monitor", 0L, ImageInfoOptionFlag | SimpleOperatorFlag, MagickFalse },
519     { "-monitor", 0L, ImageInfoOptionFlag | SimpleOperatorFlag, MagickFalse },
520     { "+monochrome", 0L, ImageInfoOptionFlag, MagickFalse },
521     { "-monochrome", 0L, ImageInfoOptionFlag | SimpleOperatorFlag, MagickFalse },
522     { "+morph", 1L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
523     { "-morph", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
524     { "+morphology", 2L, DeprecateOptionFlag, MagickTrue },
525     { "-morphology", 2L, SimpleOperatorFlag, MagickFalse },
526     { "+mosaic", 0L, DeprecateOptionFlag, MagickTrue },
527     { "-mosaic", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
528     { "+motion-blur", 1L, DeprecateOptionFlag, MagickTrue },
529     { "-motion-blur", 1L, SimpleOperatorFlag, MagickFalse },
530     { "+name", 0L, NonMagickOptionFlag, MagickFalse },
531     { "-name", 1L, NonMagickOptionFlag, MagickFalse },
532     { "+negate", 0L, SimpleOperatorFlag, MagickFalse },
533     { "-negate", 0L, SimpleOperatorFlag, MagickFalse },
534     { "+noise", 1L, SimpleOperatorFlag, MagickFalse },
535     { "-noise", 1L, ReplacedOptionFlag | SimpleOperatorFlag, MagickFalse },
536     { "-noop", 0L, NoImageOperatorFlag, MagickFalse },
537     { "+normalize", 0L, DeprecateOptionFlag, MagickTrue },
538     { "-normalize", 0L, SimpleOperatorFlag, MagickFalse },
539     { "+opaque", 1L, SimpleOperatorFlag, MagickFalse },
540     { "-opaque", 1L, SimpleOperatorFlag, MagickFalse },
541     { "+ordered-dither", 0L, DeprecateOptionFlag, MagickTrue },
542     { "-ordered-dither", 1L, SimpleOperatorFlag, MagickFalse },
543     { "+orient", 0L, ImageInfoOptionFlag, MagickFalse },
544     { "-orient", 1L, ImageInfoOptionFlag, MagickFalse },
545     { "+page", 0L, ImageInfoOptionFlag, MagickFalse },
546     { "-page", 1L, ImageInfoOptionFlag, MagickFalse },
547     { "+paint", 0L, DeprecateOptionFlag, MagickTrue },
548     { "-paint", 1L, SimpleOperatorFlag, MagickFalse },
549     { "+path", 0L, NonMagickOptionFlag, MagickFalse },
550     { "-path", 1L, NonMagickOptionFlag, MagickFalse },
551     { "+pause", 0L, NonMagickOptionFlag, MagickFalse },
552     { "-pause", 1L, NonMagickOptionFlag, MagickFalse },
553     { "+ping", 0L, ImageInfoOptionFlag, MagickFalse },
554     { "-ping", 0L, ImageInfoOptionFlag, MagickFalse },
555     { "+pointsize", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
556     { "-pointsize", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
557     { "+polaroid", 0L, SimpleOperatorFlag, MagickFalse },
558     { "-polaroid", 1L, SimpleOperatorFlag, MagickFalse },
559     { "+poly", 1L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
560     { "-poly", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
561     { "+posterize", 1L, DeprecateOptionFlag, MagickTrue },
562     { "-posterize", 1L, SimpleOperatorFlag, MagickFalse },
563     { "+precision", 0L, ImageInfoOptionFlag, MagickFalse },
564     { "-precision", 1L, ImageInfoOptionFlag, MagickFalse },
565     { "+preview", 0L, DeprecateOptionFlag, MagickTrue },
566     { "-preview", 1L, GlobalOptionFlag, MagickFalse },
567     { "+print", 1L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
568     { "-print", 1L, NoImageOperatorFlag | AlwaysInterpretArgsFlag | FireOptionFlag, MagickFalse },
569     { "+process", 1L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
570     { "-process", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
571     { "+profile", 1L, SimpleOperatorFlag, MagickFalse },
572     { "-profile", 1L, SimpleOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
573     { "+quality", 0L, ImageInfoOptionFlag, MagickFalse },
574     { "-quality", 1L, ImageInfoOptionFlag, MagickFalse },
575     { "+quantize", 0L, QuantizeInfoOptionFlag, MagickFalse },
576     { "-quantize", 1L, QuantizeInfoOptionFlag, MagickFalse },
577     { "+quiet", 0L, GlobalOptionFlag | FireOptionFlag, MagickFalse },
578     { "-quiet", 0L, GlobalOptionFlag | FireOptionFlag, MagickFalse },
579     { "+radial-blur", 1L, DeprecateOptionFlag, MagickTrue },
580     { "-radial-blur", 1L, SimpleOperatorFlag, MagickFalse },
581     { "+raise", 1L, SimpleOperatorFlag, MagickFalse },
582     { "-raise", 1L, SimpleOperatorFlag, MagickFalse },
583     { "+random-threshold", 1L, DeprecateOptionFlag, MagickTrue },
584     { "-random-threshold", 1L, SimpleOperatorFlag, MagickFalse },
585     { "-read", 1L, NoImageOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
586     { "+recolor", 1L, DeprecateOptionFlag, MagickTrue },
587     { "-recolor", 1L, ReplacedOptionFlag | SimpleOperatorFlag, MagickTrue },
588     { "+red-primary", 0L, ImageInfoOptionFlag, MagickFalse },
589     { "-red-primary", 1L, ImageInfoOptionFlag, MagickFalse },
590     { "+regard-warnings", 0L, ImageInfoOptionFlag, MagickFalse },
591     { "-regard-warnings", 0L, ImageInfoOptionFlag, MagickFalse },
592     { "+region", 0L, NoImageOperatorFlag, MagickFalse },
593     { "-region", 1L, NoImageOperatorFlag, MagickFalse },
594     { "+remap", 0L, ListOperatorFlag | NeverInterpretArgsFlag | FireOptionFlag, MagickFalse },
595     { "-remap", 1L, SimpleOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
596     { "+remote", 0L, NonMagickOptionFlag, MagickFalse },
597     { "-remote", 1L, NonMagickOptionFlag, MagickFalse },
598     { "+render", 0L, DrawInfoOptionFlag, MagickFalse },
599     { "-render", 0L, DrawInfoOptionFlag, MagickFalse },
600     { "+repage", 0L, SimpleOperatorFlag, MagickFalse },
601     { "-repage", 1L, SimpleOperatorFlag, MagickFalse },
602     { "+resample", 1L, DeprecateOptionFlag, MagickTrue },
603     { "-resample", 1L, SimpleOperatorFlag, MagickFalse },
604     { "+resize", 1L, DeprecateOptionFlag, MagickTrue },
605     { "-resize", 1L, SimpleOperatorFlag, MagickFalse },
606     { "+respect-parenthesis", 0L, ImageInfoOptionFlag, MagickFalse },
607     { "-respect-parenthesis", 0L, ImageInfoOptionFlag, MagickFalse },
608     { "+reverse", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
609     { "-reverse", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
610     { "+roll", 1L, DeprecateOptionFlag, MagickTrue },
611     { "-roll", 1L, SimpleOperatorFlag, MagickFalse },
612     { "+rotate", 1L, DeprecateOptionFlag, MagickTrue },
613     { "-rotate", 1L, SimpleOperatorFlag, MagickFalse },
614     { "+sample", 1L, DeprecateOptionFlag, MagickTrue },
615     { "-sample", 1L, SimpleOperatorFlag, MagickFalse },
616     { "+sampling-factor", 0L, ImageInfoOptionFlag, MagickFalse },
617     { "-sampling-factor", 1L, ImageInfoOptionFlag, MagickFalse },
618     { "+sans", 1L, NoImageOperatorFlag | NeverInterpretArgsFlag, MagickTrue },
619     { "-sans", 1L, NoImageOperatorFlag | NeverInterpretArgsFlag, MagickTrue },
620     { "+sans0", 0L, NoImageOperatorFlag | NeverInterpretArgsFlag, MagickTrue }, /* equivelent to 'noop' */
621     { "-sans0", 0L, NoImageOperatorFlag | NeverInterpretArgsFlag, MagickTrue },
622     { "+sans1", 1L, NoImageOperatorFlag | NeverInterpretArgsFlag, MagickTrue },
623     { "-sans1", 1L, NoImageOperatorFlag | NeverInterpretArgsFlag, MagickTrue }, /* equivelent to 'sans' */
624     { "+sans2", 2L, NoImageOperatorFlag | NeverInterpretArgsFlag, MagickTrue },
625     { "-sans2", 2L, NoImageOperatorFlag | NeverInterpretArgsFlag, MagickTrue },
626     { "+scale", 1L, DeprecateOptionFlag, MagickTrue },
627     { "-scale", 1L, SimpleOperatorFlag, MagickFalse },
628     { "+scene", 0L, ImageInfoOptionFlag, MagickFalse },
629     { "-scene", 1L, ImageInfoOptionFlag, MagickFalse },
630     { "+scenes", 0L, NonMagickOptionFlag, MagickFalse },
631     { "-scenes", 1L, NonMagickOptionFlag, MagickFalse },
632     { "+screen", 0L, NonMagickOptionFlag, MagickFalse },
633     { "-screen", 1L, NonMagickOptionFlag, MagickFalse },
634     { "-script", 1L, SpecialOptionFlag | NeverInterpretArgsFlag, MagickFalse },
635     { "+seed", 0L, GlobalOptionFlag, MagickFalse },
636     { "-seed", 1L, GlobalOptionFlag, MagickFalse },
637     { "+segment", 1L, DeprecateOptionFlag, MagickTrue },
638     { "-segment", 1L, SimpleOperatorFlag, MagickFalse },
639     { "+selective-blur", 1L, DeprecateOptionFlag, MagickTrue },
640     { "-selective-blur", 1L, SimpleOperatorFlag, MagickFalse },
641     { "+separate", 0L, DeprecateOptionFlag | FireOptionFlag, MagickTrue },
642     { "-separate", 0L, SimpleOperatorFlag | FireOptionFlag, MagickFalse },
643     { "+sepia-tone", 1L, DeprecateOptionFlag, MagickTrue },
644     { "-sepia-tone", 1L, SimpleOperatorFlag, MagickFalse },
645     { "+set", 1L, NoImageOperatorFlag, MagickFalse },
646     { "-set", 2L, NoImageOperatorFlag | NeverInterpretArgsFlag, MagickFalse },
647     { "+shade", 0L, DeprecateOptionFlag, MagickTrue },
648     { "-shade", 1L, SimpleOperatorFlag, MagickFalse },
649     { "+shadow", 1L, DeprecateOptionFlag, MagickTrue },
650     { "-shadow", 1L, SimpleOperatorFlag, MagickFalse },
651     { "+shared-memory", 0L, NonMagickOptionFlag, MagickFalse },
652     { "-shared-memory", 1L, NonMagickOptionFlag, MagickFalse },
653     { "+sharpen", 1L, DeprecateOptionFlag, MagickTrue },
654     { "-sharpen", 1L, SimpleOperatorFlag, MagickFalse },
655     { "+shave", 1L, DeprecateOptionFlag, MagickTrue },
656     { "-shave", 1L, SimpleOperatorFlag, MagickFalse },
657     { "+shear", 1L, DeprecateOptionFlag, MagickTrue },
658     { "-shear", 1L, SimpleOperatorFlag, MagickFalse },
659     { "+sigmoidal-contrast", 1L, SimpleOperatorFlag, MagickFalse },
660     { "-sigmoidal-contrast", 1L, SimpleOperatorFlag, MagickFalse },
661     { "+silent", 0L, NonMagickOptionFlag, MagickFalse },
662     { "-silent", 1L, NonMagickOptionFlag, MagickFalse },
663     { "+similarity-threshold", 0L, NonMagickOptionFlag | ImageInfoOptionFlag, MagickFalse },
664     { "-similarity-threshold", 1L, NonMagickOptionFlag | ImageInfoOptionFlag, MagickFalse },
665     { "+size", 0L, ImageInfoOptionFlag, MagickFalse },
666     { "-size", 1L, ImageInfoOptionFlag, MagickFalse },
667     { "+sketch", 1L, DeprecateOptionFlag, MagickTrue },
668     { "-sketch", 1L, SimpleOperatorFlag, MagickFalse },
669     { "+smush", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
670     { "-smush", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
671     { "+snaps", 0L, NonMagickOptionFlag, MagickFalse },
672     { "-snaps", 1L, NonMagickOptionFlag, MagickFalse },
673     { "+solarize", 1L, DeprecateOptionFlag, MagickTrue },
674     { "-solarize", 1L, SimpleOperatorFlag, MagickFalse },
675     { "+sparse-color", 1L, DeprecateOptionFlag, MagickTrue },
676     { "-sparse-color", 2L, SimpleOperatorFlag | AlwaysInterpretArgsFlag, MagickFalse },
677     { "+splice", 1L, DeprecateOptionFlag, MagickTrue },
678     { "-splice", 1L, SimpleOperatorFlag, MagickFalse },
679     { "+spread", 1L, DeprecateOptionFlag, MagickTrue },
680     { "-spread", 1L, SimpleOperatorFlag, MagickFalse },
681     { "+statistic", 2L, DeprecateOptionFlag, MagickTrue },
682     { "-statistic", 2L, SimpleOperatorFlag, MagickFalse },
683     { "+stegano", 0L, NonMagickOptionFlag, MagickFalse },
684     { "-stegano", 1L, NonMagickOptionFlag, MagickFalse },
685     { "+stereo", 0L, DeprecateOptionFlag, MagickTrue },
686     { "-stereo", 1L, NonMagickOptionFlag, MagickFalse },
687     { "+stretch", 1L, DeprecateOptionFlag, MagickTrue },
688     { "-stretch", 1L, SimpleOperatorFlag, MagickFalse },
689     { "+strip", 0L, DeprecateOptionFlag, MagickTrue },
690     { "-strip", 0L, SimpleOperatorFlag, MagickFalse },
691     { "+stroke", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
692     { "-stroke", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
693     { "+strokewidth", 1L, ImageInfoOptionFlag, MagickFalse },
694     { "-strokewidth", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
695     { "+style", 0L, DrawInfoOptionFlag, MagickFalse },
696     { "-style", 1L, DrawInfoOptionFlag, MagickFalse },
697     { "+subimage-search", 0L, NonMagickOptionFlag | ImageInfoOptionFlag, MagickFalse },
698     { "-subimage-search", 0L, NonMagickOptionFlag | ImageInfoOptionFlag, MagickFalse },
699     { "-subimage", 0L, ListOperatorFlag, MagickFalse },
700     { "+swap", 0L, ListOperatorFlag | FireOptionFlag, MagickFalse },
701     { "-swap", 1L, ListOperatorFlag | FireOptionFlag, MagickFalse },
702     { "+swirl", 1L, DeprecateOptionFlag, MagickTrue },
703     { "-swirl", 1L, SimpleOperatorFlag, MagickFalse },
704     { "+synchronize", 0L, ImageInfoOptionFlag, MagickFalse },
705     { "-synchronize", 0L, ImageInfoOptionFlag, MagickFalse },
706     { "+taint", 0L, ImageInfoOptionFlag, MagickFalse },
707     { "-taint", 0L, ImageInfoOptionFlag, MagickFalse },
708     { "+text-font", 0L, NonMagickOptionFlag, MagickFalse },
709     { "-text-font", 1L, NonMagickOptionFlag, MagickFalse },
710     { "+texture", 0L, ImageInfoOptionFlag, MagickFalse },
711     { "-texture", 1L, ImageInfoOptionFlag | NeverInterpretArgsFlag, MagickFalse },
712     { "+threshold", 0L, SimpleOperatorFlag, MagickFalse },
713     { "-threshold", 1L, SimpleOperatorFlag, MagickFalse },
714     { "+thumbnail", 1L, DeprecateOptionFlag, MagickTrue },
715     { "-thumbnail", 1L, SimpleOperatorFlag, MagickFalse },
716     { "+tile", 0L, DrawInfoOptionFlag | NeverInterpretArgsFlag, MagickFalse },
717     { "-tile", 1L, DrawInfoOptionFlag | NeverInterpretArgsFlag, MagickFalse },
718     { "+tile-offset", 0L, ImageInfoOptionFlag, MagickFalse },
719     { "-tile-offset", 1L, ImageInfoOptionFlag, MagickFalse },
720     { "+tint", 1L, SimpleOperatorFlag, MagickFalse },
721     { "-tint", 1L, SimpleOperatorFlag, MagickFalse },
722     { "+title", 0L, NonMagickOptionFlag, MagickFalse },
723     { "-title", 1L, NonMagickOptionFlag, MagickFalse },
724     { "+transform", 0L, DeprecateOptionFlag, MagickTrue },
725     { "-transform", 0L, ReplacedOptionFlag | SimpleOperatorFlag, MagickTrue },
726     { "+transparent", 1L, SimpleOperatorFlag, MagickFalse },
727     { "-transparent", 1L, SimpleOperatorFlag, MagickFalse },
728     { "+transparent-color", 0L, ImageInfoOptionFlag, MagickFalse },
729     { "-transparent-color", 1L, ImageInfoOptionFlag, MagickFalse },
730     { "+transpose", 0L, DeprecateOptionFlag, MagickTrue },
731     { "-transpose", 0L, SimpleOperatorFlag, MagickFalse },
732     { "+transverse", 0L, DeprecateOptionFlag, MagickTrue },
733     { "-transverse", 0L, SimpleOperatorFlag, MagickFalse },
734     { "+treedepth", 1L, DeprecateOptionFlag, MagickTrue },
735     { "-treedepth", 1L, QuantizeInfoOptionFlag, MagickFalse },
736     { "+trim", 0L, DeprecateOptionFlag, MagickTrue },
737     { "-trim", 0L, SimpleOperatorFlag, MagickFalse },
738     { "+type", 0L, ImageInfoOptionFlag | SimpleOperatorFlag, MagickFalse },
739     { "-type", 1L, ImageInfoOptionFlag | SimpleOperatorFlag, MagickFalse },
740     { "+undercolor", 0L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
741     { "-undercolor", 1L, ImageInfoOptionFlag | DrawInfoOptionFlag, MagickFalse },
742     { "+unique", 0L, SimpleOperatorFlag, MagickFalse },
743     { "-unique", 0L, SimpleOperatorFlag, MagickFalse },
744     { "+unique-colors", 0L, DeprecateOptionFlag, MagickTrue },
745     { "-unique-colors", 0L, SimpleOperatorFlag, MagickFalse },
746     { "+units", 0L, ImageInfoOptionFlag, MagickFalse },
747     { "-units", 1L, ImageInfoOptionFlag, MagickFalse },
748     { "+unsharp", 1L, DeprecateOptionFlag, MagickTrue },
749     { "-unsharp", 1L, SimpleOperatorFlag, MagickFalse },
750     { "+update", 0L, NonMagickOptionFlag, MagickFalse },
751     { "-update", 1L, NonMagickOptionFlag, MagickFalse },
752     { "+use-pixmap", 0L, NonMagickOptionFlag, MagickFalse },
753     { "-use-pixmap", 1L, NonMagickOptionFlag, MagickFalse },
754     { "+verbose", 0L, ImageInfoOptionFlag, MagickFalse },
755     { "-verbose", 0L, ImageInfoOptionFlag, MagickFalse },
756     { "+version", 0L, DeprecateOptionFlag, MagickTrue },
757     { "-version", 0L, NoImageOperatorFlag, MagickFalse },
758     { "+view", 0L, ImageInfoOptionFlag, MagickFalse },
759     { "-view", 1L, ImageInfoOptionFlag, MagickFalse },
760     { "+vignette", 1L, DeprecateOptionFlag, MagickTrue },
761     { "-vignette", 1L, SimpleOperatorFlag, MagickFalse },
762     { "+virtual-pixel", 0L, ImageInfoOptionFlag, MagickFalse },
763     { "-virtual-pixel", 1L, ImageInfoOptionFlag, MagickFalse },
764     { "+visual", 0L, NonMagickOptionFlag, MagickFalse },
765     { "-visual", 1L, NonMagickOptionFlag, MagickFalse },
766     { "+watermark", 0L, NonMagickOptionFlag, MagickFalse },
767     { "-watermark", 1L, NonMagickOptionFlag, MagickFalse },
768     { "+wave", 1L, DeprecateOptionFlag, MagickTrue },
769     { "-wave", 1L, SimpleOperatorFlag, MagickFalse },
770     { "+weight", 1L, DeprecateOptionFlag, MagickTrue },
771     { "-weight", 1L, DrawInfoOptionFlag, MagickFalse },
772     { "+white-point", 0L, ImageInfoOptionFlag, MagickFalse },
773     { "-white-point", 1L, ImageInfoOptionFlag, MagickFalse },
774     { "+white-threshold", 1L, DeprecateOptionFlag, MagickTrue },
775     { "-white-threshold", 1L, SimpleOperatorFlag, MagickFalse },
776     { "+window", 0L, NonMagickOptionFlag, MagickFalse },
777     { "-window", 1L, NonMagickOptionFlag, MagickFalse },
778     { "+window-group", 0L, NonMagickOptionFlag, MagickFalse },
779     { "-window-group", 1L, NonMagickOptionFlag, MagickFalse },
780     { "+write", 1L, NoImageOperatorFlag | NeverInterpretArgsFlag | FireOptionFlag, MagickFalse },
781     { "-write", 1L, NoImageOperatorFlag | NeverInterpretArgsFlag | FireOptionFlag, MagickFalse },
782     { (char *) NULL, 0L, UndefinedOptionFlag, MagickFalse }
783   },
784   ComposeOptions[] =
785   {
786     { "Undefined", UndefinedCompositeOp, UndefinedOptionFlag, MagickTrue },
787     { "Atop", AtopCompositeOp, UndefinedOptionFlag, MagickFalse },
788     { "Blend", BlendCompositeOp, UndefinedOptionFlag, MagickFalse },
789     { "Blur", BlurCompositeOp, UndefinedOptionFlag, MagickFalse },
790     { "Bumpmap", BumpmapCompositeOp, UndefinedOptionFlag, MagickFalse },
791     { "ChangeMask", ChangeMaskCompositeOp, UndefinedOptionFlag, MagickFalse },
792     { "Clear", ClearCompositeOp, UndefinedOptionFlag, MagickFalse },
793     { "ColorBurn", ColorBurnCompositeOp, UndefinedOptionFlag, MagickFalse },
794     { "ColorDodge", ColorDodgeCompositeOp, UndefinedOptionFlag, MagickFalse },
795     { "Colorize", ColorizeCompositeOp, UndefinedOptionFlag, MagickFalse },
796     { "CopyAlpha", CopyAlphaCompositeOp, UndefinedOptionFlag, MagickFalse },
797     { "CopyBlack", CopyBlackCompositeOp, UndefinedOptionFlag, MagickFalse },
798     { "CopyBlue", CopyBlueCompositeOp, UndefinedOptionFlag, MagickFalse },
799     { "CopyCyan", CopyCyanCompositeOp, UndefinedOptionFlag, MagickFalse },
800     { "CopyGreen", CopyGreenCompositeOp, UndefinedOptionFlag, MagickFalse },
801     { "Copy", CopyCompositeOp, UndefinedOptionFlag, MagickFalse },
802     { "CopyMagenta", CopyMagentaCompositeOp, UndefinedOptionFlag, MagickFalse },
803     { "CopyRed", CopyRedCompositeOp, UndefinedOptionFlag, MagickFalse },
804     { "CopyYellow", CopyYellowCompositeOp, UndefinedOptionFlag, MagickFalse },
805     { "Darken", DarkenCompositeOp, UndefinedOptionFlag, MagickFalse },
806     { "DarkenIntensity", DarkenIntensityCompositeOp, UndefinedOptionFlag, MagickFalse },
807     { "DivideDst", DivideDstCompositeOp, UndefinedOptionFlag, MagickFalse },
808     { "DivideSrc", DivideSrcCompositeOp, UndefinedOptionFlag, MagickFalse },
809     { "Dst", DstCompositeOp, UndefinedOptionFlag, MagickFalse },
810     { "Difference", DifferenceCompositeOp, UndefinedOptionFlag, MagickFalse },
811     { "Displace", DisplaceCompositeOp, UndefinedOptionFlag, MagickFalse },
812     { "Dissolve", DissolveCompositeOp, UndefinedOptionFlag, MagickFalse },
813     { "Distort", DistortCompositeOp, UndefinedOptionFlag, MagickFalse },
814     { "DstAtop", DstAtopCompositeOp, UndefinedOptionFlag, MagickFalse },
815     { "DstIn", DstInCompositeOp, UndefinedOptionFlag, MagickFalse },
816     { "DstOut", DstOutCompositeOp, UndefinedOptionFlag, MagickFalse },
817     { "DstOver", DstOverCompositeOp, UndefinedOptionFlag, MagickFalse },
818     { "Exclusion", ExclusionCompositeOp, UndefinedOptionFlag, MagickFalse },
819     { "HardLight", HardLightCompositeOp, UndefinedOptionFlag, MagickFalse },
820     { "Hue", HueCompositeOp, UndefinedOptionFlag, MagickFalse },
821     { "In", InCompositeOp, UndefinedOptionFlag, MagickFalse },
822     { "Intensity", IntensityCompositeOp, UndefinedOptionFlag, MagickFalse },
823     { "Lighten", LightenCompositeOp, UndefinedOptionFlag, MagickFalse },
824     { "LightenIntensity", LightenIntensityCompositeOp, UndefinedOptionFlag, MagickFalse },
825     { "LinearBurn", LinearBurnCompositeOp, UndefinedOptionFlag, MagickFalse },
826     { "LinearDodge", LinearDodgeCompositeOp, UndefinedOptionFlag, MagickFalse },
827     { "LinearLight", LinearLightCompositeOp, UndefinedOptionFlag, MagickFalse },
828     { "Luminize", LuminizeCompositeOp, UndefinedOptionFlag, MagickFalse },
829     { "Mathematics", MathematicsCompositeOp, UndefinedOptionFlag, MagickFalse },
830     { "MinusDst", MinusDstCompositeOp, UndefinedOptionFlag, MagickFalse },
831     { "MinusSrc", MinusSrcCompositeOp, UndefinedOptionFlag, MagickFalse },
832     { "Modulate", ModulateCompositeOp, UndefinedOptionFlag, MagickFalse },
833     { "ModulusAdd", ModulusAddCompositeOp, UndefinedOptionFlag, MagickFalse },
834     { "ModulusSubtract", ModulusSubtractCompositeOp, UndefinedOptionFlag, MagickFalse },
835     { "Multiply", MultiplyCompositeOp, UndefinedOptionFlag, MagickFalse },
836     { "None", NoCompositeOp, UndefinedOptionFlag, MagickFalse },
837     { "Out", OutCompositeOp, UndefinedOptionFlag, MagickFalse },
838     { "Overlay", OverlayCompositeOp, UndefinedOptionFlag, MagickFalse },
839     { "Over", OverCompositeOp, UndefinedOptionFlag, MagickFalse },
840     { "PegtopLight", PegtopLightCompositeOp, UndefinedOptionFlag, MagickFalse },
841     { "PinLight", PinLightCompositeOp, UndefinedOptionFlag, MagickFalse },
842     { "Plus", PlusCompositeOp, UndefinedOptionFlag, MagickFalse },
843     { "Replace", ReplaceCompositeOp, UndefinedOptionFlag, MagickFalse },
844     { "Saturate", SaturateCompositeOp, UndefinedOptionFlag, MagickFalse },
845     { "Screen", ScreenCompositeOp, UndefinedOptionFlag, MagickFalse },
846     { "SoftLight", SoftLightCompositeOp, UndefinedOptionFlag, MagickFalse },
847     { "Src", SrcCompositeOp, UndefinedOptionFlag, MagickFalse },
848     { "SrcAtop", SrcAtopCompositeOp, UndefinedOptionFlag, MagickFalse },
849     { "SrcIn", SrcInCompositeOp, UndefinedOptionFlag, MagickFalse },
850     { "SrcOut", SrcOutCompositeOp, UndefinedOptionFlag, MagickFalse },
851     { "SrcOver", SrcOverCompositeOp, UndefinedOptionFlag, MagickFalse },
852     { "VividLight", VividLightCompositeOp, UndefinedOptionFlag, MagickFalse },
853     { "Xor", XorCompositeOp, UndefinedOptionFlag, MagickFalse },
854     { "Divide", DivideDstCompositeOp, DeprecateOptionFlag, MagickTrue },
855     { "Minus", MinusDstCompositeOp, DeprecateOptionFlag, MagickTrue },
856     { "Threshold", ThresholdCompositeOp, DeprecateOptionFlag, MagickTrue },
857     { "CopyOpacity", CopyAlphaCompositeOp, UndefinedOptionFlag, MagickTrue },
858     { (char *) NULL, UndefinedCompositeOp, UndefinedOptionFlag, MagickFalse }
859   },
860   CompressOptions[] =
861   {
862     { "Undefined", UndefinedCompression, UndefinedOptionFlag, MagickTrue },
863     { "B44", B44Compression, UndefinedOptionFlag, MagickFalse },
864     { "B44A", B44ACompression, UndefinedOptionFlag, MagickFalse },
865     { "BZip", BZipCompression, UndefinedOptionFlag, MagickFalse },
866     { "DXT1", DXT1Compression, UndefinedOptionFlag, MagickFalse },
867     { "DXT3", DXT3Compression, UndefinedOptionFlag, MagickFalse },
868     { "DXT5", DXT5Compression, UndefinedOptionFlag, MagickFalse },
869     { "Fax", FaxCompression, UndefinedOptionFlag, MagickFalse },
870     { "Group4", Group4Compression, UndefinedOptionFlag, MagickFalse },
871     { "JBIG1", JBIG1Compression, UndefinedOptionFlag, MagickFalse },
872     { "JBIG2", JBIG2Compression, UndefinedOptionFlag, MagickFalse },
873     { "JPEG", JPEGCompression, UndefinedOptionFlag, MagickFalse },
874     { "JPEG2000", JPEG2000Compression, UndefinedOptionFlag, MagickFalse },
875     { "Lossless", LosslessJPEGCompression, UndefinedOptionFlag, MagickFalse },
876     { "LosslessJPEG", LosslessJPEGCompression, UndefinedOptionFlag, MagickFalse },
877     { "LZMA", LZMACompression, UndefinedOptionFlag, MagickFalse },
878     { "LZW", LZWCompression, UndefinedOptionFlag, MagickFalse },
879     { "None", NoCompression, UndefinedOptionFlag, MagickFalse },
880     { "Piz", PizCompression, UndefinedOptionFlag, MagickFalse },
881     { "Pxr24", Pxr24Compression, UndefinedOptionFlag, MagickFalse },
882     { "RLE", RLECompression, UndefinedOptionFlag, MagickFalse },
883     { "Zip", ZipCompression, UndefinedOptionFlag, MagickFalse },
884     { "RunlengthEncoded", RLECompression, UndefinedOptionFlag, MagickFalse },
885     { "ZipS", ZipSCompression, UndefinedOptionFlag, MagickFalse },
886     { (char *) NULL, UndefinedCompression, UndefinedOptionFlag, MagickFalse }
887   },
888   ColorspaceOptions[] =
889   {
890     { "Undefined", UndefinedColorspace, UndefinedOptionFlag, MagickTrue },
891     { "CIELab", LabColorspace, UndefinedOptionFlag, MagickFalse },
892     { "CMY", CMYColorspace, UndefinedOptionFlag, MagickFalse },
893     { "CMYK", CMYKColorspace, UndefinedOptionFlag, MagickFalse },
894     { "Gray", GRAYColorspace, UndefinedOptionFlag, MagickFalse },
895     { "HCL", HCLColorspace, UndefinedOptionFlag, MagickFalse },
896     { "HCLp", HCLpColorspace, UndefinedOptionFlag, MagickFalse },
897     { "HSB", HSBColorspace, UndefinedOptionFlag, MagickFalse },
898     { "HSI", HSIColorspace, UndefinedOptionFlag, MagickFalse },
899     { "HSL", HSLColorspace, UndefinedOptionFlag, MagickFalse },
900     { "HSV", HSVColorspace, UndefinedOptionFlag, MagickFalse },
901     { "HWB", HWBColorspace, UndefinedOptionFlag, MagickFalse },
902     { "Lab", LabColorspace, UndefinedOptionFlag, MagickFalse },
903     { "LCH", LCHColorspace, UndefinedOptionFlag, MagickFalse },
904     { "LCHab", LCHabColorspace, UndefinedOptionFlag, MagickFalse },
905     { "LCHuv", LCHuvColorspace, UndefinedOptionFlag, MagickFalse },
906     { "LMS", LMSColorspace, UndefinedOptionFlag, MagickFalse },
907     { "Log", LogColorspace, UndefinedOptionFlag, MagickFalse },
908     { "Luv", LuvColorspace, UndefinedOptionFlag, MagickFalse },
909     { "OHTA", OHTAColorspace, UndefinedOptionFlag, MagickFalse },
910     { "Rec601YCbCr", Rec601YCbCrColorspace, UndefinedOptionFlag, MagickFalse },
911     { "Rec709YCbCr", Rec709YCbCrColorspace, UndefinedOptionFlag, MagickFalse },
912     { "RGB", RGBColorspace, UndefinedOptionFlag, MagickFalse },
913     { "scRGB", scRGBColorspace, UndefinedOptionFlag, MagickFalse },
914     { "sRGB", sRGBColorspace, UndefinedOptionFlag, MagickFalse },
915     { "Transparent", TransparentColorspace, UndefinedOptionFlag, MagickFalse },
916     { "XYZ", XYZColorspace, UndefinedOptionFlag, MagickFalse },
917     { "YCbCr", YCbCrColorspace, UndefinedOptionFlag, MagickFalse },
918     { "YDbDr", YDbDrColorspace, UndefinedOptionFlag, MagickFalse },
919     { "YCC", YCCColorspace, UndefinedOptionFlag, MagickFalse },
920     { "YIQ", YIQColorspace, UndefinedOptionFlag, MagickFalse },
921     { "YPbPr", YPbPrColorspace, UndefinedOptionFlag, MagickFalse },
922     { "YUV", YUVColorspace, UndefinedOptionFlag, MagickFalse },
923     { (char *) NULL, UndefinedColorspace, UndefinedOptionFlag, MagickFalse }
924   },
925   ComplexOptions[] =
926   {
927     { "Undefined", UndefinedComplexOperator, UndefinedOptionFlag, MagickTrue },
928     { "Add", AddComplexOperator, UndefinedOptionFlag, MagickFalse },
929     { "Conjugate", ConjugateComplexOperator, UndefinedOptionFlag, MagickFalse },
930     { "Divide", DivideComplexOperator, UndefinedOptionFlag, MagickFalse },
931     { "MagnitudePhase", MagnitudePhaseComplexOperator, UndefinedOptionFlag, MagickFalse },
932     { "Multiply", MultiplyComplexOperator, UndefinedOptionFlag, MagickFalse },
933     { "RealImaginary", RealImaginaryComplexOperator, UndefinedOptionFlag, MagickFalse },
934     { "Subtract", SubtractComplexOperator, UndefinedOptionFlag, MagickFalse },
935     { (char *) NULL, UndefinedComplexOperator, UndefinedOptionFlag, MagickFalse }
936   },
937   DataTypeOptions[] =
938   {
939     { "Undefined", UndefinedData, UndefinedOptionFlag, MagickTrue },
940     { "Byte", ByteData, UndefinedOptionFlag, MagickFalse },
941     { "Long", LongData, UndefinedOptionFlag, MagickFalse },
942     { "Short", ShortData, UndefinedOptionFlag, MagickFalse },
943     { "String", StringData, UndefinedOptionFlag, MagickFalse },
944     { (char *) NULL, UndefinedData, UndefinedOptionFlag, MagickFalse }
945   },
946   DecorateOptions[] =
947   {
948     { "Undefined", UndefinedDecoration, UndefinedOptionFlag, MagickTrue },
949     { "LineThrough", LineThroughDecoration, UndefinedOptionFlag, MagickFalse },
950     { "None", NoDecoration, UndefinedOptionFlag, MagickFalse },
951     { "Overline", OverlineDecoration, UndefinedOptionFlag, MagickFalse },
952     { "Underline", UnderlineDecoration, UndefinedOptionFlag, MagickFalse },
953     { (char *) NULL, UndefinedDecoration, UndefinedOptionFlag, MagickFalse }
954   },
955   DirectionOptions[] =
956   {
957     { "Undefined", UndefinedDirection, UndefinedOptionFlag, MagickTrue },
958     { "right-to-left", RightToLeftDirection, UndefinedOptionFlag, MagickFalse },
959     { "left-to-right", LeftToRightDirection, UndefinedOptionFlag, MagickFalse },
960     { (char *) NULL, UndefinedDirection, UndefinedOptionFlag, MagickFalse }
961   },
962   DisposeOptions[] =
963   {
964     { "Undefined", UndefinedDispose, UndefinedOptionFlag, MagickTrue },
965     { "Background", BackgroundDispose, UndefinedOptionFlag, MagickFalse },
966     { "None", NoneDispose, UndefinedOptionFlag, MagickFalse },
967     { "Previous", PreviousDispose, UndefinedOptionFlag, MagickFalse },
968     { "Undefined", UndefinedDispose, UndefinedOptionFlag, MagickFalse },
969     { "0", UndefinedDispose, UndefinedOptionFlag, MagickFalse },
970     { "1", NoneDispose, UndefinedOptionFlag, MagickFalse },
971     { "2", BackgroundDispose, UndefinedOptionFlag, MagickFalse },
972     { "3", PreviousDispose, UndefinedOptionFlag, MagickFalse },
973     { (char *) NULL, UndefinedDispose, UndefinedOptionFlag, MagickFalse }
974   },
975   DistortOptions[] =
976   {
977     { "Affine", AffineDistortion, UndefinedOptionFlag, MagickFalse },
978     { "AffineProjection", AffineProjectionDistortion, UndefinedOptionFlag, MagickFalse },
979     { "ScaleRotateTranslate", ScaleRotateTranslateDistortion, UndefinedOptionFlag, MagickFalse },
980     { "SRT", ScaleRotateTranslateDistortion, UndefinedOptionFlag, MagickFalse },
981     { "Perspective", PerspectiveDistortion, UndefinedOptionFlag, MagickFalse },
982     { "PerspectiveProjection", PerspectiveProjectionDistortion, UndefinedOptionFlag, MagickFalse },
983     { "Bilinear", BilinearForwardDistortion, UndefinedOptionFlag, MagickTrue },
984     { "BilinearForward", BilinearForwardDistortion, UndefinedOptionFlag, MagickFalse },
985     { "BilinearReverse", BilinearReverseDistortion, UndefinedOptionFlag, MagickFalse },
986     { "Polynomial", PolynomialDistortion, UndefinedOptionFlag, MagickFalse },
987     { "Arc", ArcDistortion, UndefinedOptionFlag, MagickFalse },
988     { "Polar", PolarDistortion, UndefinedOptionFlag, MagickFalse },
989     { "DePolar", DePolarDistortion, UndefinedOptionFlag, MagickFalse },
990     { "Barrel", BarrelDistortion, UndefinedOptionFlag, MagickFalse },
991     { "Cylinder2Plane", Cylinder2PlaneDistortion, UndefinedOptionFlag, MagickTrue },
992     { "Plane2Cylinder", Plane2CylinderDistortion, UndefinedOptionFlag, MagickTrue },
993     { "BarrelInverse", BarrelInverseDistortion, UndefinedOptionFlag, MagickFalse },
994     { "Shepards", ShepardsDistortion, UndefinedOptionFlag, MagickFalse },
995     { "Resize", ResizeDistortion, UndefinedOptionFlag, MagickFalse },
996     { (char *) NULL, UndefinedDistortion, UndefinedOptionFlag, MagickFalse }
997   },
998   DitherOptions[] =
999   {
1000     { "Undefined", UndefinedDitherMethod, UndefinedOptionFlag, MagickTrue },
1001     { "None", NoDitherMethod, UndefinedOptionFlag, MagickFalse },
1002     { "FloydSteinberg", FloydSteinbergDitherMethod, UndefinedOptionFlag, MagickFalse },
1003     { "Riemersma", RiemersmaDitherMethod, UndefinedOptionFlag, MagickFalse },
1004     { (char *) NULL, UndefinedEndian, UndefinedOptionFlag, MagickFalse }
1005   },
1006   EndianOptions[] =
1007   {
1008     { "Undefined", UndefinedEndian, UndefinedOptionFlag, MagickTrue },
1009     { "LSB", LSBEndian, UndefinedOptionFlag, MagickFalse },
1010     { "MSB", MSBEndian, UndefinedOptionFlag, MagickFalse },
1011     { (char *) NULL, UndefinedEndian, UndefinedOptionFlag, MagickFalse }
1012   },
1013   EvaluateOptions[] =
1014   {
1015     { "Undefined", UndefinedEvaluateOperator, UndefinedOptionFlag, MagickTrue },
1016     { "Abs", AbsEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1017     { "Add", AddEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1018     { "AddModulus", AddModulusEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1019     { "And", AndEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1020     { "Cos", CosineEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1021     { "Cosine", CosineEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1022     { "Divide", DivideEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1023     { "Exp", ExponentialEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1024     { "Exponential", ExponentialEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1025     { "GaussianNoise", GaussianNoiseEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1026     { "ImpulseNoise", ImpulseNoiseEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1027     { "LaplacianNoise", LaplacianNoiseEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1028     { "LeftShift", LeftShiftEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1029     { "Log", LogEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1030     { "Max", MaxEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1031     { "Mean", MeanEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1032     { "Median", MedianEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1033     { "Min", MinEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1034     { "MultiplicativeNoise", MultiplicativeNoiseEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1035     { "Multiply", MultiplyEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1036     { "Or", OrEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1037     { "PoissonNoise", PoissonNoiseEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1038     { "Pow", PowEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1039     { "RightShift", RightShiftEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1040     { "Set", SetEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1041     { "Sin", SineEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1042     { "Sine", SineEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1043     { "Subtract", SubtractEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1044     { "Sum", SumEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1045     { "Threshold", ThresholdEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1046     { "ThresholdBlack", ThresholdBlackEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1047     { "ThresholdWhite", ThresholdWhiteEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1048     { "UniformNoise", UniformNoiseEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1049     { "Xor", XorEvaluateOperator, UndefinedOptionFlag, MagickFalse },
1050     { (char *) NULL, UndefinedEvaluateOperator, UndefinedOptionFlag, MagickFalse }
1051   },
1052   FillRuleOptions[] =
1053   {
1054     { "Undefined", UndefinedRule, UndefinedOptionFlag, MagickTrue },
1055     { "Evenodd", EvenOddRule, UndefinedOptionFlag, MagickFalse },
1056     { "NonZero", NonZeroRule, UndefinedOptionFlag, MagickFalse },
1057     { (char *) NULL, UndefinedRule, UndefinedOptionFlag, MagickFalse }
1058   },
1059   FilterOptions[] =
1060   {
1061     { "Undefined", UndefinedFilter, UndefinedOptionFlag, MagickTrue },
1062     { "Bartlett", BartlettFilter, UndefinedOptionFlag, MagickFalse },
1063     { "Blackman", BlackmanFilter, UndefinedOptionFlag, MagickFalse },
1064     { "Bohman", BohmanFilter, UndefinedOptionFlag, MagickFalse },
1065     { "Box", BoxFilter, UndefinedOptionFlag, MagickFalse },
1066     { "Catrom", CatromFilter, UndefinedOptionFlag, MagickFalse },
1067     { "Cosine", CosineFilter, UndefinedOptionFlag, MagickFalse },
1068     { "Cubic", CubicFilter, UndefinedOptionFlag, MagickFalse },
1069     { "Gaussian", GaussianFilter, UndefinedOptionFlag, MagickFalse },
1070     { "Hamming", HammingFilter, UndefinedOptionFlag, MagickFalse },
1071     { "Hann", HannFilter, UndefinedOptionFlag, MagickFalse },
1072     { "Hanning", HannFilter, UndefinedOptionFlag, MagickTrue }, /*misspell*/
1073     { "Hermite", HermiteFilter, UndefinedOptionFlag, MagickFalse },
1074     { "Jinc", JincFilter, UndefinedOptionFlag, MagickFalse },
1075     { "Kaiser", KaiserFilter, UndefinedOptionFlag, MagickFalse },
1076     { "Lagrange", LagrangeFilter, UndefinedOptionFlag, MagickFalse },
1077     { "Lanczos", LanczosFilter, UndefinedOptionFlag, MagickFalse },
1078     { "Lanczos2", Lanczos2Filter, UndefinedOptionFlag, MagickFalse },
1079     { "Lanczos2Sharp", Lanczos2SharpFilter, UndefinedOptionFlag, MagickFalse },
1080     { "LanczosRadius", LanczosRadiusFilter, UndefinedOptionFlag, MagickFalse },
1081     { "LanczosSharp", LanczosSharpFilter, UndefinedOptionFlag, MagickFalse },
1082     { "Mitchell", MitchellFilter, UndefinedOptionFlag, MagickFalse },
1083     { "Parzen", ParzenFilter, UndefinedOptionFlag, MagickFalse },
1084     { "Point", PointFilter, UndefinedOptionFlag, MagickFalse },
1085     { "Quadratic", QuadraticFilter, UndefinedOptionFlag, MagickFalse },
1086     { "Robidoux", RobidouxFilter, UndefinedOptionFlag, MagickFalse },
1087     { "RobidouxSharp", RobidouxSharpFilter, UndefinedOptionFlag, MagickFalse },
1088     { "Sinc", SincFilter, UndefinedOptionFlag, MagickFalse },
1089     { "SincFast", SincFastFilter, UndefinedOptionFlag, MagickFalse },
1090     { "Spline", SplineFilter, UndefinedOptionFlag, MagickFalse },
1091     { "Triangle", TriangleFilter, UndefinedOptionFlag, MagickFalse },
1092     { "Welch", WelchFilter, UndefinedOptionFlag, MagickFalse },
1093     { "Welsh", WelchFilter, UndefinedOptionFlag, MagickTrue }, /*misspell*/
1094     { (char *) NULL, UndefinedFilter, UndefinedOptionFlag, MagickFalse }
1095   },
1096   FunctionOptions[] =
1097   {
1098     { "Undefined", UndefinedFunction, UndefinedOptionFlag, MagickTrue },
1099     { "Polynomial", PolynomialFunction, UndefinedOptionFlag, MagickFalse },
1100     { "Sinusoid", SinusoidFunction, UndefinedOptionFlag, MagickFalse },
1101     { "ArcSin", ArcsinFunction, UndefinedOptionFlag, MagickFalse },
1102     { "ArcTan", ArctanFunction, UndefinedOptionFlag, MagickFalse },
1103     { (char *) NULL, UndefinedFunction, UndefinedOptionFlag, MagickFalse }
1104   },
1105   GravityOptions[] =
1106   {
1107     { "Undefined", UndefinedGravity, UndefinedOptionFlag, MagickTrue },
1108     { "None", UndefinedGravity, UndefinedOptionFlag, MagickFalse },
1109     { "Center", CenterGravity, UndefinedOptionFlag, MagickFalse },
1110     { "East", EastGravity, UndefinedOptionFlag, MagickFalse },
1111     { "Forget", ForgetGravity, UndefinedOptionFlag, MagickFalse },
1112     { "NorthEast", NorthEastGravity, UndefinedOptionFlag, MagickFalse },
1113     { "North", NorthGravity, UndefinedOptionFlag, MagickFalse },
1114     { "NorthWest", NorthWestGravity, UndefinedOptionFlag, MagickFalse },
1115     { "SouthEast", SouthEastGravity, UndefinedOptionFlag, MagickFalse },
1116     { "South", SouthGravity, UndefinedOptionFlag, MagickFalse },
1117     { "SouthWest", SouthWestGravity, UndefinedOptionFlag, MagickFalse },
1118     { "West", WestGravity, UndefinedOptionFlag, MagickFalse },
1119     { (char *) NULL, UndefinedGravity, UndefinedOptionFlag, MagickFalse }
1120   },
1121   IntentOptions[] =
1122   {
1123     { "Undefined", UndefinedIntent, UndefinedOptionFlag, MagickTrue },
1124     { "Absolute", AbsoluteIntent, UndefinedOptionFlag, MagickFalse },
1125     { "Perceptual", PerceptualIntent, UndefinedOptionFlag, MagickFalse },
1126     { "Relative", RelativeIntent, UndefinedOptionFlag, MagickFalse },
1127     { "Saturation", SaturationIntent, UndefinedOptionFlag, MagickFalse },
1128     { (char *) NULL, UndefinedIntent, UndefinedOptionFlag, MagickFalse }
1129   },
1130   InterlaceOptions[] =
1131   {
1132     { "Undefined", UndefinedInterlace, UndefinedOptionFlag, MagickTrue },
1133     { "Line", LineInterlace, UndefinedOptionFlag, MagickFalse },
1134     { "None", NoInterlace, UndefinedOptionFlag, MagickFalse },
1135     { "Plane", PlaneInterlace, UndefinedOptionFlag, MagickFalse },
1136     { "Partition", PartitionInterlace, UndefinedOptionFlag, MagickFalse },
1137     { "GIF", GIFInterlace, UndefinedOptionFlag, MagickFalse },
1138     { "JPEG", JPEGInterlace, UndefinedOptionFlag, MagickFalse },
1139     { "PNG", PNGInterlace, UndefinedOptionFlag, MagickFalse },
1140     { (char *) NULL, UndefinedInterlace, UndefinedOptionFlag, MagickFalse }
1141   },
1142   InterpolateOptions[] =
1143   {
1144     { "Undefined", UndefinedInterpolatePixel, UndefinedOptionFlag, MagickTrue },
1145     { "Average", AverageInterpolatePixel, UndefinedOptionFlag, MagickFalse },
1146     { "Average4", AverageInterpolatePixel, UndefinedOptionFlag, MagickFalse },
1147     { "Average9", Average9InterpolatePixel, UndefinedOptionFlag, MagickFalse },
1148     { "Average16", Average16InterpolatePixel, UndefinedOptionFlag, MagickFalse },
1149     { "Background", BackgroundInterpolatePixel, UndefinedOptionFlag, MagickFalse },
1150     { "Bilinear", BilinearInterpolatePixel, UndefinedOptionFlag, MagickFalse },
1151     { "Blend", BlendInterpolatePixel, UndefinedOptionFlag, MagickFalse },
1152     { "Catrom", CatromInterpolatePixel, UndefinedOptionFlag, MagickFalse },
1153     { "Integer", IntegerInterpolatePixel, UndefinedOptionFlag, MagickFalse },
1154     { "Mesh", MeshInterpolatePixel, UndefinedOptionFlag, MagickFalse },
1155     { "Nearest", NearestInterpolatePixel, UndefinedOptionFlag, MagickFalse },
1156     { "NearestNeighbor", NearestInterpolatePixel, UndefinedOptionFlag, MagickTrue },
1157     { "Spline", SplineInterpolatePixel, UndefinedOptionFlag, MagickFalse },
1158 /*  { "Filter", FilterInterpolatePixel, UndefinedOptionFlag, MagickFalse }, */
1159     { (char *) NULL, UndefinedInterpolatePixel, UndefinedOptionFlag, MagickFalse }
1160   },
1161   KernelOptions[] =
1162   {
1163     { "Undefined", UndefinedKernel, UndefinedOptionFlag, MagickTrue },
1164     { "Unity", UnityKernel, UndefinedOptionFlag, MagickFalse },
1165     { "Gaussian", GaussianKernel, UndefinedOptionFlag, MagickFalse },
1166     { "DoG", DoGKernel, UndefinedOptionFlag, MagickFalse },
1167     { "LoG", LoGKernel, UndefinedOptionFlag, MagickFalse },
1168     { "Blur", BlurKernel, UndefinedOptionFlag, MagickFalse },
1169     { "Comet", CometKernel, UndefinedOptionFlag, MagickFalse },
1170     { "Binomial", BinomialKernel, UndefinedOptionFlag, MagickFalse },
1171     { "Laplacian", LaplacianKernel, UndefinedOptionFlag, MagickFalse },
1172     { "Sobel", SobelKernel, UndefinedOptionFlag, MagickFalse },
1173     { "FreiChen", FreiChenKernel, UndefinedOptionFlag, MagickFalse },
1174     { "Roberts", RobertsKernel, UndefinedOptionFlag, MagickFalse },
1175     { "Prewitt", PrewittKernel, UndefinedOptionFlag, MagickFalse },
1176     { "Compass", CompassKernel, UndefinedOptionFlag, MagickFalse },
1177     { "Kirsch", KirschKernel, UndefinedOptionFlag, MagickFalse },
1178     { "Diamond", DiamondKernel, UndefinedOptionFlag, MagickFalse },
1179     { "Square", SquareKernel, UndefinedOptionFlag, MagickFalse },
1180     { "Rectangle", RectangleKernel, UndefinedOptionFlag, MagickFalse },
1181     { "Disk", DiskKernel, UndefinedOptionFlag, MagickFalse },
1182     { "Octagon", OctagonKernel, UndefinedOptionFlag, MagickFalse },
1183     { "Plus", PlusKernel, UndefinedOptionFlag, MagickFalse },
1184     { "Cross", CrossKernel, UndefinedOptionFlag, MagickFalse },
1185     { "Ring", RingKernel, UndefinedOptionFlag, MagickFalse },
1186     { "Peaks", PeaksKernel, UndefinedOptionFlag, MagickFalse },
1187     { "Edges", EdgesKernel, UndefinedOptionFlag, MagickFalse },
1188     { "Corners", CornersKernel, UndefinedOptionFlag, MagickFalse },
1189     { "Diagonals", DiagonalsKernel, UndefinedOptionFlag, MagickFalse },
1190     { "LineEnds", LineEndsKernel, UndefinedOptionFlag, MagickFalse },
1191     { "LineJunctions", LineJunctionsKernel, UndefinedOptionFlag, MagickFalse },
1192     { "Ridges", RidgesKernel, UndefinedOptionFlag, MagickFalse },
1193     { "ConvexHull", ConvexHullKernel, UndefinedOptionFlag, MagickFalse },
1194     { "ThinSe", ThinSEKernel, UndefinedOptionFlag, MagickFalse },
1195     { "Skeleton", SkeletonKernel, UndefinedOptionFlag, MagickFalse },
1196     { "Chebyshev", ChebyshevKernel, UndefinedOptionFlag, MagickFalse },
1197     { "Manhattan", ManhattanKernel, UndefinedOptionFlag, MagickFalse },
1198     { "Octagonal", OctagonalKernel, UndefinedOptionFlag, MagickFalse },
1199     { "Euclidean", EuclideanKernel, UndefinedOptionFlag, MagickFalse },
1200     { "User Defined", UserDefinedKernel, UndefinedOptionFlag, MagickTrue },
1201     { (char *) NULL, UndefinedKernel, UndefinedOptionFlag, MagickFalse }
1202   },
1203   LayerOptions[] =
1204   {
1205     { "Undefined", UndefinedLayer, UndefinedOptionFlag, MagickTrue },
1206     { "Coalesce", CoalesceLayer, UndefinedOptionFlag, MagickFalse },
1207     { "CompareAny", CompareAnyLayer, UndefinedOptionFlag, MagickFalse },
1208     { "CompareClear", CompareClearLayer, UndefinedOptionFlag, MagickFalse },
1209     { "CompareOverlay", CompareOverlayLayer, UndefinedOptionFlag, MagickFalse },
1210     { "Dispose", DisposeLayer, UndefinedOptionFlag, MagickFalse },
1211     { "Optimize", OptimizeLayer, UndefinedOptionFlag, MagickFalse },
1212     { "OptimizeFrame", OptimizeImageLayer, UndefinedOptionFlag, MagickFalse },
1213     { "OptimizePlus", OptimizePlusLayer, UndefinedOptionFlag, MagickFalse },
1214     { "OptimizeTransparency", OptimizeTransLayer, UndefinedOptionFlag, MagickFalse },
1215     { "RemoveDups", RemoveDupsLayer, UndefinedOptionFlag, MagickFalse },
1216     { "RemoveZero", RemoveZeroLayer, UndefinedOptionFlag, MagickFalse },
1217     { "Composite", CompositeLayer, UndefinedOptionFlag, MagickFalse },
1218     { "Merge", MergeLayer, UndefinedOptionFlag, MagickFalse },
1219     { "Flatten", FlattenLayer, UndefinedOptionFlag, MagickFalse },
1220     { "Mosaic", MosaicLayer, UndefinedOptionFlag, MagickFalse },
1221     { "TrimBounds", TrimBoundsLayer, UndefinedOptionFlag, MagickFalse },
1222     { (char *) NULL, UndefinedLayer, UndefinedOptionFlag, MagickFalse }
1223   },
1224   LineCapOptions[] =
1225   {
1226     { "Undefined", UndefinedCap, UndefinedOptionFlag, MagickTrue },
1227     { "Butt", ButtCap, UndefinedOptionFlag, MagickFalse },
1228     { "Round", RoundCap, UndefinedOptionFlag, MagickFalse },
1229     { "Square", SquareCap, UndefinedOptionFlag, MagickFalse },
1230     { (char *) NULL, UndefinedCap, UndefinedOptionFlag, MagickFalse }
1231   },
1232   LineJoinOptions[] =
1233   {
1234     { "Undefined", UndefinedJoin, UndefinedOptionFlag, MagickTrue },
1235     { "Bevel", BevelJoin, UndefinedOptionFlag, MagickFalse },
1236     { "Miter", MiterJoin, UndefinedOptionFlag, MagickFalse },
1237     { "Round", RoundJoin, UndefinedOptionFlag, MagickFalse },
1238     { (char *) NULL, UndefinedJoin, UndefinedOptionFlag, MagickFalse }
1239   },
1240   ListOptions[] =
1241   {
1242     { "Align", MagickAlignOptions, UndefinedOptionFlag, MagickFalse },
1243     { "Alpha", MagickAlphaChannelOptions, UndefinedOptionFlag, MagickFalse },
1244     { "Boolean", MagickBooleanOptions, UndefinedOptionFlag, MagickFalse },
1245     { "Cache", MagickCacheOptions, UndefinedOptionFlag, MagickFalse },
1246     { "Channel", MagickChannelOptions, UndefinedOptionFlag, MagickFalse },
1247     { "Class", MagickClassOptions, UndefinedOptionFlag, MagickFalse },
1248     { "ClipPath", MagickClipPathOptions, UndefinedOptionFlag, MagickFalse },
1249     { "Coder", MagickCoderOptions, UndefinedOptionFlag, MagickFalse },
1250     { "Color", MagickColorOptions, UndefinedOptionFlag, MagickFalse },
1251     { "Colorspace", MagickColorspaceOptions, UndefinedOptionFlag, MagickFalse },
1252     { "Command", MagickCommandOptions, UndefinedOptionFlag, MagickFalse },
1253     { "Complex", MagickComplexOptions, UndefinedOptionFlag, MagickFalse },
1254     { "Compose", MagickComposeOptions, UndefinedOptionFlag, MagickFalse },
1255     { "Compress", MagickCompressOptions, UndefinedOptionFlag, MagickFalse },
1256     { "Configure", MagickConfigureOptions, UndefinedOptionFlag, MagickFalse },
1257     { "DataType", MagickDataTypeOptions, UndefinedOptionFlag, MagickFalse },
1258     { "Debug", MagickDebugOptions, UndefinedOptionFlag, MagickFalse },
1259     { "Decoration", MagickDecorateOptions, UndefinedOptionFlag, MagickFalse },
1260     { "Delegate", MagickDelegateOptions, UndefinedOptionFlag, MagickFalse },
1261     { "Direction", MagickDirectionOptions, UndefinedOptionFlag, MagickFalse },
1262     { "Dispose", MagickDisposeOptions, UndefinedOptionFlag, MagickFalse },
1263     { "Distort", MagickDistortOptions, UndefinedOptionFlag, MagickFalse },
1264     { "Dither", MagickDitherOptions, UndefinedOptionFlag, MagickFalse },
1265     { "Endian", MagickEndianOptions, UndefinedOptionFlag, MagickFalse },
1266     { "Evaluate", MagickEvaluateOptions, UndefinedOptionFlag, MagickFalse },
1267     { "FillRule", MagickFillRuleOptions, UndefinedOptionFlag, MagickFalse },
1268     { "Filter", MagickFilterOptions, UndefinedOptionFlag, MagickFalse },
1269     { "Font", MagickFontOptions, UndefinedOptionFlag, MagickFalse },
1270     { "Format", MagickFormatOptions, UndefinedOptionFlag, MagickFalse },
1271     { "Function", MagickFunctionOptions, UndefinedOptionFlag, MagickFalse },
1272     { "Gravity", MagickGravityOptions, UndefinedOptionFlag, MagickFalse },
1273     { "Intensity", MagickPixelIntensityOptions, UndefinedOptionFlag, MagickFalse },
1274     { "Intent", MagickIntentOptions, UndefinedOptionFlag, MagickFalse },
1275     { "Interlace", MagickInterlaceOptions, UndefinedOptionFlag, MagickFalse },
1276     { "Interpolate", MagickInterpolateOptions, UndefinedOptionFlag, MagickFalse },
1277     { "Kernel", MagickKernelOptions, UndefinedOptionFlag, MagickFalse },
1278     { "Layers", MagickLayerOptions, UndefinedOptionFlag, MagickFalse },
1279     { "LineCap", MagickLineCapOptions, UndefinedOptionFlag, MagickFalse },
1280     { "LineJoin", MagickLineJoinOptions, UndefinedOptionFlag, MagickFalse },
1281     { "List", MagickListOptions, UndefinedOptionFlag, MagickFalse },
1282     { "Locale", MagickLocaleOptions, UndefinedOptionFlag, MagickFalse },
1283     { "LogEvent", MagickLogEventOptions, UndefinedOptionFlag, MagickFalse },
1284     { "Log", MagickLogOptions, UndefinedOptionFlag, MagickFalse },
1285     { "Magic", MagickMagicOptions, UndefinedOptionFlag, MagickFalse },
1286     { "Method", MagickMethodOptions, UndefinedOptionFlag, MagickFalse },
1287     { "Metric", MagickMetricOptions, UndefinedOptionFlag, MagickFalse },
1288     { "Mime", MagickMimeOptions, UndefinedOptionFlag, MagickFalse },
1289     { "Mode", MagickModeOptions, UndefinedOptionFlag, MagickFalse },
1290     { "Morphology", MagickMorphologyOptions, UndefinedOptionFlag, MagickFalse },
1291     { "Module", MagickModuleOptions, UndefinedOptionFlag, MagickFalse },
1292     { "Noise", MagickNoiseOptions, UndefinedOptionFlag, MagickFalse },
1293     { "Orientation", MagickOrientationOptions, UndefinedOptionFlag, MagickFalse },
1294     { "PixelChannel", MagickPixelChannelOptions, UndefinedOptionFlag, MagickFalse },
1295     { "PixelIntensity", MagickPixelIntensityOptions, UndefinedOptionFlag, MagickFalse },
1296     { "PixelMask", MagickPixelMaskOptions, UndefinedOptionFlag, MagickFalse },
1297     { "PixelTrait", MagickPixelTraitOptions, UndefinedOptionFlag, MagickFalse },
1298     { "Policy", MagickPolicyOptions, UndefinedOptionFlag, MagickFalse },
1299     { "PolicyDomain", MagickPolicyDomainOptions, UndefinedOptionFlag, MagickFalse },
1300     { "PolicyRights", MagickPolicyRightsOptions, UndefinedOptionFlag, MagickFalse },
1301     { "Preview", MagickPreviewOptions, UndefinedOptionFlag, MagickFalse },
1302     { "Primitive", MagickPrimitiveOptions, UndefinedOptionFlag, MagickFalse },
1303     { "QuantumFormat", MagickQuantumFormatOptions, UndefinedOptionFlag, MagickFalse },
1304     { "Resource", MagickResourceOptions, UndefinedOptionFlag, MagickFalse },
1305     { "SparseColor", MagickSparseColorOptions, UndefinedOptionFlag, MagickFalse },
1306     { "Statistic", MagickStatisticOptions, UndefinedOptionFlag, MagickFalse },
1307     { "Storage", MagickStorageOptions, UndefinedOptionFlag, MagickFalse },
1308     { "Stretch", MagickStretchOptions, UndefinedOptionFlag, MagickFalse },
1309     { "Style", MagickStyleOptions, UndefinedOptionFlag, MagickFalse },
1310     { "Threshold", MagickThresholdOptions, UndefinedOptionFlag, MagickFalse },
1311     { "Type", MagickTypeOptions, UndefinedOptionFlag, MagickFalse },
1312     { "Units", MagickResolutionOptions, UndefinedOptionFlag, MagickFalse },
1313     { "Undefined", MagickUndefinedOptions, UndefinedOptionFlag, MagickTrue },
1314     { "Validate", MagickValidateOptions, UndefinedOptionFlag, MagickFalse },
1315     { "VirtualPixel", MagickVirtualPixelOptions, UndefinedOptionFlag, MagickFalse },
1316     { (char *) NULL, MagickUndefinedOptions, UndefinedOptionFlag, MagickFalse }
1317   },
1318   LogEventOptions[] =
1319   {
1320     { "Undefined", UndefinedEvents, UndefinedOptionFlag, MagickTrue },
1321     { "All", (AllEvents &~ TraceEvent), UndefinedOptionFlag, MagickFalse },
1322     { "Accelerate", AccelerateEvent, UndefinedOptionFlag, MagickFalse },
1323     { "Annotate", AnnotateEvent, UndefinedOptionFlag, MagickFalse },
1324     { "Blob", BlobEvent, UndefinedOptionFlag, MagickFalse },
1325     { "Cache", CacheEvent, UndefinedOptionFlag, MagickFalse },
1326     { "Coder", CoderEvent, UndefinedOptionFlag, MagickFalse },
1327     { "Command", CommandEvent, UndefinedOptionFlag, MagickFalse },
1328     { "Configure", ConfigureEvent, UndefinedOptionFlag, MagickFalse },
1329     { "Deprecate", DeprecateEvent, UndefinedOptionFlag, MagickFalse },
1330     { "Draw", DrawEvent, UndefinedOptionFlag, MagickFalse },
1331     { "Exception", ExceptionEvent, UndefinedOptionFlag, MagickFalse },
1332     { "Locale", LocaleEvent, UndefinedOptionFlag, MagickFalse },
1333     { "Module", ModuleEvent, UndefinedOptionFlag, MagickFalse },
1334     { "None", NoEvents, UndefinedOptionFlag, MagickFalse },
1335     { "Pixel", PixelEvent, UndefinedOptionFlag, MagickFalse },
1336     { "Policy", PolicyEvent, UndefinedOptionFlag, MagickFalse },
1337     { "Resource", ResourceEvent, UndefinedOptionFlag, MagickFalse },
1338     { "Trace", TraceEvent, UndefinedOptionFlag, MagickFalse },
1339     { "Transform", TransformEvent, UndefinedOptionFlag, MagickFalse },
1340     { "User", UserEvent, UndefinedOptionFlag, MagickFalse },
1341     { "Wand", WandEvent, UndefinedOptionFlag, MagickFalse },
1342     { "X11", X11Event, UndefinedOptionFlag, MagickFalse },
1343     { (char *) NULL, UndefinedEvents, UndefinedOptionFlag, MagickFalse }
1344   },
1345   MetricOptions[] =
1346   {
1347     { "Undefined", UndefinedErrorMetric, UndefinedOptionFlag, MagickTrue },
1348     { "AE", AbsoluteErrorMetric, UndefinedOptionFlag, MagickFalse },
1349     { "Fuzz", FuzzErrorMetric, UndefinedOptionFlag, MagickFalse },
1350     { "MAE", MeanAbsoluteErrorMetric, UndefinedOptionFlag, MagickFalse },
1351     { "MEPP", MeanErrorPerPixelErrorMetric, UndefinedOptionFlag, MagickFalse },
1352     { "MSE", MeanSquaredErrorMetric, UndefinedOptionFlag, MagickFalse },
1353     { "NCC", NormalizedCrossCorrelationErrorMetric, UndefinedOptionFlag, MagickFalse },
1354     { "PAE", PeakAbsoluteErrorMetric, UndefinedOptionFlag, MagickFalse },
1355     { "PHASh", PerceptualHashErrorMetric, UndefinedOptionFlag, MagickFalse },
1356     { "PSNR", PeakSignalToNoiseRatioErrorMetric, UndefinedOptionFlag, MagickFalse },
1357     { "RMSE", RootMeanSquaredErrorMetric, UndefinedOptionFlag, MagickFalse },
1358     { (char *) NULL, UndefinedErrorMetric, UndefinedOptionFlag, MagickFalse }
1359   },
1360   MethodOptions[] =
1361   {
1362     { "Undefined", UndefinedMethod, UndefinedOptionFlag, MagickTrue },
1363     { "FillToBorder", FillToBorderMethod, UndefinedOptionFlag, MagickFalse },
1364     { "Floodfill", FloodfillMethod, UndefinedOptionFlag, MagickFalse },
1365     { "Point", PointMethod, UndefinedOptionFlag, MagickFalse },
1366     { "Replace", ReplaceMethod, UndefinedOptionFlag, MagickFalse },
1367     { "Reset", ResetMethod, UndefinedOptionFlag, MagickFalse },
1368     { (char *) NULL, UndefinedMethod, UndefinedOptionFlag, MagickFalse }
1369   },
1370   ModeOptions[] =
1371   {
1372     { "Undefined", UndefinedMode, UndefinedOptionFlag, MagickTrue },
1373     { "Concatenate", ConcatenateMode, UndefinedOptionFlag, MagickFalse },
1374     { "Frame", FrameMode, UndefinedOptionFlag, MagickFalse },
1375     { "Unframe", UnframeMode, UndefinedOptionFlag, MagickFalse },
1376     { (char *) NULL, UndefinedMode, UndefinedOptionFlag, MagickFalse }
1377   },
1378   MorphologyOptions[] =
1379   {
1380     { "Undefined", UndefinedMorphology, UndefinedOptionFlag, MagickTrue },
1381     { "Correlate", CorrelateMorphology, UndefinedOptionFlag, MagickFalse },
1382     { "Convolve", ConvolveMorphology, UndefinedOptionFlag, MagickFalse },
1383     { "Dilate", DilateMorphology, UndefinedOptionFlag, MagickFalse },
1384     { "Erode", ErodeMorphology, UndefinedOptionFlag, MagickFalse },
1385     { "Close", CloseMorphology, UndefinedOptionFlag, MagickFalse },
1386     { "Open", OpenMorphology, UndefinedOptionFlag, MagickFalse },
1387     { "DilateIntensity", DilateIntensityMorphology, UndefinedOptionFlag, MagickFalse },
1388     { "ErodeIntensity", ErodeIntensityMorphology, UndefinedOptionFlag, MagickFalse },
1389     { "CloseIntensity", CloseIntensityMorphology, UndefinedOptionFlag, MagickFalse },
1390     { "OpenIntensity", OpenIntensityMorphology, UndefinedOptionFlag, MagickFalse },
1391     { "DilateI", DilateIntensityMorphology, UndefinedOptionFlag, MagickFalse },
1392     { "ErodeI", ErodeIntensityMorphology, UndefinedOptionFlag, MagickFalse },
1393     { "CloseI", CloseIntensityMorphology, UndefinedOptionFlag, MagickFalse },
1394     { "OpenI", OpenIntensityMorphology, UndefinedOptionFlag, MagickFalse },
1395     { "Smooth", SmoothMorphology, UndefinedOptionFlag, MagickFalse },
1396     { "EdgeOut", EdgeOutMorphology, UndefinedOptionFlag, MagickFalse },
1397     { "EdgeIn", EdgeInMorphology, UndefinedOptionFlag, MagickFalse },
1398     { "Edge", EdgeMorphology, UndefinedOptionFlag, MagickFalse },
1399     { "TopHat", TopHatMorphology, UndefinedOptionFlag, MagickFalse },
1400     { "BottomHat", BottomHatMorphology, UndefinedOptionFlag, MagickFalse },
1401     { "Hmt", HitAndMissMorphology, UndefinedOptionFlag, MagickFalse },
1402     { "HitNMiss", HitAndMissMorphology, UndefinedOptionFlag, MagickFalse },
1403     { "HitAndMiss", HitAndMissMorphology, UndefinedOptionFlag, MagickFalse },
1404     { "Thinning", ThinningMorphology, UndefinedOptionFlag, MagickFalse },
1405     { "Thicken", ThickenMorphology, UndefinedOptionFlag, MagickFalse },
1406     { "Distance", DistanceMorphology, UndefinedOptionFlag, MagickFalse },
1407     { "IterativeDistance", IterativeDistanceMorphology, UndefinedOptionFlag, MagickFalse },
1408     { "Voronoi", VoronoiMorphology, UndefinedOptionFlag, MagickTrue },
1409     { (char *) NULL, UndefinedMorphology, UndefinedOptionFlag, MagickFalse }
1410   },
1411   NoiseOptions[] =
1412   {
1413     { "Undefined", UndefinedNoise, UndefinedOptionFlag, MagickTrue },
1414     { "Gaussian", GaussianNoise, UndefinedOptionFlag, MagickFalse },
1415     { "Impulse", ImpulseNoise, UndefinedOptionFlag, MagickFalse },
1416     { "Laplacian", LaplacianNoise, UndefinedOptionFlag, MagickFalse },
1417     { "Multiplicative", MultiplicativeGaussianNoise, UndefinedOptionFlag, MagickFalse },
1418     { "Poisson", PoissonNoise, UndefinedOptionFlag, MagickFalse },
1419     { "Random", RandomNoise, UndefinedOptionFlag, MagickFalse },
1420     { "Uniform", UniformNoise, UndefinedOptionFlag, MagickFalse },
1421     { (char *) NULL, UndefinedNoise, UndefinedOptionFlag, MagickFalse }
1422   },
1423   OrientationOptions[] =
1424   {
1425     { "Undefined", UndefinedOrientation, UndefinedOptionFlag, MagickTrue },
1426     { "TopLeft", TopLeftOrientation, UndefinedOptionFlag, MagickFalse },
1427     { "TopRight", TopRightOrientation, UndefinedOptionFlag, MagickFalse },
1428     { "BottomRight", BottomRightOrientation, UndefinedOptionFlag, MagickFalse },
1429     { "BottomLeft", BottomLeftOrientation, UndefinedOptionFlag, MagickFalse },
1430     { "LeftTop", LeftTopOrientation, UndefinedOptionFlag, MagickFalse },
1431     { "RightTop", RightTopOrientation, UndefinedOptionFlag, MagickFalse },
1432     { "RightBottom", RightBottomOrientation, UndefinedOptionFlag, MagickFalse },
1433     { "LeftBottom", LeftBottomOrientation, UndefinedOptionFlag, MagickFalse },
1434     { (char *) NULL, UndefinedOrientation, UndefinedOptionFlag, MagickFalse }
1435   },
1436   PixelChannelOptions[] =
1437   {
1438     { "Undefined", UndefinedPixelChannel, UndefinedOptionFlag, MagickFalse },
1439     { "A", AlphaPixelChannel, UndefinedOptionFlag, MagickFalse },
1440     { "Alpha", AlphaPixelChannel, UndefinedOptionFlag, MagickFalse },
1441     { "B", BluePixelChannel, UndefinedOptionFlag, MagickFalse },
1442     { "Bk", BlackPixelChannel, UndefinedOptionFlag, MagickFalse },
1443     { "Black", BlackPixelChannel, UndefinedOptionFlag, MagickFalse },
1444     { "Blue", BluePixelChannel, UndefinedOptionFlag, MagickFalse },
1445     { "Cb", CbPixelChannel, UndefinedOptionFlag, MagickFalse },
1446     { "Composite", CompositePixelChannel, UndefinedOptionFlag, MagickFalse },
1447     { "C", CyanPixelChannel, UndefinedOptionFlag, MagickFalse },
1448     { "Cr", CrPixelChannel, UndefinedOptionFlag, MagickFalse },
1449     { "Cyan", CyanPixelChannel, UndefinedOptionFlag, MagickFalse },
1450     { "Gray", GrayPixelChannel, UndefinedOptionFlag, MagickFalse },
1451     { "G", GreenPixelChannel, UndefinedOptionFlag, MagickFalse },
1452     { "Green", GreenPixelChannel, UndefinedOptionFlag, MagickFalse },
1453     { "Index", IndexPixelChannel, UndefinedOptionFlag, MagickFalse },
1454     { "Intensity", IntensityPixelChannel, UndefinedOptionFlag, MagickFalse },
1455     { "K", BlackPixelChannel, UndefinedOptionFlag, MagickFalse },
1456     { "M", MagentaPixelChannel, UndefinedOptionFlag, MagickFalse },
1457     { "Magenta", MagentaPixelChannel, UndefinedOptionFlag, MagickFalse },
1458     { "R", RedPixelChannel, UndefinedOptionFlag, MagickFalse },
1459     { "ReadMask", ReadMaskPixelChannel, UndefinedOptionFlag, MagickFalse },
1460     { "Red", RedPixelChannel, UndefinedOptionFlag, MagickFalse },
1461     { "Sync", SyncPixelChannel, UndefinedOptionFlag, MagickFalse },
1462     { "WriteMask", WriteMaskPixelChannel, UndefinedOptionFlag, MagickFalse },
1463     { "Y", YellowPixelChannel, UndefinedOptionFlag, MagickFalse },
1464     { "Yellow", YellowPixelChannel, UndefinedOptionFlag, MagickFalse },
1465     { (char *) NULL, UndefinedPixelChannel, UndefinedOptionFlag, MagickFalse }
1466   },
1467   PixelIntensityOptions[] =
1468   {
1469     { "Undefined", UndefinedPixelIntensityMethod, UndefinedOptionFlag, MagickTrue },
1470     { "Average", AveragePixelIntensityMethod, UndefinedOptionFlag, MagickFalse },
1471     { "Brightness", BrightnessPixelIntensityMethod, UndefinedOptionFlag, MagickFalse },
1472     { "Lightness", LightnessPixelIntensityMethod, UndefinedOptionFlag, MagickFalse },
1473     { "MS", MSPixelIntensityMethod, UndefinedOptionFlag, MagickFalse },
1474     { "Rec601Luma", Rec601LumaPixelIntensityMethod, UndefinedOptionFlag, MagickFalse },
1475     { "Rec601Luminance", Rec601LuminancePixelIntensityMethod, UndefinedOptionFlag, MagickFalse },
1476     { "Rec709Luma", Rec709LumaPixelIntensityMethod, UndefinedOptionFlag, MagickFalse },
1477     { "Rec709Luminance", Rec709LuminancePixelIntensityMethod, UndefinedOptionFlag, MagickFalse },
1478     { "RMS", RMSPixelIntensityMethod, UndefinedOptionFlag, MagickFalse },
1479     { (char *) NULL, UndefinedPixelIntensityMethod, UndefinedOptionFlag, MagickFalse }
1480   },
1481   PixelMaskOptions[] =
1482   {
1483     { "Undefined", UndefinedPixelMask, UndefinedOptionFlag, MagickTrue },
1484     { "R", ReadPixelMask, UndefinedOptionFlag, MagickFalse },
1485     { "Read", ReadPixelMask, UndefinedOptionFlag, MagickFalse },
1486     { "W", WritePixelMask, UndefinedOptionFlag, MagickFalse },
1487     { "Write", WritePixelMask, UndefinedOptionFlag, MagickFalse },
1488     { (char *) NULL, UndefinedPixelMask, UndefinedOptionFlag, MagickFalse }
1489   },
1490   PixelTraitOptions[] =
1491   {
1492     { "Undefined", UndefinedPixelTrait, UndefinedOptionFlag, MagickTrue },
1493     { "Blend", BlendPixelTrait, UndefinedOptionFlag, MagickFalse },
1494     { "Copy", CopyPixelTrait, UndefinedOptionFlag, MagickFalse },
1495     { "Update", UpdatePixelTrait, UndefinedOptionFlag, MagickFalse },
1496     { (char *) NULL, UndefinedPixelTrait, UndefinedOptionFlag, MagickFalse }
1497   },
1498   PolicyDomainOptions[] =
1499   {
1500     { "Undefined", UndefinedPolicyDomain, UndefinedOptionFlag, MagickTrue },
1501     { "Coder", CoderPolicyDomain, UndefinedOptionFlag, MagickFalse },
1502     { "Delegate", DelegatePolicyDomain, UndefinedOptionFlag, MagickFalse },
1503     { "Filter", FilterPolicyDomain, UndefinedOptionFlag, MagickFalse },
1504     { "Path", PathPolicyDomain, UndefinedOptionFlag, MagickFalse },
1505     { "Resource", ResourcePolicyDomain, UndefinedOptionFlag, MagickFalse },
1506     { "System", SystemPolicyDomain, UndefinedOptionFlag, MagickFalse },
1507     { (char *) NULL, UndefinedPolicyDomain, UndefinedOptionFlag, MagickFalse }
1508   },
1509   PolicyRightsOptions[] =
1510   {
1511     { "Undefined", UndefinedPolicyRights, UndefinedOptionFlag, MagickTrue },
1512     { "None", NoPolicyRights, UndefinedOptionFlag, MagickFalse },
1513     { "Read", ReadPolicyRights, UndefinedOptionFlag, MagickFalse },
1514     { "Write", WritePolicyRights, UndefinedOptionFlag, MagickFalse },
1515     { "Execute", ExecutePolicyRights, UndefinedOptionFlag, MagickFalse },
1516     { (char *) NULL, UndefinedPolicyRights, UndefinedOptionFlag, MagickFalse }
1517   },
1518   PreviewOptions[] =
1519   {
1520     { "Undefined", UndefinedPreview, UndefinedOptionFlag, MagickTrue },
1521     { "AddNoise", AddNoisePreview, UndefinedOptionFlag, MagickFalse },
1522     { "Blur", BlurPreview, UndefinedOptionFlag, MagickFalse },
1523     { "Brightness", BrightnessPreview, UndefinedOptionFlag, MagickFalse },
1524     { "Charcoal", CharcoalDrawingPreview, UndefinedOptionFlag, MagickFalse },
1525     { "Despeckle", DespecklePreview, UndefinedOptionFlag, MagickFalse },
1526     { "Dull", DullPreview, UndefinedOptionFlag, MagickFalse },
1527     { "EdgeDetect", EdgeDetectPreview, UndefinedOptionFlag, MagickFalse },
1528     { "Gamma", GammaPreview, UndefinedOptionFlag, MagickFalse },
1529     { "Grayscale", GrayscalePreview, UndefinedOptionFlag, MagickFalse },
1530     { "Hue", HuePreview, UndefinedOptionFlag, MagickFalse },
1531     { "Implode", ImplodePreview, UndefinedOptionFlag, MagickFalse },
1532     { "JPEG", JPEGPreview, UndefinedOptionFlag, MagickFalse },
1533     { "OilPaint", OilPaintPreview, UndefinedOptionFlag, MagickFalse },
1534     { "Quantize", QuantizePreview, UndefinedOptionFlag, MagickFalse },
1535     { "Raise", RaisePreview, UndefinedOptionFlag, MagickFalse },
1536     { "ReduceNoise", ReduceNoisePreview, UndefinedOptionFlag, MagickFalse },
1537     { "Roll", RollPreview, UndefinedOptionFlag, MagickFalse },
1538     { "Rotate", RotatePreview, UndefinedOptionFlag, MagickFalse },
1539     { "Saturation", SaturationPreview, UndefinedOptionFlag, MagickFalse },
1540     { "Segment", SegmentPreview, UndefinedOptionFlag, MagickFalse },
1541     { "Shade", ShadePreview, UndefinedOptionFlag, MagickFalse },
1542     { "Sharpen", SharpenPreview, UndefinedOptionFlag, MagickFalse },
1543     { "Shear", ShearPreview, UndefinedOptionFlag, MagickFalse },
1544     { "Solarize", SolarizePreview, UndefinedOptionFlag, MagickFalse },
1545     { "Spiff", SpiffPreview, UndefinedOptionFlag, MagickFalse },
1546     { "Spread", SpreadPreview, UndefinedOptionFlag, MagickFalse },
1547     { "Swirl", SwirlPreview, UndefinedOptionFlag, MagickFalse },
1548     { "Threshold", ThresholdPreview, UndefinedOptionFlag, MagickFalse },
1549     { "Wave", WavePreview, UndefinedOptionFlag, MagickFalse },
1550     { (char *) NULL, UndefinedPreview, UndefinedOptionFlag, MagickFalse }
1551   },
1552   PrimitiveOptions[] =
1553   {
1554     { "Undefined", UndefinedPrimitive, UndefinedOptionFlag, MagickTrue },
1555     { "Arc", ArcPrimitive, UndefinedOptionFlag, MagickFalse },
1556     { "Bezier", BezierPrimitive, UndefinedOptionFlag, MagickFalse },
1557     { "Circle", CirclePrimitive, UndefinedOptionFlag, MagickFalse },
1558     { "Color", ColorPrimitive, UndefinedOptionFlag, MagickFalse },
1559     { "Ellipse", EllipsePrimitive, UndefinedOptionFlag, MagickFalse },
1560     { "Image", ImagePrimitive, UndefinedOptionFlag, MagickFalse },
1561     { "Line", LinePrimitive, UndefinedOptionFlag, MagickFalse },
1562     { "Matte", MattePrimitive, UndefinedOptionFlag, MagickFalse },
1563     { "Path", PathPrimitive, UndefinedOptionFlag, MagickFalse },
1564     { "Point", PointPrimitive, UndefinedOptionFlag, MagickFalse },
1565     { "Polygon", PolygonPrimitive, UndefinedOptionFlag, MagickFalse },
1566     { "Polyline", PolylinePrimitive, UndefinedOptionFlag, MagickFalse },
1567     { "Rectangle", RectanglePrimitive, UndefinedOptionFlag, MagickFalse },
1568     { "RoundRectangle", RoundRectanglePrimitive, UndefinedOptionFlag, MagickFalse },
1569     { "Text", TextPrimitive, UndefinedOptionFlag, MagickFalse },
1570     { (char *) NULL, UndefinedPrimitive, UndefinedOptionFlag, MagickFalse }
1571   },
1572   QuantumFormatOptions[] =
1573   {
1574     { "Undefined", UndefinedQuantumFormat, UndefinedOptionFlag, MagickTrue },
1575     { "FloatingPoint", FloatingPointQuantumFormat, UndefinedOptionFlag, MagickFalse },
1576     { "Signed", SignedQuantumFormat, UndefinedOptionFlag, MagickFalse },
1577     { "Unsigned", UnsignedQuantumFormat, UndefinedOptionFlag, MagickFalse },
1578     { (char *) NULL, FloatingPointQuantumFormat, UndefinedOptionFlag, MagickFalse }
1579   },
1580   ResolutionOptions[] =
1581   {
1582     { "Undefined", UndefinedResolution, UndefinedOptionFlag, MagickTrue },
1583     { "PixelsPerInch", PixelsPerInchResolution, UndefinedOptionFlag, MagickFalse },
1584     { "PixelsPerCentimeter", PixelsPerCentimeterResolution, UndefinedOptionFlag, MagickFalse },
1585     { (char *) NULL, UndefinedResolution, UndefinedOptionFlag, MagickFalse }
1586   },
1587   ResourceOptions[] =
1588   {
1589     { "Undefined", UndefinedResource, UndefinedOptionFlag, MagickTrue },
1590     { "Area", AreaResource, UndefinedOptionFlag, MagickFalse },
1591     { "Disk", DiskResource, UndefinedOptionFlag, MagickFalse },
1592     { "File", FileResource, UndefinedOptionFlag, MagickFalse },
1593     { "Map", MapResource, UndefinedOptionFlag, MagickFalse },
1594     { "Memory", MemoryResource, UndefinedOptionFlag, MagickFalse },
1595     { "Thread", ThreadResource, UndefinedOptionFlag, MagickFalse },
1596     { "Time", TimeResource, UndefinedOptionFlag, MagickFalse },
1597     { (char *) NULL, UndefinedResource, UndefinedOptionFlag, MagickFalse }
1598   },
1599   SparseColorOptions[] =
1600   {
1601     { "Undefined", UndefinedDistortion, UndefinedOptionFlag, MagickTrue },
1602     { "Barycentric", BarycentricColorInterpolate, UndefinedOptionFlag, MagickFalse },
1603     { "Bilinear", BilinearColorInterpolate, UndefinedOptionFlag, MagickFalse },
1604     { "Inverse", InverseColorInterpolate, UndefinedOptionFlag, MagickFalse },
1605     { "Shepards", ShepardsColorInterpolate, UndefinedOptionFlag, MagickFalse },
1606     { "Voronoi", VoronoiColorInterpolate, UndefinedOptionFlag, MagickFalse },
1607     { (char *) NULL, UndefinedResource, UndefinedOptionFlag, MagickFalse }
1608   },
1609   StatisticOptions[] =
1610   {
1611     { "Undefined", UndefinedStatistic, UndefinedOptionFlag, MagickTrue },
1612     { "Gradient", GradientStatistic, UndefinedOptionFlag, MagickFalse },
1613     { "Maximum", MaximumStatistic, UndefinedOptionFlag, MagickFalse },
1614     { "Mean", MeanStatistic, UndefinedOptionFlag, MagickFalse },
1615     { "Median", MedianStatistic, UndefinedOptionFlag, MagickFalse },
1616     { "Minimum", MinimumStatistic, UndefinedOptionFlag, MagickFalse },
1617     { "Mode", ModeStatistic, UndefinedOptionFlag, MagickFalse },
1618     { "NonPeak", NonpeakStatistic, UndefinedOptionFlag, MagickFalse },
1619     { "StandardDeviation", StandardDeviationStatistic, UndefinedOptionFlag, MagickFalse },
1620     { (char *) NULL, UndefinedMethod, UndefinedOptionFlag, MagickFalse }
1621   },
1622   StorageOptions[] =
1623   {
1624     { "Undefined", UndefinedPixel, UndefinedOptionFlag, MagickTrue },
1625     { "Char", CharPixel, UndefinedOptionFlag, MagickFalse },
1626     { "Double", DoublePixel, UndefinedOptionFlag, MagickFalse },
1627     { "Float", FloatPixel, UndefinedOptionFlag, MagickFalse },
1628     { "Long", LongPixel, UndefinedOptionFlag, MagickFalse },
1629     { "LongLong", LongLongPixel, UndefinedOptionFlag, MagickFalse },
1630     { "Quantum", QuantumPixel, UndefinedOptionFlag, MagickFalse },
1631     { "Short", ShortPixel, UndefinedOptionFlag, MagickFalse },
1632     { (char *) NULL, UndefinedResource, UndefinedOptionFlag, MagickFalse }
1633   },
1634   StretchOptions[] =
1635   {
1636     { "Undefined", UndefinedStretch, UndefinedOptionFlag, MagickTrue },
1637     { "Any", AnyStretch, UndefinedOptionFlag, MagickFalse },
1638     { "Condensed", CondensedStretch, UndefinedOptionFlag, MagickFalse },
1639     { "Expanded", ExpandedStretch, UndefinedOptionFlag, MagickFalse },
1640     { "ExtraCondensed", ExtraCondensedStretch, UndefinedOptionFlag, MagickFalse },
1641     { "ExtraExpanded", ExtraExpandedStretch, UndefinedOptionFlag, MagickFalse },
1642     { "Normal", NormalStretch, UndefinedOptionFlag, MagickFalse },
1643     { "SemiCondensed", SemiCondensedStretch, UndefinedOptionFlag, MagickFalse },
1644     { "SemiExpanded", SemiExpandedStretch, UndefinedOptionFlag, MagickFalse },
1645     { "UltraCondensed", UltraCondensedStretch, UndefinedOptionFlag, MagickFalse },
1646     { "UltraExpanded", UltraExpandedStretch, UndefinedOptionFlag, MagickFalse },
1647     { (char *) NULL, UndefinedStretch, UndefinedOptionFlag, MagickFalse }
1648   },
1649   StyleOptions[] =
1650   {
1651     { "Undefined", UndefinedStyle, UndefinedOptionFlag, MagickTrue },
1652     { "Any", AnyStyle, UndefinedOptionFlag, MagickFalse },
1653     { "Italic", ItalicStyle, UndefinedOptionFlag, MagickFalse },
1654     { "Normal", NormalStyle, UndefinedOptionFlag, MagickFalse },
1655     { "Oblique", ObliqueStyle, UndefinedOptionFlag, MagickFalse },
1656     { (char *) NULL, UndefinedStyle, UndefinedOptionFlag, MagickFalse }
1657   },
1658   TypeOptions[] =
1659   {
1660     { "Undefined", UndefinedType, UndefinedOptionFlag, MagickTrue },
1661     { "Bilevel", BilevelType, UndefinedOptionFlag, MagickFalse },
1662     { "ColorSeparation", ColorSeparationType, UndefinedOptionFlag, MagickFalse },
1663     { "ColorSeparationAlpha", ColorSeparationMatteType, UndefinedOptionFlag, MagickFalse },
1664     { "ColorSeparationMatte", ColorSeparationMatteType, UndefinedOptionFlag, MagickFalse },
1665     { "Grayscale", GrayscaleType, UndefinedOptionFlag, MagickFalse },
1666     { "GrayscaleAlpha", GrayscaleMatteType, UndefinedOptionFlag, MagickFalse },
1667     { "GrayscaleMatte", GrayscaleMatteType, UndefinedOptionFlag, MagickFalse },
1668     { "Optimize", OptimizeType, UndefinedOptionFlag, MagickFalse },
1669     { "Palette", PaletteType, UndefinedOptionFlag, MagickFalse },
1670     { "PaletteBilevelAlpha", PaletteBilevelMatteType, UndefinedOptionFlag, MagickFalse },
1671     { "PaletteBilevelMatte", PaletteBilevelMatteType, UndefinedOptionFlag, MagickFalse },
1672     { "PaletteAlpha", PaletteMatteType, UndefinedOptionFlag, MagickFalse },
1673     { "PaletteMatte", PaletteMatteType, UndefinedOptionFlag, MagickFalse },
1674     { "TrueColorAlpha", TrueColorMatteType, UndefinedOptionFlag, MagickFalse },
1675     { "TrueColorMatte", TrueColorMatteType, UndefinedOptionFlag, MagickFalse },
1676     { "TrueColor", TrueColorType, UndefinedOptionFlag, MagickFalse },
1677     { (char *) NULL, UndefinedType, UndefinedOptionFlag, MagickFalse }
1678   },
1679   ValidateOptions[] =
1680   {
1681     { "Undefined", UndefinedValidate, UndefinedOptionFlag, MagickTrue },
1682     { "All", AllValidate, UndefinedOptionFlag, MagickFalse },
1683     { "Colorspace", ColorspaceValidate, UndefinedOptionFlag, MagickFalse },
1684     { "Compare", CompareValidate, UndefinedOptionFlag, MagickFalse },
1685     { "Composite", CompositeValidate, UndefinedOptionFlag, MagickFalse },
1686     { "Convert", ConvertValidate, UndefinedOptionFlag, MagickFalse },
1687     { "FormatsDisk", FormatsDiskValidate, UndefinedOptionFlag, MagickFalse },
1688     { "FormatsMap", FormatsMapValidate, UndefinedOptionFlag, MagickFalse },
1689     { "FormatsMemory", FormatsMemoryValidate, UndefinedOptionFlag, MagickFalse },
1690     { "Identify", IdentifyValidate, UndefinedOptionFlag, MagickFalse },
1691     { "ImportExport", ImportExportValidate, UndefinedOptionFlag, MagickFalse },
1692     { "Montage", MontageValidate, UndefinedOptionFlag, MagickFalse },
1693     { "Stream", StreamValidate, UndefinedOptionFlag, MagickFalse },
1694     { "None", NoValidate, UndefinedOptionFlag, MagickFalse },
1695     { (char *) NULL, UndefinedValidate, UndefinedOptionFlag, MagickFalse }
1696   },
1697   VirtualPixelOptions[] =
1698   {
1699     { "Undefined", UndefinedVirtualPixelMethod, UndefinedOptionFlag, MagickTrue },
1700     { "Background", BackgroundVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1701     { "Black", BlackVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1702     { "Constant", BackgroundVirtualPixelMethod, DeprecateOptionFlag, MagickTrue },
1703     { "CheckerTile", CheckerTileVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1704     { "Dither", DitherVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1705     { "Edge", EdgeVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1706     { "Gray", GrayVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1707     { "HorizontalTile", HorizontalTileVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1708     { "HorizontalTileEdge", HorizontalTileEdgeVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1709     { "Mirror", MirrorVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1710     { "None", TransparentVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1711     { "Random", RandomVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1712     { "Tile", TileVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1713     { "Transparent", TransparentVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1714     { "VerticalTile", VerticalTileVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1715     { "VerticalTileEdge", VerticalTileEdgeVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1716     { "White", WhiteVirtualPixelMethod, UndefinedOptionFlag, MagickFalse },
1717     { (char *) NULL, UndefinedVirtualPixelMethod, UndefinedOptionFlag, MagickFalse }
1718   };
1719 \f
1720 static const OptionInfo *GetOptionInfo(const CommandOption option)
1721 {
1722   switch (option)
1723   {
1724     case MagickAlignOptions: return(AlignOptions);
1725     case MagickAlphaChannelOptions: return(AlphaChannelOptions);
1726     case MagickBooleanOptions: return(BooleanOptions);
1727     case MagickCacheOptions: return(CacheOptions);
1728     case MagickChannelOptions: return(ChannelOptions);
1729     case MagickClassOptions: return(ClassOptions);
1730     case MagickClipPathOptions: return(ClipPathOptions);
1731     case MagickColorspaceOptions: return(ColorspaceOptions);
1732     case MagickCommandOptions: return(CommandOptions);
1733     case MagickComplexOptions: return(ComplexOptions);
1734     case MagickComposeOptions: return(ComposeOptions);
1735     case MagickCompressOptions: return(CompressOptions);
1736     case MagickDataTypeOptions: return(DataTypeOptions);
1737     case MagickDebugOptions: return(LogEventOptions);
1738     case MagickDecorateOptions: return(DecorateOptions);
1739     case MagickDirectionOptions: return(DirectionOptions);
1740     case MagickDisposeOptions: return(DisposeOptions);
1741     case MagickDistortOptions: return(DistortOptions);
1742     case MagickDitherOptions: return(DitherOptions);
1743     case MagickEndianOptions: return(EndianOptions);
1744     case MagickEvaluateOptions: return(EvaluateOptions);
1745     case MagickFillRuleOptions: return(FillRuleOptions);
1746     case MagickFilterOptions: return(FilterOptions);
1747     case MagickFunctionOptions: return(FunctionOptions);
1748     case MagickGravityOptions: return(GravityOptions);
1749 /*  case MagickImageListOptions: return(ImageListOptions); */
1750     case MagickIntentOptions: return(IntentOptions);
1751     case MagickInterlaceOptions: return(InterlaceOptions);
1752     case MagickInterpolateOptions: return(InterpolateOptions);
1753     case MagickKernelOptions: return(KernelOptions);
1754     case MagickLayerOptions: return(LayerOptions);
1755     case MagickLineCapOptions: return(LineCapOptions);
1756     case MagickLineJoinOptions: return(LineJoinOptions);
1757     case MagickListOptions: return(ListOptions);
1758     case MagickLogEventOptions: return(LogEventOptions);
1759     case MagickMetricOptions: return(MetricOptions);
1760     case MagickMethodOptions: return(MethodOptions);
1761     case MagickModeOptions: return(ModeOptions);
1762     case MagickMorphologyOptions: return(MorphologyOptions);
1763     case MagickNoiseOptions: return(NoiseOptions);
1764     case MagickOrientationOptions: return(OrientationOptions);
1765     case MagickPixelChannelOptions: return(PixelChannelOptions);
1766     case MagickPixelIntensityOptions: return(PixelIntensityOptions);
1767     case MagickPixelMaskOptions: return(PixelMaskOptions);
1768     case MagickPixelTraitOptions: return(PixelTraitOptions);
1769     case MagickPolicyDomainOptions: return(PolicyDomainOptions);
1770     case MagickPolicyRightsOptions: return(PolicyRightsOptions);
1771     case MagickPreviewOptions: return(PreviewOptions);
1772     case MagickPrimitiveOptions: return(PrimitiveOptions);
1773     case MagickQuantumFormatOptions: return(QuantumFormatOptions);
1774     case MagickResolutionOptions: return(ResolutionOptions);
1775     case MagickResourceOptions: return(ResourceOptions);
1776     case MagickSparseColorOptions: return(SparseColorOptions);
1777     case MagickStatisticOptions: return(StatisticOptions);
1778     case MagickStorageOptions: return(StorageOptions);
1779     case MagickStretchOptions: return(StretchOptions);
1780     case MagickStyleOptions: return(StyleOptions);
1781     case MagickTypeOptions: return(TypeOptions);
1782     case MagickValidateOptions: return(ValidateOptions);
1783     case MagickVirtualPixelOptions: return(VirtualPixelOptions);
1784     default: break;
1785   }
1786   return((const OptionInfo *) NULL);
1787 }
1788 \f
1789 /*
1790 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1791 %                                                                             %
1792 %                                                                             %
1793 %                                                                             %
1794 %   C l o n e I m a g e O p t i o n s                                         %
1795 %                                                                             %
1796 %                                                                             %
1797 %                                                                             %
1798 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1799 %
1800 %  CloneImageOptions() clones all global image options, to another image_info
1801 %
1802 %  The format of the CloneImageOptions method is:
1803 %
1804 %      MagickBooleanType CloneImageOptions(ImageInfo *image_info,
1805 %        const ImageInfo *clone_info)
1806 %
1807 %  A description of each parameter follows:
1808 %
1809 %    o image_info: the image info to recieve the cloned options.
1810 %
1811 %    o clone_info: the source image info for options to clone.
1812 %
1813 */
1814 MagickExport MagickBooleanType CloneImageOptions(ImageInfo *image_info,
1815   const ImageInfo *clone_info)
1816 {
1817   assert(image_info != (ImageInfo *) NULL);
1818   assert(image_info->signature == MagickSignature);
1819   if (image_info->debug != MagickFalse)
1820     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1821       image_info->filename);
1822   assert(clone_info != (const ImageInfo *) NULL);
1823   assert(clone_info->signature == MagickSignature);
1824   if (clone_info->options != (void *) NULL)
1825     {
1826       if (image_info->options != (void *) NULL)
1827         DestroyImageOptions(image_info);
1828       image_info->options=CloneSplayTree((SplayTreeInfo *) clone_info->options,
1829         (void *(*)(void *)) ConstantString,(void *(*)(void *)) ConstantString);
1830     }
1831   return(MagickTrue);
1832 }
1833 \f
1834 /*
1835 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1836 %                                                                             %
1837 %                                                                             %
1838 %                                                                             %
1839 %   D e f i n e I m a g e O p t i o n                                         %
1840 %                                                                             %
1841 %                                                                             %
1842 %                                                                             %
1843 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1844 %
1845 %  DefineImageOption() associates an assignment string of the form
1846 %  "key=value" with a global image option. It is equivelent to
1847 %  SetImageOption().
1848 %
1849 %  The format of the DefineImageOption method is:
1850 %
1851 %      MagickBooleanType DefineImageOption(ImageInfo *image_info,
1852 %        const char *option)
1853 %
1854 %  A description of each parameter follows:
1855 %
1856 %    o image_info: the image info.
1857 %
1858 %    o option: the image option assignment string.
1859 %
1860 */
1861 MagickExport MagickBooleanType DefineImageOption(ImageInfo *image_info,
1862   const char *option)
1863 {
1864   char
1865     key[MaxTextExtent],
1866     value[MaxTextExtent];
1867
1868   register char
1869     *p;
1870
1871   assert(image_info != (ImageInfo *) NULL);
1872   assert(option != (const char *) NULL);
1873   (void) CopyMagickString(key,option,MaxTextExtent);
1874   for (p=key; *p != '\0'; p++)
1875     if (*p == '=')
1876       break;
1877   *value='\0';
1878   if (*p == '=')
1879     (void) CopyMagickString(value,p+1,MaxTextExtent);
1880   *p='\0';
1881   return(SetImageOption(image_info,key,value));
1882 }
1883 \f
1884 /*
1885 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1886 %                                                                             %
1887 %                                                                             %
1888 %                                                                             %
1889 %   D e l e t e I m a g e O p t i o n                                         %
1890 %                                                                             %
1891 %                                                                             %
1892 %                                                                             %
1893 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1894 %
1895 %  DeleteImageOption() deletes an key from the global image options.
1896 %
1897 %  Returns MagickTrue is the option is found and deleted from the Options.
1898 %
1899 %  The format of the DeleteImageOption method is:
1900 %
1901 %      MagickBooleanType DeleteImageOption(ImageInfo *image_info,
1902 %        const char *key)
1903 %
1904 %  A description of each parameter follows:
1905 %
1906 %    o image_info: the image info.
1907 %
1908 %    o option: the image option.
1909 %
1910 */
1911 MagickExport MagickBooleanType DeleteImageOption(ImageInfo *image_info,
1912   const char *option)
1913 {
1914   assert(image_info != (ImageInfo *) NULL);
1915   assert(image_info->signature == MagickSignature);
1916   if (image_info->debug != MagickFalse)
1917     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1918       image_info->filename);
1919   if (image_info->options == (void *) NULL)
1920     return(MagickFalse);
1921   return(DeleteNodeFromSplayTree((SplayTreeInfo *) image_info->options,option));
1922 }
1923 \f
1924 /*
1925 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1926 %                                                                             %
1927 %                                                                             %
1928 %                                                                             %
1929 %   D e s t r o y I m a g e O p t i o n s                                     %
1930 %                                                                             %
1931 %                                                                             %
1932 %                                                                             %
1933 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1934 %
1935 %  DestroyImageOptions() destroys all global options and associated memory
1936 %  attached to the given image_info image list.
1937 %
1938 %  The format of the DestroyDefines method is:
1939 %
1940 %      void DestroyImageOptions(ImageInfo *image_info)
1941 %
1942 %  A description of each parameter follows:
1943 %
1944 %    o image_info: the image info.
1945 %
1946 */
1947 MagickExport void DestroyImageOptions(ImageInfo *image_info)
1948 {
1949   assert(image_info != (ImageInfo *) NULL);
1950   assert(image_info->signature == MagickSignature);
1951   if (image_info->debug != MagickFalse)
1952     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1953       image_info->filename);
1954   if (image_info->options != (void *) NULL)
1955     image_info->options=DestroySplayTree((SplayTreeInfo *) image_info->options);
1956 }
1957 \f
1958 /*
1959 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1960 %                                                                             %
1961 %                                                                             %
1962 %                                                                             %
1963 %   G e t I m a g e O p t i o n                                               %
1964 %                                                                             %
1965 %                                                                             %
1966 %                                                                             %
1967 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1968 %
1969 %  GetImageOption() gets a value associated with the global image options.
1970 %
1971 %  The returned string is a constant string in the tree and should NOT be
1972 %  freed by the caller.
1973 %
1974 %  The format of the GetImageOption method is:
1975 %
1976 %      const char *GetImageOption(const ImageInfo *image_info,
1977 %        const char *option)
1978 %
1979 %  A description of each parameter follows:
1980 %
1981 %    o image_info: the image info.
1982 %
1983 %    o option: the option.
1984 %
1985 */
1986 MagickExport const char *GetImageOption(const ImageInfo *image_info,
1987   const char *option)
1988 {
1989   assert(image_info != (ImageInfo *) NULL);
1990   assert(image_info->signature == MagickSignature);
1991   if (image_info->debug != MagickFalse)
1992     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1993       image_info->filename);
1994   if (image_info->options == (void *) NULL)
1995     return((const char *) NULL);
1996   return((const char *) GetValueFromSplayTree((SplayTreeInfo *)
1997     image_info->options,option));
1998 }
1999 \f
2000 /*
2001 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2002 %                                                                             %
2003 %                                                                             %
2004 %                                                                             %
2005 %   G e t C o m m a n d O p t i o n F l a g s                                 %
2006 %                                                                             %
2007 %                                                                             %
2008 %                                                                             %
2009 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2010 %
2011 %  GetCommandOptionFlags() parses a string and returns an enumerated option
2012 %  flags(s).  Return a value of -1 if no such option is found.
2013 %
2014 %  The format of the GetCommandOptionFlags method is:
2015 %
2016 %      ssize_t GetCommandOptionFlags(const CommandOption option,
2017 %        const MagickBooleanType list,const char *options)
2018 %
2019 %  A description of each parameter follows:
2020 %
2021 %    o option: Index to the option table to lookup
2022 %
2023 %    o list: A option other than zero permits more than one option separated by
2024 %      a comma or pipe.
2025 %
2026 %    o options: One or more options separated by commas.
2027 %
2028 */
2029
2030 MagickExport ssize_t GetCommandOptionFlags(const CommandOption option,
2031   const MagickBooleanType list,const char *options)
2032 {
2033   char
2034     token[MaxTextExtent];
2035
2036   const OptionInfo
2037     *option_info;
2038
2039   int
2040     sentinel;
2041
2042   MagickBooleanType
2043     negate;
2044
2045   register char
2046     *q;
2047
2048   register const char
2049     *p;
2050
2051   register ssize_t
2052     i;
2053
2054   ssize_t
2055     option_types;
2056
2057   option_info=GetOptionInfo(option);
2058   if (option_info == (const OptionInfo *) NULL)
2059     return(UndefinedOptionFlag);
2060   option_types=0;
2061   sentinel=',';
2062   if (strchr(options,'|') != (char *) NULL)
2063     sentinel='|';
2064   for (p=options; p != (char *) NULL; p=strchr(p,sentinel))
2065   {
2066     while (((isspace((int) ((unsigned char) *p)) != 0) || (*p == sentinel)) &&
2067            (*p != '\0'))
2068       p++;
2069     negate=(*p == '!') ? MagickTrue : MagickFalse;
2070     if (negate != MagickFalse)
2071       p++;
2072     q=token;
2073     while (((isspace((int) ((unsigned char) *p)) == 0) && (*p != sentinel)) &&
2074            (*p != '\0'))
2075     {
2076       if ((q-token) >= (MaxTextExtent-1))
2077         break;
2078       *q++=(*p++);
2079     }
2080     *q='\0';
2081     for (i=0; option_info[i].mnemonic != (char *) NULL; i++)
2082       if (LocaleCompare(token,option_info[i].mnemonic) == 0)
2083         {
2084           if (*token == '!')
2085             option_types=option_types &~ option_info[i].flags;
2086           else
2087             option_types=option_types | option_info[i].flags;
2088           break;
2089         }
2090     if ((option_info[i].mnemonic == (char *) NULL) &&
2091         ((strchr(token+1,'-') != (char *) NULL) ||
2092          (strchr(token+1,'_') != (char *) NULL)))
2093       {
2094         while ((q=strchr(token+1,'-')) != (char *) NULL)
2095           (void) CopyMagickString(q,q+1,MaxTextExtent-strlen(q));
2096         while ((q=strchr(token+1,'_')) != (char *) NULL)
2097           (void) CopyMagickString(q,q+1,MaxTextExtent-strlen(q));
2098         for (i=0; option_info[i].mnemonic != (char *) NULL; i++)
2099           if (LocaleCompare(token,option_info[i].mnemonic) == 0)
2100             {
2101               if (*token == '!')
2102                 option_types=option_types &~ option_info[i].flags;
2103               else
2104                 option_types=option_types | option_info[i].flags;
2105               break;
2106             }
2107       }
2108     if (option_info[i].mnemonic == (char *) NULL)
2109       return(-1);
2110     if (list == MagickFalse)
2111       break;
2112   }
2113   return(option_types);
2114 }
2115 \f
2116 /*
2117 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2118 %                                                                             %
2119 %                                                                             %
2120 %                                                                             %
2121 %   G e t C o m m a n d O p t i o n I n f o                                   %
2122 %                                                                             %
2123 %                                                                             %
2124 %                                                                             %
2125 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2126 %
2127 %  GetCommandOptionInfo() returns pointer to the matching OptionInfo entry
2128 %  for the "CommandOptions" table only. A specialised binary search is used,
2129 %  to speed up the lookup for that very large table, and returns both the
2130 %  type (arg count) and flags (arg type).
2131 %
2132 %  This search reduces linear search of over 500 options (250 tests on
2133 %  average) to about 10 lookups!
2134 %
2135 %  The format of the GetCommandOptionInfo method is:
2136 %
2137 %      const char **GetCommandOptions(const CommandOption value)
2138 %
2139 %  A description of each parameter follows:
2140 %
2141 %    o value: the value.
2142 %
2143 */
2144 MagickExport const OptionInfo *GetCommandOptionInfo(const char *value)
2145 {
2146   const OptionInfo
2147     *option_info=CommandOptions;
2148
2149   static ssize_t
2150     table_size = 0;
2151
2152   register int
2153     i,l,h;
2154
2155   assert(value != (char *) NULL);
2156   assert(*value != '\0');
2157
2158   /* count up table items - first time only */
2159   if ( table_size == 0 )
2160     {
2161       l=-1;
2162       for (i=0; option_info[i].mnemonic != (const char *) NULL; i++)
2163         if ( LocaleCompare(value,option_info[i].mnemonic) == 0 )
2164           l=i;
2165       table_size = i;
2166       return( &option_info[(l>=0)?l:i] );
2167     }
2168
2169   /* faster binary search of command table, now that its length is known */
2170   l=0;
2171   h=table_size;
2172   while ( l < h )
2173   {
2174     int cmp;
2175     i = (l+h)/2; /* half the bounds */
2176     /* compare string part, then switch character! */
2177     cmp=LocaleCompare(value+1,option_info[i].mnemonic+1);
2178     if ( cmp == 0 )
2179       cmp = *value - *(option_info[i].mnemonic);
2180 #if 0
2181     (void) FormatLocaleFile(stderr,
2182       "%d --- %u < %u < %u --- \"%s\" < \"%s\" < \"%s\"\n",
2183       cmp,l,i,h,option_info[l].mnemonic,option_info[i].mnemonic,
2184       option_info[h].mnemonic);
2185 #endif
2186     if (cmp == 0)
2187       return(&option_info[i]);
2188     if (cmp > 0) l=i+1; else h=i;  /* reassign search bounds */
2189   }
2190   /* option was not found in table - return last 'null' entry. */
2191   return(&option_info[table_size]);
2192 }
2193 \f
2194 /*
2195 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2196 %                                                                             %
2197 %                                                                             %
2198 %                                                                             %
2199 %   G e t C o m m a n d O p t i o n s                                         %
2200 %                                                                             %
2201 %                                                                             %
2202 %                                                                             %
2203 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2204 %
2205 %  GetCommandOptions() returns a list of values.
2206 %
2207 %  The format of the GetCommandOptions method is:
2208 %
2209 %      const char **GetCommandOptions(const CommandOption value)
2210 %
2211 %  A description of each parameter follows:
2212 %
2213 %    o value: the value.
2214 %
2215 */
2216 MagickExport char **GetCommandOptions(const CommandOption value)
2217 {
2218   char
2219     **values;
2220
2221   const OptionInfo
2222     *option_info;
2223
2224   register ssize_t
2225     i;
2226
2227   option_info=GetOptionInfo(value);
2228   if (option_info == (const OptionInfo *) NULL)
2229     return((char **) NULL);
2230   for (i=0; option_info[i].mnemonic != (const char *) NULL; i++) ;
2231   values=(char **) AcquireQuantumMemory((size_t) i+1UL,sizeof(*values));
2232   if (values == (char **) NULL)
2233     ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
2234   for (i=0; option_info[i].mnemonic != (const char *) NULL; i++)
2235     values[i]=AcquireString(option_info[i].mnemonic);
2236   values[i]=(char *) NULL;
2237   return(values);
2238 }
2239 \f
2240 /*
2241 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2242 %                                                                             %
2243 %                                                                             %
2244 %                                                                             %
2245 %   G e t N e x t I m a g e O p t i o n                                       %
2246 %                                                                             %
2247 %                                                                             %
2248 %                                                                             %
2249 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2250 %
2251 %  GetNextImageOption() gets the next global option value.
2252 %
2253 %  The format of the GetNextImageOption method is:
2254 %
2255 %      char *GetNextImageOption(const ImageInfo *image_info)
2256 %
2257 %  A description of each parameter follows:
2258 %
2259 %    o image_info: the image info.
2260 %
2261 */
2262 MagickExport char *GetNextImageOption(const ImageInfo *image_info)
2263 {
2264   assert(image_info != (ImageInfo *) NULL);
2265   assert(image_info->signature == MagickSignature);
2266   if (image_info->debug != MagickFalse)
2267     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
2268       image_info->filename);
2269   if (image_info->options == (void *) NULL)
2270     return((char *) NULL);
2271   return((char *) GetNextKeyInSplayTree((SplayTreeInfo *) image_info->options));
2272 }
2273 \f
2274 /*
2275 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2276 %                                                                             %
2277 %                                                                             %
2278 %                                                                             %
2279 %     I s C o m m a n d O p t i o n                                           %
2280 %                                                                             %
2281 %                                                                             %
2282 %                                                                             %
2283 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2284 %
2285 %  IsCommandOption() returns MagickTrue if the option begins with a - or + and
2286 %  the first character that follows is alphanumeric.
2287 %
2288 %  The format of the IsCommandOption method is:
2289 %
2290 %      MagickBooleanType IsCommandOption(const char *option)
2291 %
2292 %  A description of each parameter follows:
2293 %
2294 %    o option: the option.
2295 %
2296 */
2297 MagickExport MagickBooleanType IsCommandOption(const char *option)
2298 {
2299   assert(option != (const char *) NULL);
2300   if ((*option != '-') && (*option != '+'))
2301     return(MagickFalse);
2302   if (strlen(option) == 1)
2303     return(IsMagickTrue( (*option == '{') || (*option == '}')
2304                       || (*option == '[') || (*option == ']') ));
2305   option++;
2306   if (*option == '-')
2307     return(MagickTrue);
2308   if (isalpha((int) ((unsigned char) *option)) == 0)
2309     return(MagickFalse);
2310   return(MagickTrue);
2311 }
2312 \f
2313 /*
2314 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2315 %                                                                             %
2316 %                                                                             %
2317 %                                                                             %
2318 %   C o m m a n d O p t i o n T o M n e m o n i c                             %
2319 %                                                                             %
2320 %                                                                             %
2321 %                                                                             %
2322 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2323 %
2324 %  CommandOptionToMnemonic() returns an enumerated value as a mnemonic.
2325 %
2326 %  The format of the CommandOptionToMnemonic method is:
2327 %
2328 %      const char *CommandOptionToMnemonic(const CommandOption option,
2329 %        const ssize_t type)
2330 %
2331 %  A description of each parameter follows:
2332 %
2333 %    o option: the option.
2334 %
2335 %    o type: one or more values separated by commas.
2336 %
2337 */
2338 MagickExport const char *CommandOptionToMnemonic(const CommandOption option,
2339   const ssize_t type)
2340 {
2341   const OptionInfo
2342     *option_info;
2343
2344   register ssize_t
2345     i;
2346
2347   option_info=GetOptionInfo(option);
2348   if (option_info == (const OptionInfo *) NULL)
2349     return((const char *) NULL);
2350   for (i=0; option_info[i].mnemonic != (const char *) NULL; i++)
2351     if (type == option_info[i].type)
2352       break;
2353   if (option_info[i].mnemonic == (const char *) NULL)
2354     return("undefined");
2355   return(option_info[i].mnemonic);
2356 }
2357 \f
2358 /*
2359 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2360 %                                                                             %
2361 %                                                                             %
2362 %                                                                             %
2363 %   L i s t C o m m a n d O p t i o n s                                       %
2364 %                                                                             %
2365 %                                                                             %
2366 %                                                                             %
2367 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2368 %
2369 %  ListCommandOptions() lists the contents of enumerated option type(s).
2370 %
2371 %  The format of the ListCommandOptions method is:
2372 %
2373 %      MagickBooleanType ListCommandOptions(FILE *file,
2374 %        const CommandOption option,ExceptionInfo *exception)
2375 %
2376 %  A description of each parameter follows:
2377 %
2378 %    o file:  list options to this file handle.
2379 %
2380 %    o option:  list these options.
2381 %
2382 %    o exception:  return any errors or warnings in this structure.
2383 %
2384 */
2385 MagickExport MagickBooleanType ListCommandOptions(FILE *file,
2386   const CommandOption option,ExceptionInfo *magick_unused(exception))
2387 {
2388   const OptionInfo
2389     *option_info;
2390
2391   register ssize_t
2392     i;
2393
2394   if (file == (FILE *) NULL)
2395     file=stdout;
2396   option_info=GetOptionInfo(option);
2397   if (option_info == (const OptionInfo *) NULL)
2398     return(MagickFalse);
2399   for (i=0; option_info[i].mnemonic != (char *) NULL; i++)
2400   {
2401     if (option_info[i].stealth != MagickFalse)
2402       continue;
2403     (void) FormatLocaleFile(file,"%s\n",option_info[i].mnemonic);
2404   }
2405   return(MagickTrue);
2406 }
2407 \f
2408 /*
2409 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2410 %                                                                             %
2411 %                                                                             %
2412 %                                                                             %
2413 %   P a r s e C h a n n e l O p t i o n                                       %
2414 %                                                                             %
2415 %                                                                             %
2416 %                                                                             %
2417 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2418 %
2419 %  ParseChannelOption() parses a string and returns an enumerated channel
2420 %  type(s).
2421 %
2422 %  The format of the ParseChannelOption method is:
2423 %
2424 %      ssize_t ParseChannelOption(const char *channels)
2425 %
2426 %  A description of each parameter follows:
2427 %
2428 %    o options: One or more values separated by commas.
2429 %
2430 */
2431 MagickExport ssize_t ParseChannelOption(const char *channels)
2432 {
2433   register ssize_t
2434     i;
2435
2436   ssize_t
2437     channel;
2438
2439   channel=ParseCommandOption(MagickChannelOptions,MagickTrue,channels);
2440   if (channel >= 0)
2441     return(channel);
2442   channel=0;
2443   for (i=0; i < (ssize_t) strlen(channels); i++)
2444   {
2445     switch (channels[i])
2446     {
2447       case 'A':
2448       case 'a':
2449       {
2450         channel|=AlphaChannel;
2451         break;
2452       }
2453       case 'B':
2454       case 'b':
2455       {
2456         channel|=BlueChannel;
2457         break;
2458       }
2459       case 'C':
2460       case 'c':
2461       {
2462         channel|=CyanChannel;
2463         break;
2464       }
2465       case 'g':
2466       case 'G':
2467       {
2468         channel|=GreenChannel;
2469         break;
2470       }
2471       case 'K':
2472       case 'k':
2473       {
2474         channel|=BlackChannel;
2475         break;
2476       }
2477       case 'M':
2478       case 'm':
2479       {
2480         channel|=MagentaChannel;
2481         break;
2482       }
2483       case 'o':
2484       case 'O':
2485       {
2486         channel|=AlphaChannel; /* depreciate */
2487         break;
2488       }
2489       case 'R':
2490       case 'r':
2491       {
2492         channel|=RedChannel;
2493         break;
2494       }
2495       case 'Y':
2496       case 'y':
2497       {
2498         channel|=YellowChannel;
2499         break;
2500       }
2501       case ',':
2502       {
2503         ssize_t
2504           type;
2505
2506         /*
2507           Gather the additional channel flags and merge with shorthand.
2508         */
2509         type=ParseCommandOption(MagickChannelOptions,MagickTrue,channels+i+1);
2510         if (type < 0)
2511           return(type);
2512         channel|=type;
2513         return(channel);
2514       }
2515       default:
2516         return(-1);
2517     }
2518   }
2519   return(channel);
2520 }
2521 \f
2522 /*
2523 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2524 %                                                                             %
2525 %                                                                             %
2526 %                                                                             %
2527 %   P a r s e C o m m a n d O p t i o n                                       %
2528 %                                                                             %
2529 %                                                                             %
2530 %                                                                             %
2531 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2532 %
2533 %  ParseCommandOption() parses a string and returns an enumerated option
2534 %  type(s).  Return a value of -1 if no such option is found.
2535 %
2536 %  The format of the ParseCommandOption method is:
2537 %
2538 %      ssize_t ParseCommandOption(const CommandOption option_table,
2539 %        const MagickBooleanType list,const char *options)
2540 %
2541 %  A description of each parameter follows:
2542 %
2543 %    o option_table: Index to the option table to lookup
2544 %
2545 %    o list: A option other than zero permits more than one option separated by
2546 %      a comma or pipe.
2547 %
2548 %    o options: One or more options separated by commas.
2549 %
2550 */
2551 MagickExport ssize_t ParseCommandOption(const CommandOption option_table,
2552   const MagickBooleanType list,const char *options)
2553 {
2554   char
2555     token[MaxTextExtent];
2556
2557   const OptionInfo
2558     *option_info;
2559
2560   int
2561     sentinel;
2562
2563   MagickBooleanType
2564     negate;
2565
2566   register char
2567     *q;
2568
2569   register const char
2570     *p;
2571
2572   register ssize_t
2573     i;
2574
2575   ssize_t
2576     option_types;
2577
2578   option_info=GetOptionInfo(option_table);
2579   if (option_info == (const OptionInfo *) NULL)
2580     return(-1);
2581   option_types=0;
2582   sentinel=',';
2583   if (strchr(options,'|') != (char *) NULL)
2584     sentinel='|';
2585   for (p=options; p != (char *) NULL; p=strchr(p,sentinel))
2586   {
2587     while (((isspace((int) ((unsigned char) *p)) != 0) || (*p == sentinel)) &&
2588            (*p != '\0'))
2589       p++;
2590     negate=(*p == '!') ? MagickTrue : MagickFalse;
2591     if (negate != MagickFalse)
2592       p++;
2593     q=token;
2594     while (((isspace((int) ((unsigned char) *p)) == 0) && (*p != sentinel)) &&
2595            (*p != '\0'))
2596     {
2597       if ((q-token) >= (MaxTextExtent-1))
2598         break;
2599       *q++=(*p++);
2600     }
2601     *q='\0';
2602     for (i=0; option_info[i].mnemonic != (char *) NULL; i++)
2603       if (LocaleCompare(token,option_info[i].mnemonic) == 0)
2604         {
2605           if (*token == '!')
2606             option_types=option_types &~ option_info[i].type;
2607           else
2608             option_types=option_types | option_info[i].type;
2609           break;
2610         }
2611     if ((option_info[i].mnemonic == (char *) NULL) &&
2612         ((strchr(token+1,'-') != (char *) NULL) ||
2613          (strchr(token+1,'_') != (char *) NULL)))
2614       {
2615         while ((q=strchr(token+1,'-')) != (char *) NULL)
2616           (void) CopyMagickString(q,q+1,MaxTextExtent-strlen(q));
2617         while ((q=strchr(token+1,'_')) != (char *) NULL)
2618           (void) CopyMagickString(q,q+1,MaxTextExtent-strlen(q));
2619         for (i=0; option_info[i].mnemonic != (char *) NULL; i++)
2620           if (LocaleCompare(token,option_info[i].mnemonic) == 0)
2621             {
2622               if (*token == '!')
2623                 option_types=option_types &~ option_info[i].type;
2624               else
2625                 option_types=option_types | option_info[i].type;
2626               break;
2627             }
2628       }
2629     if (option_info[i].mnemonic == (char *) NULL)
2630       return(-1);
2631     if (list == MagickFalse)
2632       break;
2633   }
2634   return(option_types);
2635 }
2636 \f
2637 /*
2638 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2639 %                                                                             %
2640 %                                                                             %
2641 %                                                                             %
2642 %   P a r s e P i x e l C h a n n e l O p t i o n                             %
2643 %                                                                             %
2644 %                                                                             %
2645 %                                                                             %
2646 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2647 %
2648 %  ParsePixelChannelOption() parses a string and returns an enumerated pixel
2649 %  channel type(s).
2650 %
2651 %  The format of the ParsePixelChannelOption method is:
2652 %
2653 %      ssize_t ParsePixelChannelOption(const char *channels)
2654 %
2655 %  A description of each parameter follows:
2656 %
2657 %    o channels: One or more channels separated by commas.
2658 %
2659 */
2660 MagickExport ssize_t ParsePixelChannelOption(const char *channels)
2661 {
2662   char
2663     *q,
2664     token[MaxTextExtent];
2665
2666   ssize_t
2667     channel;
2668
2669   GetMagickToken(channels,NULL,token);
2670   if ((*token == ';') || (*token == '|'))
2671     return(RedPixelChannel);
2672   channel=ParseCommandOption(MagickPixelChannelOptions,MagickTrue,token);
2673   if (channel >= 0)
2674     return(channel);
2675   q=(char *) token;
2676   channel=InterpretLocaleValue(token,&q);
2677   if ((q == token) || (channel < 0) || (channel >= MaxPixelChannels))
2678     return(-1);
2679   return(channel);
2680 }
2681 \f
2682 /*
2683 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2684 %                                                                             %
2685 %                                                                             %
2686 %                                                                             %
2687 %   R e m o v e I m a g e O p t i o n                                         %
2688 %                                                                             %
2689 %                                                                             %
2690 %                                                                             %
2691 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2692 %
2693 %  RemoveImageOption() removes an option from the image and returns its value.
2694 %
2695 %  In this case the ConstantString() value returned should be freed by the
2696 %  caller when finished.
2697 %
2698 %  The format of the RemoveImageOption method is:
2699 %
2700 %      char *RemoveImageOption(ImageInfo *image_info,const char *option)
2701 %
2702 %  A description of each parameter follows:
2703 %
2704 %    o image_info: the image info.
2705 %
2706 %    o option: the image option.
2707 %
2708 */
2709 MagickExport char *RemoveImageOption(ImageInfo *image_info,const char *option)
2710 {
2711   char
2712     *value;
2713
2714   assert(image_info != (ImageInfo *) NULL);
2715   assert(image_info->signature == MagickSignature);
2716   if (image_info->debug != MagickFalse)
2717     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
2718       image_info->filename);
2719   if (image_info->options == (void *) NULL)
2720     return((char *) NULL);
2721   value=(char *) RemoveNodeFromSplayTree((SplayTreeInfo *)
2722     image_info->options,option);
2723   return(value);
2724 }
2725 \f
2726 /*
2727 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2728 %                                                                             %
2729 %                                                                             %
2730 %                                                                             %
2731 %   R e s e t I m a g e O p t i o n                                           %
2732 %                                                                             %
2733 %                                                                             %
2734 %                                                                             %
2735 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2736 %
2737 %  ResetImageOptions() resets the image_info option.  That is, it deletes
2738 %  all global options associated with the image_info structure.
2739 %
2740 %  The format of the ResetImageOptions method is:
2741 %
2742 %      ResetImageOptions(ImageInfo *image_info)
2743 %
2744 %  A description of each parameter follows:
2745 %
2746 %    o image_info: the image info.
2747 %
2748 */
2749 MagickExport void ResetImageOptions(const ImageInfo *image_info)
2750 {
2751   assert(image_info != (ImageInfo *) NULL);
2752   assert(image_info->signature == MagickSignature);
2753   if (image_info->debug != MagickFalse)
2754     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
2755       image_info->filename);
2756   if (image_info->options == (void *) NULL)
2757     return;
2758   ResetSplayTree((SplayTreeInfo *) image_info->options);
2759 }
2760 \f
2761 /*
2762 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2763 %                                                                             %
2764 %                                                                             %
2765 %                                                                             %
2766 %   R e s e t I m a g e O p t i o n I t e r a t o r                           %
2767 %                                                                             %
2768 %                                                                             %
2769 %                                                                             %
2770 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2771 %
2772 %  ResetImageOptionIterator() resets the image_info values iterator.  Use it
2773 %  in conjunction with GetNextImageOption() to iterate over all the values
2774 %  associated with an image option.
2775 %
2776 %  The format of the ResetImageOptionIterator method is:
2777 %
2778 %      ResetImageOptionIterator(ImageInfo *image_info)
2779 %
2780 %  A description of each parameter follows:
2781 %
2782 %    o image_info: the image info.
2783 %
2784 */
2785 MagickExport void ResetImageOptionIterator(const ImageInfo *image_info)
2786 {
2787   assert(image_info != (ImageInfo *) NULL);
2788   assert(image_info->signature == MagickSignature);
2789   if (image_info->debug != MagickFalse)
2790     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
2791       image_info->filename);
2792   if (image_info->options == (void *) NULL)
2793     return;
2794   ResetSplayTreeIterator((SplayTreeInfo *) image_info->options);
2795 }
2796 \f
2797 /*
2798 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2799 %                                                                             %
2800 %                                                                             %
2801 %                                                                             %
2802 %   S e t I m a g e O p t i o n                                               %
2803 %                                                                             %
2804 %                                                                             %
2805 %                                                                             %
2806 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2807 %
2808 %  SetImageOption() associates an value with an image option.
2809 %
2810 %  The format of the SetImageOption method is:
2811 %
2812 %      MagickBooleanType SetImageOption(ImageInfo *image_info,
2813 %        const char *option,const char *value)
2814 %
2815 %  A description of each parameter follows:
2816 %
2817 %    o image_info: the image info.
2818 %
2819 %    o option: the image option.
2820 %
2821 %    o values: the image option values.
2822 %
2823 */
2824 MagickExport MagickBooleanType SetImageOption(ImageInfo *image_info,
2825   const char *option,const char *value)
2826 {
2827   assert(image_info != (ImageInfo *) NULL);
2828   assert(image_info->signature == MagickSignature);
2829   if (image_info->debug != MagickFalse)
2830     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
2831       image_info->filename);
2832   /*
2833     Specific global option settings.
2834   */
2835   if (LocaleCompare(option,"size") == 0) {
2836     (void) CloneString(&image_info->size,value);
2837     return(MagickTrue);
2838   }
2839   /*
2840     Create tree if needed - specify how key,values are to be freed.
2841   */
2842   if (image_info->options == (void *) NULL)
2843     image_info->options=NewSplayTree(CompareSplayTreeString,
2844       RelinquishMagickMemory,RelinquishMagickMemory);
2845   /*
2846     Delete Option if NULL --  empty string values are valid!
2847   */
2848   if (value == (const char *) NULL)
2849     return(DeleteImageOption(image_info,option));
2850   /*
2851     Add option to splay-tree.
2852   */
2853   return(AddValueToSplayTree((SplayTreeInfo *) image_info->options,
2854     ConstantString(option),ConstantString(value)));
2855 }