root/ImageMagick/trunk/utilities/animate.c

Revision 455, 4.8 KB (checked in by cristy, 4 weeks ago)
Line 
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%                   Interactively Animate an Image Sequence.                  %
14%                                                                             %
15%                             Software Design                                 %
16%                               John Cristy                                   %
17%                                July 1992                                    %
18%                                                                             %
19%                                                                             %
20%  Copyright 1999-2009 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%  Animate displays a sequence of images in the MIFF format on any
37%  workstation display running an X server.  Animate first determines the
38%  hardware capabilities of the workstation.  If the number of unique
39%  colors in an image is less than or equal to the number the workstation
40%  can support, the image is displayed in an X window.  Otherwise the
41%  number of colors in the image is first reduced to match the color
42%  resolution of the workstation before it is displayed.
43%
44%  This means that a continuous-tone 24 bits-per-pixel image can display on a
45%  8 bit pseudo-color device or monochrome device.  In most instances the
46%  reduced color image closely resembles the original.  Alternatively, a
47%  monochrome or pseudo-color image can display on a continuous-tone 24
48%  bits-per-pixel device.
49%
50%
51*/
52
53#include "wand/studio.h"
54#include "wand/MagickWand.h"
55
56/*
57%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
58%                                                                             %
59%                                                                             %
60%                                                                             %
61%  M a i n                                                                    %
62%                                                                             %
63%                                                                             %
64%                                                                             %
65%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
66%
67%
68*/
69
70#if defined(__WINDOWS__)
71int WINAPI WinMain(HINSTANCE instance,HINSTANCE last,LPSTR command,int state)
72{
73  char
74    **argv;
75
76  int
77    argc,
78    main(int,char **);
79
80  argv=StringToArgv(command,&argc);
81  return(main(argc,argv));
82}
83#endif
84
85int main(int argc,char **argv)
86{
87  ExceptionInfo
88    *exception;
89
90  ImageInfo
91    *image_info;
92
93  MagickBooleanType
94    status;
95
96  MagickCoreGenesis(*argv,MagickTrue);
97  exception=AcquireExceptionInfo();
98  image_info=AcquireImageInfo();
99  status=MagickCommandGenesis(image_info,AnimateImageCommand,argc,argv,
100    (char **) NULL,exception);
101  image_info=DestroyImageInfo(image_info);
102  exception=DestroyExceptionInfo(exception);
103  MagickCoreTerminus();
104  return(status);
105}
Note: See TracBrowser for help on using the browser.