blob: d754c717b70f76a5625b0f1bb8f587f127f82f53 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% CCCC OOO N N JJJJJ U U RRRR EEEEE %
7% C O O NN N J U U R R E %
8% C O O N N N J U U RRRR EEE %
9% C O O N NN J J U U R R E %
10% CCCC OOO N N JJJ UUU R R EEEEE %
11% %
12% %
13% Interpret Magick Scripting Language. %
14% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% December 2001 %
18% %
19% %
Cristy7ce65e72015-12-12 18:03:16 -050020% Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% 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% The conjure program gives you the ability to perform custom image processing
37% tasks from a script written in the Magick Scripting Language (MSL). MSL is
38% XML-based and consists of action statements with attributes. Actions include
39% reading an image, processing an image, getting attributes from an image,
40% writing an image, and more. An attribute is a key/value pair that modifies
41% the behavior of an action.
42%
43*/
44
45/*
46 Include declarations.
47*/
cristy4c08aed2011-07-01 19:47:50 +000048#include "MagickWand/studio.h"
49#include "MagickWand/MagickWand.h"
50#include "MagickWand/mogrify-private.h"
cristy3ed852e2009-09-05 21:47:34 +000051
52/*
53%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
54% %
55% %
56% %
57+ C o n j u r e I m a g e C o m m a n d %
58% %
59% %
60% %
61%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
62%
63% ConjureImageCommand() describes the format and characteristics of one or
64% more image files. It will also report if an image is incomplete or corrupt.
65% The information displayed includes the scene number, the file name, the
66% width and height of the image, whether the image is colormapped or not,
67% the number of colors in the image, the number of bytes in the image, the
68% format of the image (JPEG, PNM, etc.), and finally the number of seconds
69% it took to read and process the image.
70%
71% The format of the ConjureImageCommand method is:
72%
73% MagickBooleanType ConjureImageCommand(ImageInfo *image_info,int argc,
74% char **argv,char **metadata,ExceptionInfo *exception)
75%
76% A description of each parameter follows:
77%
78% o image_info: the image info.
79%
80% o argc: the number of elements in the argument vector.
81%
82% o argv: A text array containing the command line arguments.
83%
84% o metadata: any metadata is returned here.
85%
86% o exception: return any errors or warnings in this structure.
87%
88*/
89
90static MagickBooleanType ConjureUsage(void)
91{
92 const char
93 **p;
94
95 static const char
96 *miscellaneous[]=
97 {
98 "-debug events display copious debugging information",
99 "-help print program options",
100 "-list type print a list of supported option arguments",
101 "-log format format of debugging information",
102 "-version print version information",
103 (char *) NULL
104 },
105 *settings[]=
106 {
107 "-monitor monitor progress",
108 "-quiet suppress all warning messages",
109 "-regard-warnings pay attention to warning messages",
110 "-seed value seed a new sequence of pseudo-random numbers",
111 "-verbose print detailed information about the image",
112 (char *) NULL
113 };
114
cristy4f7a6132012-12-23 00:35:19 +0000115 ListMagickVersion(stdout);
cristy3ed852e2009-09-05 21:47:34 +0000116 (void) printf("Usage: %s [options ...] file [ [options ...] file ...]\n",
117 GetClientName());
118 (void) printf("\nImage Settings:\n");
119 for (p=settings; *p != (char *) NULL; p++)
120 (void) printf(" %s\n",*p);
121 (void) printf("\nMiscellaneous Options:\n");
122 for (p=miscellaneous; *p != (char *) NULL; p++)
123 (void) printf(" %s\n",*p);
glennrpac094272010-11-13 13:07:11 +0000124 (void) printf("\nIn addition, define any key value pairs required by "
cristy3ed852e2009-09-05 21:47:34 +0000125 "your script. For\nexample,\n\n");
126 (void) printf(" conjure -size 100x100 -color blue -foo bar script.msl\n");
127 return(MagickFalse);
128}
129
130WandExport MagickBooleanType ConjureImageCommand(ImageInfo *image_info,
131 int argc,char **argv,char **wand_unused(metadata),ExceptionInfo *exception)
132{
133#define DestroyConjure() \
134{ \
135 image=DestroyImageList(image); \
cristybb503372010-05-27 20:51:26 +0000136 for (i=0; i < (ssize_t) argc; i++) \
cristy3ed852e2009-09-05 21:47:34 +0000137 argv[i]=DestroyString(argv[i]); \
138 argv=(char **) RelinquishMagickMemory(argv); \
139}
140#define ThrowConjureException(asperity,tag,option) \
141{ \
cristyefe601c2013-01-05 17:51:12 +0000142 (void) ThrowMagickException(exception,GetMagickModule(),asperity,tag,"`%s'", \
cristy3ed852e2009-09-05 21:47:34 +0000143 option); \
144 DestroyConjure(); \
145 return(MagickFalse); \
146}
147#define ThrowConjureInvalidArgumentException(option,argument) \
148{ \
149 (void) ThrowMagickException(exception,GetMagickModule(),OptionError, \
anthonye5b39652012-04-21 05:37:29 +0000150 "InvalidArgument","'%s': %s",option,argument); \
cristy3ed852e2009-09-05 21:47:34 +0000151 DestroyConjure(); \
152 return(MagickFalse); \
153}
154
155 char
cristy151b66d2015-04-15 10:50:31 +0000156 filename[MagickPathExtent],
cristy3ed852e2009-09-05 21:47:34 +0000157 *option;
158
159 Image
160 *image;
161
cristy3ed852e2009-09-05 21:47:34 +0000162 MagickStatusType
163 status;
164
cristybb503372010-05-27 20:51:26 +0000165 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000166 i;
167
cristy9d314ff2011-03-09 01:30:28 +0000168 ssize_t
169 number_images;
170
cristy3ed852e2009-09-05 21:47:34 +0000171 /*
172 Set defaults.
173 */
174 assert(image_info != (ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000175 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000176 if (image_info->debug != MagickFalse)
177 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
178 assert(exception != (ExceptionInfo *) NULL);
179 if (argc < 2)
cristy13e61a12010-02-04 20:19:00 +0000180 return(ConjureUsage());
cristy3ed852e2009-09-05 21:47:34 +0000181 image=NewImageList();
182 number_images=0;
183 option=(char *) NULL;
cristy3ed852e2009-09-05 21:47:34 +0000184 /*
185 Conjure an image.
186 */
187 ReadCommandlLine(argc,&argv);
188 status=ExpandFilenames(&argc,&argv);
189 if (status == MagickFalse)
190 ThrowConjureException(ResourceLimitError,"MemoryAllocationFailed",
191 GetExceptionMessage(errno));
cristybb503372010-05-27 20:51:26 +0000192 for (i=1; i < (ssize_t) argc; i++)
cristy3ed852e2009-09-05 21:47:34 +0000193 {
194 option=argv[i];
cristy042ee782011-04-22 18:48:30 +0000195 if (IsCommandOption(option) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000196 {
cristy22879752009-10-25 23:55:40 +0000197 if (LocaleCompare("concurrent",option+1) == 0)
198 break;
cristy3ed852e2009-09-05 21:47:34 +0000199 if (LocaleCompare("debug",option+1) == 0)
200 {
cristybb503372010-05-27 20:51:26 +0000201 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000202 event;
203
204 if (*option == '+')
205 break;
206 i++;
cristybb503372010-05-27 20:51:26 +0000207 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000208 ThrowConjureException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000209 event=ParseCommandOption(MagickLogEventOptions,MagickFalse,argv[i]);
cristy3ed852e2009-09-05 21:47:34 +0000210 if (event < 0)
211 ThrowConjureException(OptionError,"UnrecognizedEventType",
212 argv[i]);
213 (void) SetLogEventMask(argv[i]);
214 continue;
215 }
cristy22879752009-10-25 23:55:40 +0000216 if (LocaleCompare("duration",option+1) == 0)
217 {
218 if (*option == '+')
219 break;
220 i++;
cristye81f5522014-05-07 01:25:59 +0000221 if (i == (ssize_t) argc)
cristy22879752009-10-25 23:55:40 +0000222 ThrowConjureException(OptionError,"MissingArgument",option);
223 if (IsGeometry(argv[i]) == MagickFalse)
224 ThrowConjureInvalidArgumentException(option,argv[i]);
225 continue;
226 }
cristy3ed852e2009-09-05 21:47:34 +0000227 if ((LocaleCompare("help",option+1) == 0) ||
228 (LocaleCompare("-help",option+1) == 0))
229 {
230 if (*option == '-')
231 return(ConjureUsage());
232 continue;
233 }
234 if (LocaleCompare("log",option+1) == 0)
235 {
236 if (*option == '-')
237 {
238 i++;
cristybb503372010-05-27 20:51:26 +0000239 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000240 ThrowConjureException(OptionError,"MissingLogFormat",option);
241 (void) SetLogFormat(argv[i]);
242 }
243 continue;
244 }
245 if (LocaleCompare("monitor",option+1) == 0)
246 continue;
247 if (LocaleCompare("quiet",option+1) == 0)
248 continue;
249 if (LocaleCompare("regard-warnings",option+1) == 0)
250 break;
251 if (LocaleCompare("seed",option+1) == 0)
252 {
253 if (*option == '+')
254 break;
255 i++;
cristye81f5522014-05-07 01:25:59 +0000256 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000257 ThrowConjureException(OptionError,"MissingArgument",option);
258 if (IsGeometry(argv[i]) == MagickFalse)
259 ThrowConjureInvalidArgumentException(option,argv[i]);
260 break;
261 }
262 if (LocaleCompare("verbose",option+1) == 0)
263 {
264 image_info->verbose=(*option == '-') ? MagickTrue : MagickFalse;
265 continue;
266 }
267 if ((LocaleCompare("version",option+1) == 0) ||
268 (LocaleCompare("-version",option+1) == 0))
269 {
cristy4f7a6132012-12-23 00:35:19 +0000270 ListMagickVersion(stdout);
cristy3ed852e2009-09-05 21:47:34 +0000271 return(MagickFalse);
272 }
273 /*
274 Persist key/value pair.
275 */
276 (void) DeleteImageOption(image_info,option+1);
277 status=SetImageOption(image_info,option+1,argv[i+1]);
278 if (status == MagickFalse)
279 ThrowConjureException(ImageError,"UnableToPersistKey",option);
280 i++;
281 continue;
282 }
283 /*
284 Interpret MSL script.
285 */
286 (void) DeleteImageOption(image_info,"filename");
287 status=SetImageOption(image_info,"filename",argv[i]);
288 if (status == MagickFalse)
289 ThrowConjureException(ImageError,"UnableToPersistKey",argv[i]);
cristy151b66d2015-04-15 10:50:31 +0000290 (void) FormatLocaleString(filename,MagickPathExtent,"msl:%s",argv[i]);
cristy1b58f252012-03-01 01:41:41 +0000291 image=ReadImages(image_info,filename,exception);
cristy3ed852e2009-09-05 21:47:34 +0000292 CatchException(exception);
293 if (image != (Image *) NULL)
294 image=DestroyImageList(image);
295 status=image != (Image *) NULL ? MagickTrue : MagickFalse;
296 number_images++;
297 }
cristycee97112010-05-28 00:44:52 +0000298 if (i != (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000299 ThrowConjureException(OptionError,"MissingAnImageFilename",argv[i]);
300 if (number_images == 0)
301 ThrowConjureException(OptionError,"MissingAnImageFilename",argv[argc-1]);
302 if (image != (Image *) NULL)
303 image=DestroyImageList(image);
cristybb503372010-05-27 20:51:26 +0000304 for (i=0; i < (ssize_t) argc; i++)
cristy3ed852e2009-09-05 21:47:34 +0000305 argv[i]=DestroyString(argv[i]);
306 argv=(char **) RelinquishMagickMemory(argv);
307 return(status != 0 ? MagickTrue : MagickFalse);
308}