]> granicus.if.org Git - imagemagick/blob - MagickWand/animate.c
...
[imagemagick] / MagickWand / animate.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %                AAA   N   N  IIIII  M   M   AAA   TTTTT  EEEEE               %
7 %               A   A  NN  N    I    MM MM  A   A    T    E                   %
8 %               AAAAA  N N N    I    M M M  AAAAA    T    EEE                 %
9 %               A   A  N  NN    I    M   M  A   A    T    E                   %
10 %               A   A  N   N  IIIII  M   M  A   A    T    EEEEE               %
11 %                                                                             %
12 %                                                                             %
13 %              Methods to Interactively Animate an Image Sequence             %
14 %                                                                             %
15 %                             Software Design                                 %
16 %                                  Cristy                                     %
17 %                                July 1992                                    %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2017 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 %  Use the animate program to animate an image sequence on any X server.
37 %
38 */
39 \f
40 /*
41   Include declarations.
42 */
43 #include "MagickWand/studio.h"
44 #include "MagickWand/MagickWand.h"
45 #include "MagickWand/mogrify-private.h"
46 #include "MagickCore/animate-private.h"
47 #include "MagickCore/string-private.h"
48 \f
49 /*
50 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51 %                                                                             %
52 %                                                                             %
53 %                                                                             %
54 +   A n i m a t e I m a g e C o m m a n d                                     %
55 %                                                                             %
56 %                                                                             %
57 %                                                                             %
58 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
59 %
60 %  AnimateImageCommand() displays a sequence of images on any workstation
61 %  display running an X server. Animate first determines the hardware
62 %  capabilities of the workstation. If the number of unique colors in an image
63 %  is less than or equal to the number the workstation can support, the image
64 %  is displayed in an X window. Otherwise the number of colors in the image is
65 %  first reduced to match the color resolution of the workstation before it is
66 %  displayed.
67 %
68 %  This means that a continuous-tone 24 bits/pixel image can display on a 8
69 %  bit pseudo-color device or monochrome device. In most instances the reduced
70 %  color image closely resembles the original. Alternatively, a monochrome or
71 %  pseudo-color image sequence can display on a continuous-tone 24 bits/pixels
72 %  device.
73 %
74 %  The format of the AnimateImageCommand method is:
75 %
76 %      MagickBooleanType AnimateImageCommand(ImageInfo *image_info,int argc,
77 %        char **argv,char **metadata,ExceptionInfo *exception)
78 %
79 %  A description of each parameter follows:
80 %
81 %    o image_info: the image info.
82 %
83 %    o argc: the number of elements in the argument vector.
84 %
85 %    o argv: A text array containing the command line arguments.
86 %
87 %    o metadata: any metadata is returned here.
88 %
89 %    o exception: return any errors or warnings in this structure.
90 %
91 */
92
93 static MagickBooleanType AnimateUsage(void)
94 {
95   const char
96     **p;
97
98   static const char
99     *buttons[]=
100     {
101       "Press any button to map or unmap the Command widget",
102       (char *) NULL
103     },
104     *miscellaneous[]=
105     {
106       "-debug events        display copious debugging information",
107       "-help                print program options",
108       "-list type           print a list of supported option arguments",
109       "-log format          format of debugging information",
110       "-version             print version information",
111       (char *) NULL
112     },
113     *operators[]=
114     {
115       "-channel mask        set the image channel mask",
116       "-colors value        preferred number of colors in the image",
117       "-crop geometry       preferred size and location of the cropped image",
118       "-extract geometry    extract area from image",
119       "-monochrome          transform image to black and white",
120       "-repage geometry     size and location of an image canvas (operator)",
121       "-resample geometry   change the resolution of an image",
122       "-resize geometry     resize the image",
123       "-rotate degrees      apply Paeth rotation to the image",
124       "-strip               strip image of all profiles and comments",
125       "-thumbnail geometry  create a thumbnail of the image",
126       "-trim                trim image edges",
127       (char *) NULL
128     },
129     *settings[]=
130     {
131       "-alpha option        on, activate, off, deactivate, set, opaque, copy",
132       "                     transparent, extract, background, or shape",
133       "-authenticate password",
134       "                     decipher image with this password",
135       "-backdrop            display image centered on a backdrop",
136       "-colormap type       Shared or Private",
137       "-colorspace type     alternate image colorspace",
138       "-decipher filename   convert cipher pixels to plain pixels",
139       "-define format:option",
140       "                     define one or more image format options",
141       "-delay value         display the next image after pausing",
142       "-density geometry    horizontal and vertical density of the image",
143       "-depth value         image depth",
144       "-display server      display image to this X server",
145       "-dispose method      layer disposal method",
146       "-dither method       apply error diffusion to image",
147       "-filter type         use this filter when resizing an image",
148       "-format \"string\"     output formatted image characteristics",
149       "-gamma value         level of gamma correction",
150       "-geometry geometry   preferred size and location of the Image window",
151       "-gravity type        horizontal and vertical backdrop placement",
152       "-identify            identify the format and characteristics of the image",
153       "-immutable           displayed image cannot be modified",
154       "-interlace type      type of image interlacing scheme",
155       "-interpolate method  pixel color interpolation method",
156       "-limit type value    pixel cache resource limit",
157       "-loop iterations     loop images then exit",
158       "-matte               store matte channel if the image has one",
159       "-map type            display image using this Standard Colormap",
160       "-monitor             monitor progress",
161       "-pause               seconds to pause before reanimating",
162       "-page geometry       size and location of an image canvas (setting)",
163       "-quantize colorspace reduce colors in this colorspace",
164       "-quiet               suppress all warning messages",
165       "-regard-warnings     pay attention to warning messages",
166       "-remote command      execute a command in an remote display process",
167       "-respect-parentheses settings remain in effect until parenthesis boundary",
168       "-sampling-factor geometry",
169       "                     horizontal and vertical sampling factor",
170       "-scenes range        image scene range",
171       "-seed value          seed a new sequence of pseudo-random numbers",
172       "-set attribute value set an image attribute",
173       "-size geometry       width and height of image",
174       "-support factor      resize support: > 1.0 is blurry, < 1.0 is sharp",
175       "-transparent-color color",
176       "                     transparent color",
177       "-treedepth value     color tree depth",
178       "-verbose             print detailed information about the image",
179       "-visual type         display image using this visual type",
180       "-virtual-pixel method",
181       "                     virtual pixel access method",
182       "-window id           display image to background of this window",
183       (char *) NULL
184     },
185     *sequence_operators[]=
186     {
187       "-coalesce            merge a sequence of images",
188       "-flatten             flatten a sequence of images",
189       (char *) NULL
190     };
191
192   ListMagickVersion(stdout);
193   (void) printf("Usage: %s [options ...] file [ [options ...] file ...]\n",
194     GetClientName());
195   (void) printf("\nImage Settings:\n");
196   for (p=settings; *p != (char *) NULL; p++)
197     (void) printf("  %s\n",*p);
198   (void) printf("\nImage Operators:\n");
199   for (p=operators; *p != (char *) NULL; p++)
200     (void) printf("  %s\n",*p);
201   (void) printf("\nImage Sequence Operators:\n");
202   for (p=sequence_operators; *p != (char *) NULL; p++)
203     (void) printf("  %s\n",*p);
204   (void) printf("\nMiscellaneous Options:\n");
205   for (p=miscellaneous; *p != (char *) NULL; p++)
206     (void) printf("  %s\n",*p);
207   (void) printf(
208     "\nIn addition to those listed above, you can specify these standard X\n");
209   (void) printf(
210     "resources as command line options:  -background, -bordercolor,\n");
211   (void) printf(
212     "-alpha-color, -borderwidth, -font, -foreground, -iconGeometry,\n");
213   (void) printf("-iconic, -name, -shared-memory, or -title.\n");
214   (void) printf(
215     "\nBy default, the image format of 'file' is determined by its magic\n");
216   (void) printf(
217     "number.  To specify a particular image format, precede the filename\n");
218   (void) printf(
219     "with an image format name and a colon (i.e. ps:image) or specify the\n");
220   (void) printf(
221     "image type as the filename suffix (i.e. image.ps).  Specify 'file' as\n");
222   (void) printf("'-' for standard input or output.\n");
223   (void) printf("\nButtons: \n");
224   for (p=buttons; *p != (char *) NULL; p++)
225     (void) printf("  %s\n",*p);
226   return(MagickFalse);
227 }
228
229 WandExport MagickBooleanType AnimateImageCommand(ImageInfo *image_info,
230   int argc,char **argv,char **wand_unused(metadata),ExceptionInfo *exception)
231 {
232 #if defined(MAGICKCORE_X11_DELEGATE)
233 #define DestroyAnimate() \
234 { \
235   XDestroyResourceInfo(&resource_info); \
236   if (display != (Display *) NULL) \
237     { \
238       XCloseDisplay(display); \
239       display=(Display *) NULL; \
240     } \
241   XDestroyResourceInfo(&resource_info); \
242   DestroyImageStack(); \
243   for (i=0; i < (ssize_t) argc; i++) \
244     argv[i]=DestroyString(argv[i]); \
245   argv=(char **) RelinquishMagickMemory(argv); \
246 }
247 #define ThrowAnimateException(asperity,tag,option) \
248 { \
249   (void) ThrowMagickException(exception,GetMagickModule(),asperity,tag,"`%s'", \
250     option); \
251   DestroyAnimate(); \
252   return(MagickFalse); \
253 }
254 #define ThrowAnimateInvalidArgumentException(option,argument) \
255 { \
256   (void) ThrowMagickException(exception,GetMagickModule(),OptionError, \
257     "InvalidArgument","'%s': %s",option,argument); \
258   DestroyAnimate(); \
259   return(MagickFalse); \
260 }
261
262   char
263     *resource_value,
264     *server_name;
265
266   const char
267     *option;
268
269   Display
270     *display;
271
272   Image
273     *image;
274
275   ImageStack
276     image_stack[MaxImageStackDepth+1];
277
278   MagickBooleanType
279     fire,
280     pend,
281     respect_parenthesis;
282
283   MagickStatusType
284     status;
285
286   QuantizeInfo
287     *quantize_info;
288
289   register ssize_t
290     i;
291
292   ssize_t
293     j,
294     k;
295
296   XResourceInfo
297     resource_info;
298
299   XrmDatabase
300     resource_database;
301
302   /*
303     Set defaults.
304   */
305   assert(image_info != (ImageInfo *) NULL);
306   assert(image_info->signature == MagickCoreSignature);
307   if (image_info->debug != MagickFalse)
308     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
309   assert(exception != (ExceptionInfo *) NULL);
310   if (argc == 2)
311     {
312       option=argv[1];
313       if ((LocaleCompare("version",option+1) == 0) ||
314           (LocaleCompare("-version",option+1) == 0))
315         {
316           ListMagickVersion(stdout);
317           return(MagickTrue);
318         }
319     }
320   status=MagickTrue;
321   SetNotifyHandlers;
322   display=(Display *) NULL;
323   j=1;
324   k=0;
325   NewImageStack();
326   option=(char *) NULL;
327   pend=MagickFalse;
328   respect_parenthesis=MagickFalse;
329   resource_database=(XrmDatabase) NULL;
330   (void) ResetMagickMemory(&resource_info,0,sizeof(XResourceInfo));
331   server_name=(char *) NULL;
332   status=MagickTrue;
333   /*
334     Check for server name specified on the command line.
335   */
336   ReadCommandlLine(argc,&argv);
337   status=ExpandFilenames(&argc,&argv);
338   if (status == MagickFalse)
339     ThrowAnimateException(ResourceLimitError,"MemoryAllocationFailed",
340       image_info->filename);
341   for (i=1; i < (ssize_t) argc; i++)
342   {
343     /*
344       Check command line for server name.
345     */
346     option=argv[i];
347     if (LocaleCompare("display",option+1) == 0)
348       {
349         /*
350           User specified server name.
351         */
352         i++;
353         if (i == (ssize_t) argc)
354           ThrowAnimateException(OptionError,"MissingArgument",option);
355         server_name=argv[i];
356       }
357     if ((LocaleCompare("help",option+1) == 0) ||
358         (LocaleCompare("-help",option+1) == 0))
359       return(AnimateUsage());
360   }
361   /*
362     Get user defaults from X resource database.
363   */
364   display=XOpenDisplay(server_name);
365   if (display == (Display *) NULL)
366     ThrowAnimateException(XServerError,"UnableToOpenXServer",
367       XDisplayName(server_name));
368   (void) XSetErrorHandler(XError);
369   resource_database=XGetResourceDatabase(display,GetClientName());
370   XGetResourceInfo(image_info,resource_database,GetClientName(),
371     &resource_info);
372   quantize_info=resource_info.quantize_info;
373   image_info->density=XGetResourceInstance(resource_database,GetClientName(),
374     "density",(char *) NULL);
375   if (image_info->density == (char *) NULL)
376     image_info->density=XGetScreenDensity(display);
377   resource_value=XGetResourceInstance(resource_database,GetClientName(),
378     "interlace","none");
379   image_info->interlace=(InterlaceType)
380     ParseCommandOption(MagickInterlaceOptions,MagickFalse,resource_value);
381   resource_value=XGetResourceInstance(resource_database,GetClientName(),
382     "verbose","False");
383   image_info->verbose=IsStringTrue(resource_value);
384   resource_value=XGetResourceInstance(resource_database,GetClientName(),
385     "dither","True");
386   quantize_info->dither_method=IsStringTrue(resource_value) != MagickFalse ?
387     RiemersmaDitherMethod : NoDitherMethod;
388   /*
389     Parse command line.
390   */
391   for (i=1; i <= (ssize_t) argc; i++)
392   {
393     if (i < (ssize_t) argc)
394       option=argv[i];
395     else
396       if (image != (Image *) NULL)
397         break;
398       else
399         if (isatty(STDIN_FILENO) != MagickFalse)
400           option="logo:";
401         else
402           option="-";
403     if (LocaleCompare(option,"(") == 0)
404       {
405         FireImageStack(MagickFalse,MagickTrue,pend);
406         if (k == MaxImageStackDepth)
407           ThrowAnimateException(OptionError,"ParenthesisNestedTooDeeply",
408             option);
409         PushImageStack();
410         continue;
411       }
412     if (LocaleCompare(option,")") == 0)
413       {
414         FireImageStack(MagickFalse,MagickTrue,MagickTrue);
415         if (k == 0)
416           ThrowAnimateException(OptionError,"UnableToParseExpression",option);
417         PopImageStack();
418         continue;
419       }
420     if (IsCommandOption(option) == MagickFalse)
421       {
422         const char
423           *filename;
424
425         Image
426           *images;
427
428         /*
429           Read input image.
430         */
431         FireImageStack(MagickFalse,MagickFalse,pend);
432         filename=option;
433         if ((LocaleCompare(filename,"--") == 0) && (i < (ssize_t) (argc-1)))
434           {
435             option=argv[++i];
436             filename=option;
437           }
438         if (image_info->ping != MagickFalse)
439           images=PingImages(image_info,filename,exception);
440         else
441           images=ReadImages(image_info,filename,exception);
442         status&=(images != (Image *) NULL) &&
443           (exception->severity < ErrorException);
444         if (images == (Image *) NULL)
445           continue;
446         AppendImageStack(images);
447         continue;
448       }
449     pend=image != (Image *) NULL ? MagickTrue : MagickFalse;
450     switch (*(option+1))
451     {
452       case 'a':
453       {
454         if (LocaleCompare("alpha",option+1) == 0)
455           {
456             ssize_t
457               type;
458
459             if (*option == '+')
460               break;
461             i++;
462             if (i == (ssize_t) argc)
463               ThrowAnimateException(OptionError,"MissingArgument",option);
464             type=ParseCommandOption(MagickAlphaChannelOptions,MagickFalse,
465               argv[i]);
466             if (type < 0)
467               ThrowAnimateException(OptionError,
468                 "UnrecognizedAlphaChannelOption",argv[i]);
469             break;
470           }
471         if (LocaleCompare("alpha-color",option+1) == 0)
472           {
473             if (*option == '+')
474               break;
475             i++;
476             if (i == (ssize_t) argc)
477               ThrowAnimateException(OptionError,"MissingArgument",option);
478             resource_info.alpha_color=argv[i];
479             break;
480           }
481         if (LocaleCompare("authenticate",option+1) == 0)
482           {
483             if (*option == '+')
484               break;
485             i++;
486             if (i == (ssize_t) argc)
487               ThrowAnimateException(OptionError,"MissingArgument",option);
488             break;
489           }
490         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
491       }
492       case 'b':
493       {
494         if (LocaleCompare("backdrop",option+1) == 0)
495           {
496             resource_info.backdrop=(*option == '-') ? MagickTrue : MagickFalse;
497             break;
498           }
499         if (LocaleCompare("background",option+1) == 0)
500           {
501             if (*option == '+')
502               break;
503             i++;
504             if (i == (ssize_t) argc)
505               ThrowAnimateException(OptionError,"MissingArgument",option);
506             resource_info.background_color=argv[i];
507             break;
508           }
509         if (LocaleCompare("bordercolor",option+1) == 0)
510           {
511             if (*option == '+')
512               break;
513             i++;
514             if (i == (ssize_t) argc)
515               ThrowAnimateException(OptionError,"MissingArgument",option);
516             resource_info.border_color=argv[i];
517             break;
518           }
519         if (LocaleCompare("borderwidth",option+1) == 0)
520           {
521             resource_info.border_width=0;
522             if (*option == '+')
523               break;
524             i++;
525             if ((i == (ssize_t) argc) || (IsGeometry(argv[i]) == MagickFalse))
526               ThrowAnimateException(OptionError,"MissingArgument",option);
527             resource_info.border_width=(unsigned int)
528               StringToUnsignedLong(argv[i]);
529             break;
530           }
531         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
532       }
533       case 'c':
534       {
535         if (LocaleCompare("cache",option+1) == 0)
536           {
537             if (*option == '+')
538               break;
539             i++;
540             if (i == (ssize_t) argc)
541               ThrowAnimateException(OptionError,"MissingArgument",option);
542             if (IsGeometry(argv[i]) == MagickFalse)
543               ThrowAnimateInvalidArgumentException(option,argv[i]);
544             break;
545           }
546         if (LocaleCompare("channel",option+1) == 0)
547           {
548             ssize_t
549               channel;
550
551             if (*option == '+')
552               break;
553             i++;
554             if (i == (ssize_t) argc)
555               ThrowAnimateException(OptionError,"MissingArgument",option);
556             channel=ParseChannelOption(argv[i]);
557             if (channel < 0)
558               ThrowAnimateException(OptionError,"UnrecognizedChannelType",
559                 argv[i]);
560             break;
561           }
562         if (LocaleCompare("clone",option+1) == 0)
563           {
564             Image
565               *clone_images;
566
567             clone_images=image;
568             if (k != 0)
569               clone_images=image_stack[k-1].image;
570             if (clone_images == (Image *) NULL)
571               ThrowAnimateException(ImageError,"UnableToCloneImage",option);
572             FireImageStack(MagickFalse,MagickTrue,MagickTrue);
573             if (*option == '+')
574               clone_images=CloneImages(clone_images,"-1",exception);
575             else
576               {
577                 i++;
578                 if (i == (ssize_t) argc)
579                   ThrowAnimateException(OptionError,"MissingArgument",option);
580                 if (IsSceneGeometry(argv[i],MagickFalse) == MagickFalse)
581                   ThrowAnimateInvalidArgumentException(option,argv[i]);
582                 clone_images=CloneImages(clone_images,argv[i],exception);
583               }
584             if (clone_images == (Image *) NULL)
585               ThrowAnimateException(OptionError,"NoSuchImage",option);
586             AppendImageStack(clone_images);
587             break;
588           }
589         if (LocaleCompare("coalesce",option+1) == 0)
590           break;
591         if (LocaleCompare("colormap",option+1) == 0)
592           {
593             resource_info.colormap=PrivateColormap;
594             if (*option == '+')
595               break;
596             i++;
597             if (i == (ssize_t) argc)
598               ThrowAnimateException(OptionError,"MissingArgument",option);
599             resource_info.colormap=UndefinedColormap;
600             if (LocaleCompare("private",argv[i]) == 0)
601               resource_info.colormap=PrivateColormap;
602             if (LocaleCompare("shared",argv[i]) == 0)
603               resource_info.colormap=SharedColormap;
604             if (resource_info.colormap == UndefinedColormap)
605               ThrowAnimateException(OptionError,"UnrecognizedColormapType",
606                 argv[i]);
607             break;
608           }
609         if (LocaleCompare("colors",option+1) == 0)
610           {
611             quantize_info->number_colors=0;
612             if (*option == '+')
613               break;
614             i++;
615             if (i == (ssize_t) argc)
616               ThrowAnimateException(OptionError,"MissingArgument",option);
617             if (IsGeometry(argv[i]) == MagickFalse)
618               ThrowAnimateInvalidArgumentException(option,argv[i]);
619             quantize_info->number_colors=StringToUnsignedLong(argv[i]);
620             break;
621           }
622         if (LocaleCompare("colorspace",option+1) == 0)
623           {
624             ssize_t
625               colorspace;
626
627             if (*option == '+')
628               break;
629             i++;
630             if (i == (ssize_t) argc)
631               ThrowAnimateException(OptionError,"MissingArgument",option);
632             colorspace=ParseCommandOption(MagickColorspaceOptions,
633               MagickFalse,argv[i]);
634             if (colorspace < 0)
635               ThrowAnimateException(OptionError,"UnrecognizedColorspace",
636                 argv[i]);
637             break;
638           }
639         if (LocaleCompare("concurrent",option+1) == 0)
640           break;
641         if (LocaleCompare("crop",option+1) == 0)
642           {
643             if (*option == '+')
644               break;
645             i++;
646             if (i == (ssize_t) argc)
647               ThrowAnimateException(OptionError,"MissingArgument",option);
648             if (IsGeometry(argv[i]) == MagickFalse)
649               ThrowAnimateInvalidArgumentException(option,argv[i]);
650             break;
651           }
652         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
653       }
654       case 'd':
655       {
656         if (LocaleCompare("debug",option+1) == 0)
657           {
658             ssize_t
659               event;
660
661             if (*option == '+')
662               break;
663             i++;
664             if (i == (ssize_t) argc)
665               ThrowAnimateException(OptionError,"MissingArgument",option);
666             event=ParseCommandOption(MagickLogEventOptions,MagickFalse,argv[i]);
667             if (event < 0)
668               ThrowAnimateException(OptionError,"UnrecognizedEventType",
669                 argv[i]);
670             (void) SetLogEventMask(argv[i]);
671             break;
672           }
673         if (LocaleCompare("decipher",option+1) == 0)
674           {
675             if (*option == '+')
676               break;
677             i++;
678             if (i == (ssize_t) argc)
679               ThrowAnimateException(OptionError,"MissingArgument",option);
680             break;
681           }
682         if (LocaleCompare("define",option+1) == 0)
683           {
684             i++;
685             if (i == (ssize_t) argc)
686               ThrowAnimateException(OptionError,"MissingArgument",option);
687             if (*option == '+')
688               {
689                 const char
690                   *define;
691
692                 define=GetImageOption(image_info,argv[i]);
693                 if (define == (const char *) NULL)
694                   ThrowAnimateException(OptionError,"NoSuchOption",argv[i]);
695                 break;
696               }
697             break;
698           }
699         if (LocaleCompare("delay",option+1) == 0)
700           {
701             if (*option == '+')
702               break;
703             i++;
704             if (i == (ssize_t) argc)
705               ThrowAnimateException(OptionError,"MissingArgument",option);
706             if (IsGeometry(argv[i]) == MagickFalse)
707               ThrowAnimateInvalidArgumentException(option,argv[i]);
708             break;
709           }
710         if (LocaleCompare("density",option+1) == 0)
711           {
712             if (*option == '+')
713               break;
714             i++;
715             if (i == (ssize_t) argc)
716               ThrowAnimateException(OptionError,"MissingArgument",option);
717             if (IsGeometry(argv[i]) == MagickFalse)
718               ThrowAnimateInvalidArgumentException(option,argv[i]);
719             break;
720           }
721         if (LocaleCompare("depth",option+1) == 0)
722           {
723             if (*option == '+')
724               break;
725             i++;
726             if (i == (ssize_t) argc)
727               ThrowAnimateException(OptionError,"MissingArgument",option);
728             if (IsGeometry(argv[i]) == MagickFalse)
729               ThrowAnimateInvalidArgumentException(option,argv[i]);
730             break;
731           }
732         if (LocaleCompare("display",option+1) == 0)
733           {
734             if (*option == '+')
735               break;
736             i++;
737             if (i == (ssize_t) argc)
738               ThrowAnimateException(OptionError,"MissingArgument",option);
739             break;
740           }
741         if (LocaleCompare("dispose",option+1) == 0)
742           {
743             ssize_t
744               dispose;
745
746             if (*option == '+')
747               break;
748             i++;
749             if (i == (ssize_t) argc)
750               ThrowAnimateException(OptionError,"MissingArgument",option);
751             dispose=ParseCommandOption(MagickDisposeOptions,MagickFalse,argv[i]);
752             if (dispose < 0)
753               ThrowAnimateException(OptionError,"UnrecognizedDisposeMethod",
754                 argv[i]);
755             break;
756           }
757         if (LocaleCompare("dither",option+1) == 0)
758           {
759             ssize_t
760               method;
761
762             quantize_info->dither_method=NoDitherMethod;
763             if (*option == '+')
764               break;
765             i++;
766             if (i == (ssize_t) argc)
767               ThrowAnimateException(OptionError,"MissingArgument",option);
768             method=ParseCommandOption(MagickDitherOptions,MagickFalse,argv[i]);
769             if (method < 0)
770               ThrowAnimateException(OptionError,"UnrecognizedDitherMethod",
771                 argv[i]);
772             quantize_info->dither_method=(DitherMethod) method;
773             break;
774           }
775         if (LocaleCompare("duration",option+1) == 0)
776           {
777             if (*option == '+')
778               break;
779             i++;
780             if (i == (ssize_t) argc)
781               ThrowAnimateException(OptionError,"MissingArgument",option);
782             if (IsGeometry(argv[i]) == MagickFalse)
783               ThrowAnimateInvalidArgumentException(option,argv[i]);
784             break;
785           }
786         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
787       }
788       case 'e':
789       {
790         if (LocaleCompare("extract",option+1) == 0)
791           {
792             if (*option == '+')
793               break;
794             i++;
795             if (i == (ssize_t) argc)
796               ThrowAnimateException(OptionError,"MissingArgument",option);
797             if (IsGeometry(argv[i]) == MagickFalse)
798               ThrowAnimateInvalidArgumentException(option,argv[i]);
799             break;
800           }
801         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
802       }
803       case 'f':
804       {
805         if (LocaleCompare("filter",option+1) == 0)
806           {
807             ssize_t
808               filter;
809
810             if (*option == '+')
811               break;
812             i++;
813             if (i == (ssize_t) argc)
814               ThrowAnimateException(OptionError,"MissingArgument",option);
815             filter=ParseCommandOption(MagickFilterOptions,MagickFalse,argv[i]);
816             if (filter < 0)
817               ThrowAnimateException(OptionError,"UnrecognizedImageFilter",
818                 argv[i]);
819             break;
820           }
821         if (LocaleCompare("flatten",option+1) == 0)
822           break;
823         if (LocaleCompare("font",option+1) == 0)
824           {
825             if (*option == '+')
826               break;
827             i++;
828             if (i == (ssize_t) argc)
829               ThrowAnimateException(OptionError,"MissingArgument",option);
830             resource_info.font=XGetResourceClass(resource_database,
831               GetClientName(),"font",argv[i]);
832             break;
833           }
834         if (LocaleCompare("foreground",option+1) == 0)
835           {
836             if (*option == '+')
837               break;
838             i++;
839             if (i == (ssize_t) argc)
840               ThrowAnimateException(OptionError,"MissingArgument",option);
841             resource_info.foreground_color=argv[i];
842             break;
843           }
844         if (LocaleCompare("format",option+1) == 0)
845           {
846             if (*option == '+')
847               break;
848             i++;
849             if (i == (ssize_t) argc)
850               ThrowAnimateException(OptionError,"MissingArgument",option);
851             break;
852           }
853         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
854       }
855       case 'g':
856       {
857         if (LocaleCompare("gamma",option+1) == 0)
858           {
859             i++;
860             if (i == (ssize_t) argc)
861               ThrowAnimateException(OptionError,"MissingArgument",option);
862             if (IsGeometry(argv[i]) == MagickFalse)
863               ThrowAnimateInvalidArgumentException(option,argv[i]);
864             break;
865           }
866         if (LocaleCompare("geometry",option+1) == 0)
867           {
868             resource_info.image_geometry=(char *) NULL;
869             if (*option == '+')
870               break;
871             i++;
872             if (i == (ssize_t) argc)
873               ThrowAnimateException(OptionError,"MissingArgument",option);
874             if (IsGeometry(argv[i]) == MagickFalse)
875               ThrowAnimateInvalidArgumentException(option,argv[i]);
876             resource_info.image_geometry=ConstantString(argv[i]);
877             break;
878           }
879         if (LocaleCompare("gravity",option+1) == 0)
880           {
881             ssize_t
882               gravity;
883
884             if (*option == '+')
885               break;
886             i++;
887             if (i == (ssize_t) argc)
888               ThrowAnimateException(OptionError,"MissingArgument",option);
889             gravity=ParseCommandOption(MagickGravityOptions,MagickFalse,
890               argv[i]);
891             if (gravity < 0)
892               ThrowAnimateException(OptionError,"UnrecognizedGravityType",
893                 argv[i]);
894             break;
895           }
896         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
897       }
898       case 'h':
899       {
900         if ((LocaleCompare("help",option+1) == 0) ||
901             (LocaleCompare("-help",option+1) == 0))
902           break;
903         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
904       }
905       case 'i':
906       {
907         if (LocaleCompare("iconGeometry",option+1) == 0)
908           {
909             resource_info.icon_geometry=(char *) NULL;
910             if (*option == '+')
911               break;
912             i++;
913             if (i == (ssize_t) argc)
914               ThrowAnimateException(OptionError,"MissingArgument",option);
915             if (IsGeometry(argv[i]) == MagickFalse)
916               ThrowAnimateInvalidArgumentException(option,argv[i]);
917             resource_info.icon_geometry=argv[i];
918             break;
919           }
920         if (LocaleCompare("iconic",option+1) == 0)
921           {
922             resource_info.iconic=(*option == '-') ? MagickTrue : MagickFalse;
923             break;
924           }
925         if (LocaleCompare("identify",option+1) == 0)
926           break;
927         if (LocaleCompare("immutable",option+1) == 0)
928           {
929             resource_info.immutable=(*option == '-') ? MagickTrue : MagickFalse;
930             break;
931           }
932         if (LocaleCompare("interlace",option+1) == 0)
933           {
934             ssize_t
935               interlace;
936
937             if (*option == '+')
938               break;
939             i++;
940             if (i == (ssize_t) argc)
941               ThrowAnimateException(OptionError,"MissingArgument",option);
942             interlace=ParseCommandOption(MagickInterlaceOptions,MagickFalse,
943               argv[i]);
944             if (interlace < 0)
945               ThrowAnimateException(OptionError,"UnrecognizedInterlaceType",
946                 argv[i]);
947             break;
948           }
949         if (LocaleCompare("interpolate",option+1) == 0)
950           {
951             ssize_t
952               interpolate;
953
954             if (*option == '+')
955               break;
956             i++;
957             if (i == (ssize_t) argc)
958               ThrowAnimateException(OptionError,"MissingArgument",option);
959             interpolate=ParseCommandOption(MagickInterpolateOptions,MagickFalse,
960               argv[i]);
961             if (interpolate < 0)
962               ThrowAnimateException(OptionError,"UnrecognizedInterpolateMethod",
963                 argv[i]);
964             break;
965           }
966         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
967       }
968       case 'l':
969       {
970         if (LocaleCompare("label",option+1) == 0)
971           {
972             if (*option == '+')
973               break;
974             i++;
975             if (i == (ssize_t) argc)
976               ThrowAnimateException(OptionError,"MissingArgument",option);
977             break;
978           }
979         if (LocaleCompare("limit",option+1) == 0)
980           {
981             char
982               *p;
983
984             double
985               value;
986
987             ssize_t
988               resource;
989
990             if (*option == '+')
991               break;
992             i++;
993             if (i == (ssize_t) argc)
994               ThrowAnimateException(OptionError,"MissingArgument",option);
995             resource=ParseCommandOption(MagickResourceOptions,MagickFalse,
996               argv[i]);
997             if (resource < 0)
998               ThrowAnimateException(OptionError,"UnrecognizedResourceType",
999                 argv[i]);
1000             i++;
1001             if (i == (ssize_t) argc)
1002               ThrowAnimateException(OptionError,"MissingArgument",option);
1003             value=StringToDouble(argv[i],&p);
1004             (void) value;
1005             if ((p == argv[i]) && (LocaleCompare("unlimited",argv[i]) != 0))
1006               ThrowAnimateInvalidArgumentException(option,argv[i]);
1007             break;
1008           }
1009         if (LocaleCompare("list",option+1) == 0)
1010           {
1011             ssize_t
1012               list;
1013
1014             if (*option == '+')
1015               break;
1016             i++;
1017             if (i == (ssize_t) argc)
1018               ThrowAnimateException(OptionError,"MissingArgument",option);
1019             list=ParseCommandOption(MagickListOptions,MagickFalse,argv[i]);
1020             if (list < 0)
1021               ThrowAnimateException(OptionError,"UnrecognizedListType",argv[i]);
1022             status=MogrifyImageInfo(image_info,(int) (i-j+1),(const char **)
1023               argv+j,exception);
1024             DestroyAnimate();
1025             return(status == 0 ? MagickTrue : MagickFalse);
1026           }
1027         if (LocaleCompare("log",option+1) == 0)
1028           {
1029             if (*option == '+')
1030               break;
1031             i++;
1032             if ((i == (ssize_t) argc) ||
1033                 (strchr(argv[i],'%') == (char *) NULL))
1034               ThrowAnimateException(OptionError,"MissingArgument",option);
1035             break;
1036           }
1037         if (LocaleCompare("loop",option+1) == 0)
1038           {
1039             if (*option == '+')
1040               break;
1041             i++;
1042             if (i == (ssize_t) argc)
1043               ThrowAnimateException(OptionError,"MissingArgument",option);
1044             if (IsGeometry(argv[i]) == MagickFalse)
1045               ThrowAnimateInvalidArgumentException(option,argv[i]);
1046             break;
1047           }
1048         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1049       }
1050       case 'm':
1051       {
1052         if (LocaleCompare("map",option+1) == 0)
1053           {
1054             resource_info.map_type=(char *) NULL;
1055             if (*option == '+')
1056               break;
1057             (void) CopyMagickString(argv[i]+1,"san",MagickPathExtent);
1058             i++;
1059             if (i == (ssize_t) argc)
1060               ThrowAnimateException(OptionError,"MissingArgument",option);
1061             resource_info.map_type=argv[i];
1062             break;
1063           }
1064         if (LocaleCompare("matte",option+1) == 0)
1065           break;
1066         if (LocaleCompare("monitor",option+1) == 0)
1067           break;
1068         if (LocaleCompare("monochrome",option+1) == 0)
1069           {
1070             if (*option == '+')
1071               break;
1072             quantize_info->number_colors=2;
1073             quantize_info->colorspace=GRAYColorspace;
1074             break;
1075           }
1076         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1077       }
1078       case 'n':
1079       {
1080         if (LocaleCompare("name",option+1) == 0)
1081           {
1082             resource_info.name=(char *) NULL;
1083             if (*option == '+')
1084               break;
1085             i++;
1086             if (i == (ssize_t) argc)
1087               ThrowAnimateException(OptionError,"MissingArgument",option);
1088             resource_info.name=ConstantString(argv[i]);
1089             break;
1090           }
1091         if (LocaleCompare("noop",option+1) == 0)
1092           break;
1093         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1094       }
1095       case 'p':
1096       {
1097         if (LocaleCompare("pause",option+1) == 0)
1098           {
1099             resource_info.pause=0;
1100             if (*option == '+')
1101               break;
1102             i++;
1103             if (i == (ssize_t) argc)
1104               ThrowAnimateException(OptionError,"MissingArgument",option);
1105             if (IsGeometry(argv[i]) == MagickFalse)
1106               ThrowAnimateInvalidArgumentException(option,argv[i]);
1107             resource_info.pause=(unsigned int) StringToUnsignedLong(argv[i]);
1108             break;
1109           }
1110         if (LocaleCompare("page",option+1) == 0)
1111           {
1112             if (*option == '+')
1113               break;
1114             i++;
1115             if (i == (ssize_t) argc)
1116               ThrowAnimateException(OptionError,"MissingArgument",option);
1117             break;
1118           }
1119         if (LocaleCompare("profile",option+1) == 0)
1120           {
1121             i++;
1122             if (i == (ssize_t) argc)
1123               ThrowAnimateException(OptionError,"MissingArgument",option);
1124             break;
1125           }
1126         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1127       }
1128       case 'q':
1129       {
1130         if (LocaleCompare("quantize",option+1) == 0)
1131           {
1132             ssize_t
1133               colorspace;
1134
1135             if (*option == '+')
1136               break;
1137             i++;
1138             if (i == (ssize_t) argc)
1139               ThrowAnimateException(OptionError,"MissingArgument",option);
1140             colorspace=ParseCommandOption(MagickColorspaceOptions,
1141               MagickFalse,argv[i]);
1142             if (colorspace < 0)
1143               ThrowAnimateException(OptionError,"UnrecognizedColorspace",
1144                 argv[i]);
1145             break;
1146           }
1147         if (LocaleCompare("quiet",option+1) == 0)
1148           break;
1149         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1150       }
1151       case 'r':
1152       {
1153         if (LocaleCompare("regard-warnings",option+1) == 0)
1154           break;
1155         if (LocaleCompare("remote",option+1) == 0)
1156           {
1157             i++;
1158             if (i == (ssize_t) argc)
1159               ThrowAnimateException(OptionError,"MissingArgument",option);
1160             if (XRemoteCommand(display,resource_info.window_id,argv[i]) != 0)
1161               return(MagickFalse);
1162             i--;
1163             break;
1164           }
1165         if (LocaleCompare("repage",option+1) == 0)
1166           {
1167             if (*option == '+')
1168               break;
1169             i++;
1170             if (i == (ssize_t) argc)
1171               ThrowAnimateException(OptionError,"MissingArgument",option);
1172             if (IsGeometry(argv[i]) == MagickFalse)
1173               ThrowAnimateInvalidArgumentException(option,argv[i]);
1174             break;
1175           }
1176         if (LocaleCompare("resample",option+1) == 0)
1177           {
1178             if (*option == '+')
1179               break;
1180             i++;
1181             if (i == (ssize_t) argc)
1182               ThrowAnimateException(OptionError,"MissingArgument",option);
1183             if (IsGeometry(argv[i]) == MagickFalse)
1184               ThrowAnimateInvalidArgumentException(option,argv[i]);
1185             break;
1186           }
1187         if (LocaleCompare("resize",option+1) == 0)
1188           {
1189             if (*option == '+')
1190               break;
1191             i++;
1192             if (i == (ssize_t) argc)
1193               ThrowAnimateException(OptionError,"MissingArgument",option);
1194             if (IsGeometry(argv[i]) == MagickFalse)
1195               ThrowAnimateInvalidArgumentException(option,argv[i]);
1196             break;
1197           }
1198         if (LocaleNCompare("respect-parentheses",option+1,17) == 0)
1199           {
1200             respect_parenthesis=(*option == '-') ? MagickTrue : MagickFalse;
1201             break;
1202           }
1203         if (LocaleCompare("rotate",option+1) == 0)
1204           {
1205             i++;
1206             if (i == (ssize_t) argc)
1207               ThrowAnimateException(OptionError,"MissingArgument",option);
1208             if (IsGeometry(argv[i]) == MagickFalse)
1209               ThrowAnimateInvalidArgumentException(option,argv[i]);
1210             break;
1211           }
1212         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1213       }
1214       case 's':
1215       {
1216         if (LocaleCompare("sampling-factor",option+1) == 0)
1217           {
1218             if (*option == '+')
1219               break;
1220             i++;
1221             if (i == (ssize_t) argc)
1222               ThrowAnimateException(OptionError,"MissingArgument",option);
1223             if (IsGeometry(argv[i]) == MagickFalse)
1224               ThrowAnimateInvalidArgumentException(option,argv[i]);
1225             break;
1226           }
1227         if (LocaleCompare("seed",option+1) == 0)
1228           {
1229             if (*option == '+')
1230               break;
1231             i++;
1232             if (i == (ssize_t) argc)
1233               ThrowAnimateException(OptionError,"MissingArgument",option);
1234             if (IsGeometry(argv[i]) == MagickFalse)
1235               ThrowAnimateInvalidArgumentException(option,argv[i]);
1236             break;
1237           }
1238         if (LocaleCompare("scenes",option+1) == 0)  /* deprecated */
1239           {
1240             if (*option == '+')
1241               break;
1242             i++;
1243             if (i == (ssize_t) argc)
1244               ThrowAnimateException(OptionError,"MissingArgument",option);
1245             if (IsSceneGeometry(argv[i],MagickFalse) == MagickFalse)
1246               ThrowAnimateInvalidArgumentException(option,argv[i]);
1247             break;
1248           }
1249         if (LocaleCompare("set",option+1) == 0)
1250           {
1251             i++;
1252             if (i == (ssize_t) argc)
1253               ThrowAnimateException(OptionError,"MissingArgument",option);
1254             if (*option == '+')
1255               break;
1256             i++;
1257             if (i == (ssize_t) argc)
1258               ThrowAnimateException(OptionError,"MissingArgument",option);
1259             break;
1260           }
1261         if (LocaleCompare("shared-memory",option+1) == 0)
1262           {
1263             resource_info.use_shared_memory=(*option == '-') ? MagickTrue :
1264               MagickFalse;
1265             break;
1266           }
1267         if (LocaleCompare("size",option+1) == 0)
1268           {
1269             if (*option == '+')
1270               break;
1271             i++;
1272             if (i == (ssize_t) argc)
1273               ThrowAnimateException(OptionError,"MissingArgument",option);
1274             if (IsGeometry(argv[i]) == MagickFalse)
1275               ThrowAnimateInvalidArgumentException(option,argv[i]);
1276             break;
1277           }
1278         if (LocaleCompare("strip",option+1) == 0)
1279           break;
1280         if (LocaleCompare("support",option+1) == 0)
1281           {
1282             i++;  /* deprecated */
1283             break;
1284           }
1285         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1286       }
1287       case 't':
1288       {
1289         if (LocaleCompare("text-font",option+1) == 0)
1290           {
1291             resource_info.text_font=(char *) NULL;
1292             if (*option == '+')
1293               break;
1294             i++;
1295             if (i == (ssize_t) argc)
1296               ThrowAnimateException(OptionError,"MissingArgument",option);
1297             resource_info.text_font=XGetResourceClass(resource_database,
1298               GetClientName(),"font",argv[i]);
1299             break;
1300           }
1301         if (LocaleCompare("thumbnail",option+1) == 0)
1302           {
1303             if (*option == '+')
1304               break;
1305             i++;
1306             if (i == (ssize_t) argc)
1307               ThrowAnimateException(OptionError,"MissingArgument",option);
1308             if (IsGeometry(argv[i]) == MagickFalse)
1309               ThrowAnimateInvalidArgumentException(option,argv[i]);
1310             break;
1311           }
1312         if (LocaleCompare("title",option+1) == 0)
1313           {
1314             resource_info.title=(char *) NULL;
1315             if (*option == '+')
1316               break;
1317             i++;
1318             if (i == (ssize_t) argc)
1319               ThrowAnimateException(OptionError,"MissingArgument",option);
1320             resource_info.title=argv[i];
1321             break;
1322           }
1323         if (LocaleCompare("transparent-color",option+1) == 0)
1324           {
1325             if (*option == '+')
1326               break;
1327             i++;
1328             if (i == (ssize_t) argc)
1329               ThrowAnimateException(OptionError,"MissingArgument",option);
1330             break;
1331           }
1332         if (LocaleCompare("treedepth",option+1) == 0)
1333           {
1334             quantize_info->tree_depth=0;
1335             if (*option == '+')
1336               break;
1337             i++;
1338             if (i == (ssize_t) argc)
1339               ThrowAnimateException(OptionError,"MissingArgument",option);
1340             if (IsGeometry(argv[i]) == MagickFalse)
1341               ThrowAnimateInvalidArgumentException(option,argv[i]);
1342             quantize_info->tree_depth=StringToUnsignedLong(argv[i]);
1343             break;
1344           }
1345         if (LocaleCompare("trim",option+1) == 0)
1346           break;
1347         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1348       }
1349       case 'v':
1350       {
1351         if (LocaleCompare("verbose",option+1) == 0)
1352           break;
1353         if ((LocaleCompare("version",option+1) == 0) ||
1354             (LocaleCompare("-version",option+1) == 0))
1355           {
1356             ListMagickVersion(stdout);
1357             break;
1358           }
1359         if (LocaleCompare("virtual-pixel",option+1) == 0)
1360           {
1361             ssize_t
1362               method;
1363
1364             if (*option == '+')
1365               break;
1366             i++;
1367             if (i == (ssize_t) argc)
1368               ThrowAnimateException(OptionError,"MissingArgument",option);
1369             method=ParseCommandOption(MagickVirtualPixelOptions,MagickFalse,
1370               argv[i]);
1371             if (method < 0)
1372               ThrowAnimateException(OptionError,
1373                 "UnrecognizedVirtualPixelMethod",argv[i]);
1374             break;
1375           }
1376         if (LocaleCompare("visual",option+1) == 0)
1377           {
1378             resource_info.visual_type=(char *) NULL;
1379             if (*option == '+')
1380               break;
1381             i++;
1382             if (i == (ssize_t) argc)
1383               ThrowAnimateException(OptionError,"MissingArgument",option);
1384             resource_info.visual_type=argv[i];
1385             break;
1386           }
1387         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1388       }
1389       case 'w':
1390       {
1391         if (LocaleCompare("window",option+1) == 0)
1392           {
1393             resource_info.window_id=(char *) NULL;
1394             if (*option == '+')
1395               break;
1396             i++;
1397             if (i == (ssize_t) argc)
1398               ThrowAnimateException(OptionError,"MissingArgument",option);
1399             resource_info.window_id=argv[i];
1400             break;
1401           }
1402         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1403       }
1404       case '?':
1405         break;
1406       default:
1407         ThrowAnimateException(OptionError,"UnrecognizedOption",option);
1408     }
1409     fire=(GetCommandOptionFlags(MagickCommandOptions,MagickFalse,option) &
1410       FireOptionFlag) == 0 ?  MagickFalse : MagickTrue;
1411     if (fire != MagickFalse)
1412       FireImageStack(MagickFalse,MagickTrue,MagickTrue);
1413   }
1414   i--;
1415   if (k != 0)
1416     ThrowAnimateException(OptionError,"UnbalancedParenthesis",argv[i]);
1417   if (image == (Image *) NULL)
1418     ThrowAnimateException(OptionError,"MissingAnImageFilename",argv[argc-1])
1419   FinalizeImageSettings(image_info,image,MagickTrue);
1420   if (image == (Image *) NULL)
1421     ThrowAnimateException(OptionError,"MissingAnImageFilename",argv[argc-1])
1422   if (resource_info.window_id != (char *) NULL)
1423     {
1424       XAnimateBackgroundImage(display,&resource_info,image,exception);
1425       status&=MagickTrue;
1426     }
1427   else
1428     {
1429       Image
1430         *animate_image;
1431
1432       /*
1433         Animate image to X server.
1434       */
1435       animate_image=XAnimateImages(display,&resource_info,argv,argc,image,
1436         exception);
1437       while (animate_image != (Image *) NULL)
1438       {
1439         image=animate_image;
1440         animate_image=XAnimateImages(display,&resource_info,argv,argc,image,
1441           exception);
1442         if (animate_image != image)
1443           image=DestroyImageList(image);
1444       }
1445     }
1446   DestroyAnimate();
1447   return(status != 0 ? MagickTrue : MagickFalse);
1448 #else
1449   wand_unreferenced(argc);
1450   wand_unreferenced(argv);
1451   wand_unreferenced(metadata);
1452   (void) ThrowMagickException(exception,GetMagickModule(),MissingDelegateError,
1453     "DelegateLibrarySupportNotBuiltIn","'%s' (X11)",image_info->filename);
1454   return(AnimateUsage());
1455 #endif
1456 }