blob: 2ab0a0b679f07ca0f078ea40ab24ba9e631c3987 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% SSSSS TTTTT RRRR EEEEE AAA M M %
7% SS T R R E A A MM MM %
8% SSS T RRRR EEE AAAAA M M M %
9% SS T R R E A A M M %
10% SSSSS T R R EEEEE A A M M %
11% %
12% %
13% Stream Image to a Raw Image Format %
14% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% July 1992 %
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% Stream is a lightweight tool to stream one or more pixel components of the
37% image or portion of the image to your choice of storage formats. It writes
38% the pixel components as they are read from the input image a row at a time
39% making stream desirable when working with large images or when you require
40% raw pixel components.
41%
42*/
43
44/*
45 Include declarations.
46*/
cristy4c08aed2011-07-01 19:47:50 +000047#include "MagickWand/studio.h"
48#include "MagickWand/MagickWand.h"
49#include "MagickWand/mogrify-private.h"
50#include "MagickCore/stream-private.h"
cristy196372d2011-11-05 00:07:32 +000051#include "MagickCore/string-private.h"
cristy3ed852e2009-09-05 21:47:34 +000052
53/*
54%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
55% %
56% %
57% %
58% S t r e a m I m a g e C o m m a n d %
59% %
60% %
61% %
62%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
63%
64% StreamImageCommand() is a lightweight method designed to extract pixels
65% from large image files to a raw format using a minimum of system resources.
66% The entire image or any regular portion of the image can be extracted.
67%
68% The format of the StreamImageCommand method is:
69%
70% MagickBooleanType StreamImageCommand(ImageInfo *image_info,int argc,
71% char **argv,char **metadata,ExceptionInfo *exception)
72%
73% A description of each parameter follows:
74%
75% o image_info: the image info.
76%
77% o argc: the number of elements in the argument vector.
78%
79% o argv: A text array containing the command line arguments.
80%
81% o metadata: any metadata is returned here.
82%
83% o exception: return any errors or warnings in this structure.
84%
cristy3ed852e2009-09-05 21:47:34 +000085*/
86
87static MagickBooleanType StreamUsage(void)
88{
89 const char
90 **p;
91
92 static const char
93 *miscellaneous[]=
94 {
cristy17ada022014-11-07 22:12:23 +000095 "-channel mask set the image channel mask",
cristy3ed852e2009-09-05 21:47:34 +000096 "-debug events display copious debugging information",
97 "-help print program options",
98 "-list type print a list of supported option arguments",
99 "-log format format of debugging information",
100 "-version print version information",
101 (char *) NULL
102 },
103 *settings[]=
104 {
105 "-authenticate password",
106 " decipher image with this password",
cristy3ed852e2009-09-05 21:47:34 +0000107 "-colorspace type alternate image colorspace",
108 "-compress type type of pixel compression when writing the image",
109 "-define format:option",
110 " define one or more image format options",
111 "-density geometry horizontal and vertical density of the image",
112 "-depth value image depth",
113 "-extract geometry extract area from image",
114 "-identify identify the format and characteristics of the image",
115 "-interlace type type of image interlacing scheme",
116 "-interpolate method pixel color interpolation method",
117 "-limit type value pixel cache resource limit",
118 "-map components one or more pixel components",
119 "-monitor monitor progress",
120 "-quantize colorspace reduce colors in this colorspace",
121 "-quiet suppress all warning messages",
122 "-regard-warnings pay attention to warning messages",
123 "-respect-parentheses settings remain in effect until parenthesis boundary",
124 "-sampling-factor geometry",
125 " horizontal and vertical sampling factor",
126 "-seed value seed a new sequence of pseudo-random numbers",
127 "-set attribute value set an image attribute",
128 "-size geometry width and height of image",
129 "-storage-type type pixel storage type",
cristyd9a29192010-10-16 16:49:53 +0000130 "-synchronize synchronize image to storage device",
131 "-taint declare the image as modified",
cristy3ed852e2009-09-05 21:47:34 +0000132 "-transparent-color color",
133 " transparent color",
134 "-verbose print detailed information about the image",
135 "-virtual-pixel method",
136 " virtual pixel access method",
137 (char *) NULL
138 };
139
cristy4f7a6132012-12-23 00:35:19 +0000140 ListMagickVersion(stdout);
cristy3ed852e2009-09-05 21:47:34 +0000141 (void) printf("Usage: %s [options ...] input-image raw-image\n",
142 GetClientName());
143 (void) printf("\nImage Settings:\n");
144 for (p=settings; *p != (char *) NULL; p++)
145 (void) printf(" %s\n",*p);
146 (void) printf("\nMiscellaneous Options:\n");
147 for (p=miscellaneous; *p != (char *) NULL; p++)
148 (void) printf(" %s\n",*p);
149 (void) printf(
anthonye5b39652012-04-21 05:37:29 +0000150 "\nBy default, the image format of 'file' is determined by its magic\n");
cristy3ed852e2009-09-05 21:47:34 +0000151 (void) printf(
152 "number. To specify a particular image format, precede the filename\n");
153 (void) printf(
154 "with an image format name and a colon (i.e. ps:image) or specify the\n");
155 (void) printf(
156 "image type as the filename suffix (i.e. image.ps). Specify 'file' as\n");
157 (void) printf("'-' for standard input or output.\n");
158 return(MagickFalse);
159}
160
161WandExport MagickBooleanType StreamImageCommand(ImageInfo *image_info,
162 int argc,char **argv,char **metadata,ExceptionInfo *exception)
163{
164#define DestroyStream() \
165{ \
166 DestroyImageStack(); \
167 stream_info=DestroyStreamInfo(stream_info); \
cristybb503372010-05-27 20:51:26 +0000168 for (i=0; i < (ssize_t) argc; i++) \
cristy3ed852e2009-09-05 21:47:34 +0000169 argv[i]=DestroyString(argv[i]); \
170 argv=(char **) RelinquishMagickMemory(argv); \
171}
172#define ThrowStreamException(asperity,tag,option) \
173{ \
cristyefe601c2013-01-05 17:51:12 +0000174 (void) ThrowMagickException(exception,GetMagickModule(),asperity,tag,"`%s'", \
cristy3ed852e2009-09-05 21:47:34 +0000175 option); \
176 DestroyStream(); \
177 return(MagickFalse); \
178}
179#define ThrowStreamInvalidArgumentException(option,argument) \
180{ \
181 (void) ThrowMagickException(exception,GetMagickModule(),OptionError, \
anthonye5b39652012-04-21 05:37:29 +0000182 "InvalidArgument","'%s': %s",option,argument); \
cristy3ed852e2009-09-05 21:47:34 +0000183 DestroyStream(); \
184 return(MagickFalse); \
185}
186
187 char
188 *filename,
189 *option;
190
191 const char
192 *format;
193
194 Image
195 *image;
196
197 ImageStack
198 image_stack[MaxImageStackDepth+1];
199
cristy3ed852e2009-09-05 21:47:34 +0000200 MagickBooleanType
201 fire,
cristyebbcfea2011-02-25 02:43:54 +0000202 pend,
203 respect_parenthesis;
cristy3ed852e2009-09-05 21:47:34 +0000204
205 MagickStatusType
206 status;
207
cristybb503372010-05-27 20:51:26 +0000208 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000209 i;
210
cristy9d314ff2011-03-09 01:30:28 +0000211 ssize_t
212 j,
213 k;
214
cristy3ed852e2009-09-05 21:47:34 +0000215 StreamInfo
216 *stream_info;
217
218 /*
219 Set defaults.
220 */
221 assert(image_info != (ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000222 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000223 if (image_info->debug != MagickFalse)
224 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
225 assert(exception != (ExceptionInfo *) NULL);
226 (void) metadata;
227 if (argc == 2)
228 {
229 option=argv[1];
230 if ((LocaleCompare("version",option+1) == 0) ||
231 (LocaleCompare("-version",option+1) == 0))
232 {
cristy4f7a6132012-12-23 00:35:19 +0000233 ListMagickVersion(stdout);
cristy3ed852e2009-09-05 21:47:34 +0000234 return(MagickFalse);
235 }
236 }
237 if (argc < 3)
cristy13e61a12010-02-04 20:19:00 +0000238 return(StreamUsage());
cristy3ed852e2009-09-05 21:47:34 +0000239 format="%w,%h,%m";
cristyda16f162011-02-19 23:52:17 +0000240 (void) format;
cristy3ed852e2009-09-05 21:47:34 +0000241 j=1;
242 k=0;
243 NewImageStack();
244 option=(char *) NULL;
245 pend=MagickFalse;
cristyebbcfea2011-02-25 02:43:54 +0000246 respect_parenthesis=MagickFalse;
cristy9950d572011-10-01 18:22:35 +0000247 stream_info=AcquireStreamInfo(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000248 status=MagickTrue;
249 /*
250 Stream an image.
251 */
252 ReadCommandlLine(argc,&argv);
253 status=ExpandFilenames(&argc,&argv);
254 if (status == MagickFalse)
255 ThrowStreamException(ResourceLimitError,"MemoryAllocationFailed",
256 GetExceptionMessage(errno));
257 status=OpenStream(image_info,stream_info,argv[argc-1],exception);
258 if (status == MagickFalse)
259 {
260 DestroyStream();
261 return(MagickFalse);
262 }
cristybb503372010-05-27 20:51:26 +0000263 for (i=1; i < (ssize_t) (argc-1); i++)
cristy3ed852e2009-09-05 21:47:34 +0000264 {
265 option=argv[i];
266 if (LocaleCompare(option,"(") == 0)
267 {
268 FireImageStack(MagickFalse,MagickTrue,pend);
269 if (k == MaxImageStackDepth)
270 ThrowStreamException(OptionError,"ParenthesisNestedTooDeeply",option);
271 PushImageStack();
272 continue;
273 }
274 if (LocaleCompare(option,")") == 0)
275 {
276 FireImageStack(MagickFalse,MagickTrue,MagickTrue);
277 if (k == 0)
278 ThrowStreamException(OptionError,"UnableToParseExpression",option);
279 PopImageStack();
280 continue;
281 }
cristy042ee782011-04-22 18:48:30 +0000282 if (IsCommandOption(option) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000283 {
284 Image
285 *images;
286
287 /*
288 Stream input image.
289 */
290 FireImageStack(MagickFalse,MagickFalse,pend);
291 filename=argv[i];
cristycee97112010-05-28 00:44:52 +0000292 if ((LocaleCompare(filename,"--") == 0) && (i < (ssize_t) (argc-1)))
cristy3ed852e2009-09-05 21:47:34 +0000293 filename=argv[++i];
cristy151b66d2015-04-15 10:50:31 +0000294 (void) CopyMagickString(image_info->filename,filename,MagickPathExtent);
cristy3ed852e2009-09-05 21:47:34 +0000295 images=StreamImage(image_info,stream_info,exception);
296 status&=(images != (Image *) NULL) &&
297 (exception->severity < ErrorException);
298 if (images == (Image *) NULL)
299 continue;
300 AppendImageStack(images);
301 continue;
302 }
303 pend=image != (Image *) NULL ? MagickTrue : MagickFalse;
304 switch (*(option+1))
305 {
306 case 'a':
307 {
308 if (LocaleCompare("authenticate",option+1) == 0)
309 {
310 if (*option == '+')
311 break;
312 i++;
cristye81f5522014-05-07 01:25:59 +0000313 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000314 ThrowStreamException(OptionError,"MissingArgument",option);
315 break;
316 }
317 ThrowStreamException(OptionError,"UnrecognizedOption",option)
318 }
319 case 'c':
320 {
321 if (LocaleCompare("cache",option+1) == 0)
322 {
323 if (*option == '+')
324 break;
325 i++;
cristybb503372010-05-27 20:51:26 +0000326 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000327 ThrowStreamException(OptionError,"MissingArgument",option);
328 if (IsGeometry(argv[i]) == MagickFalse)
329 ThrowStreamInvalidArgumentException(option,argv[i]);
330 break;
331 }
332 if (LocaleCompare("channel",option+1) == 0)
333 {
cristybb503372010-05-27 20:51:26 +0000334 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000335 channel;
336
337 if (*option == '+')
338 break;
339 i++;
cristye81f5522014-05-07 01:25:59 +0000340 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000341 ThrowStreamException(OptionError,"MissingArgument",option);
342 channel=ParseChannelOption(argv[i]);
343 if (channel < 0)
344 ThrowStreamException(OptionError,"UnrecognizedChannelType",
345 argv[i]);
346 break;
347 }
348 if (LocaleCompare("colorspace",option+1) == 0)
349 {
cristybb503372010-05-27 20:51:26 +0000350 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000351 colorspace;
352
353 if (*option == '+')
354 break;
355 i++;
cristye81f5522014-05-07 01:25:59 +0000356 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000357 ThrowStreamException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000358 colorspace=ParseCommandOption(MagickColorspaceOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +0000359 argv[i]);
360 if (colorspace < 0)
361 ThrowStreamException(OptionError,"UnrecognizedColorspace",
362 argv[i]);
363 break;
364 }
365 if (LocaleCompare("compress",option+1) == 0)
366 {
cristybb503372010-05-27 20:51:26 +0000367 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000368 compress;
369
370 if (*option == '+')
371 break;
372 i++;
cristye81f5522014-05-07 01:25:59 +0000373 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000374 ThrowStreamException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000375 compress=ParseCommandOption(MagickCompressOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +0000376 argv[i]);
377 if (compress < 0)
378 ThrowStreamException(OptionError,"UnrecognizedImageCompression",
379 argv[i]);
380 break;
381 }
cristy22879752009-10-25 23:55:40 +0000382 if (LocaleCompare("concurrent",option+1) == 0)
383 break;
cristy3ed852e2009-09-05 21:47:34 +0000384 ThrowStreamException(OptionError,"UnrecognizedOption",option)
385 }
386 case 'd':
387 {
388 if (LocaleCompare("debug",option+1) == 0)
389 {
cristybb503372010-05-27 20:51:26 +0000390 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000391 event;
392
393 if (*option == '+')
394 break;
395 i++;
cristybb503372010-05-27 20:51:26 +0000396 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000397 ThrowStreamException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000398 event=ParseCommandOption(MagickLogEventOptions,MagickFalse,argv[i]);
cristy3ed852e2009-09-05 21:47:34 +0000399 if (event < 0)
400 ThrowStreamException(OptionError,"UnrecognizedEventType",argv[i]);
401 (void) SetLogEventMask(argv[i]);
402 break;
cristy3ed852e2009-09-05 21:47:34 +0000403 }
404 if (LocaleCompare("define",option+1) == 0)
405 {
406 i++;
cristybb503372010-05-27 20:51:26 +0000407 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000408 ThrowStreamException(OptionError,"MissingArgument",option);
409 if (*option == '+')
410 {
411 const char
412 *define;
413
414 define=GetImageOption(image_info,argv[i]);
415 if (define == (const char *) NULL)
416 ThrowStreamException(OptionError,"NoSuchOption",argv[i]);
417 break;
418 }
419 break;
420 }
421 if (LocaleCompare("density",option+1) == 0)
422 {
423 if (*option == '+')
424 break;
425 i++;
cristybb503372010-05-27 20:51:26 +0000426 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000427 ThrowStreamException(OptionError,"MissingArgument",option);
428 if (IsGeometry(argv[i]) == MagickFalse)
429 ThrowStreamInvalidArgumentException(option,argv[i]);
430 break;
431 }
432 if (LocaleCompare("depth",option+1) == 0)
433 {
434 if (*option == '+')
435 break;
436 i++;
cristybb503372010-05-27 20:51:26 +0000437 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000438 ThrowStreamException(OptionError,"MissingArgument",option);
439 if (IsGeometry(argv[i]) == MagickFalse)
440 ThrowStreamInvalidArgumentException(option,argv[i]);
441 break;
442 }
cristy22879752009-10-25 23:55:40 +0000443 if (LocaleCompare("duration",option+1) == 0)
444 {
445 if (*option == '+')
446 break;
447 i++;
cristye81f5522014-05-07 01:25:59 +0000448 if (i == (ssize_t) argc)
cristy22879752009-10-25 23:55:40 +0000449 ThrowStreamException(OptionError,"MissingArgument",option);
450 if (IsGeometry(argv[i]) == MagickFalse)
451 ThrowStreamInvalidArgumentException(option,argv[i]);
452 break;
453 }
cristy3ed852e2009-09-05 21:47:34 +0000454 ThrowStreamException(OptionError,"UnrecognizedOption",option)
455 }
456 case 'e':
457 {
458 if (LocaleCompare("extract",option+1) == 0)
459 {
460 if (*option == '+')
461 break;
462 i++;
cristye81f5522014-05-07 01:25:59 +0000463 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000464 ThrowStreamException(OptionError,"MissingArgument",option);
465 if (IsGeometry(argv[i]) == MagickFalse)
466 ThrowStreamInvalidArgumentException(option,argv[i]);
467 break;
468 }
469 ThrowStreamException(OptionError,"UnrecognizedOption",option)
470 }
471 case 'h':
472 {
473 if ((LocaleCompare("help",option+1) == 0) ||
474 (LocaleCompare("-help",option+1) == 0))
475 return(StreamUsage());
476 ThrowStreamException(OptionError,"UnrecognizedOption",option)
477 }
478 case 'i':
479 {
480 if (LocaleCompare("identify",option+1) == 0)
481 break;
482 if (LocaleCompare("interlace",option+1) == 0)
483 {
cristybb503372010-05-27 20:51:26 +0000484 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000485 interlace;
486
487 if (*option == '+')
488 break;
489 i++;
cristybb503372010-05-27 20:51:26 +0000490 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000491 ThrowStreamException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000492 interlace=ParseCommandOption(MagickInterlaceOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +0000493 argv[i]);
494 if (interlace < 0)
495 ThrowStreamException(OptionError,"UnrecognizedInterlaceType",
496 argv[i]);
497 break;
498 }
499 if (LocaleCompare("interpolate",option+1) == 0)
500 {
cristybb503372010-05-27 20:51:26 +0000501 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000502 interpolate;
503
504 if (*option == '+')
505 break;
506 i++;
cristybb503372010-05-27 20:51:26 +0000507 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000508 ThrowStreamException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000509 interpolate=ParseCommandOption(MagickInterpolateOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +0000510 argv[i]);
511 if (interpolate < 0)
512 ThrowStreamException(OptionError,"UnrecognizedInterpolateMethod",
513 argv[i]);
514 break;
515 }
516 ThrowStreamException(OptionError,"UnrecognizedOption",option)
517 }
518 case 'l':
519 {
520 if (LocaleCompare("limit",option+1) == 0)
521 {
522 char
523 *p;
524
525 double
526 value;
527
cristybb503372010-05-27 20:51:26 +0000528 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000529 resource;
530
531 if (*option == '+')
532 break;
533 i++;
cristybb503372010-05-27 20:51:26 +0000534 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000535 ThrowStreamException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000536 resource=ParseCommandOption(MagickResourceOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +0000537 argv[i]);
538 if (resource < 0)
539 ThrowStreamException(OptionError,"UnrecognizedResourceType",
540 argv[i]);
541 i++;
cristybb503372010-05-27 20:51:26 +0000542 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000543 ThrowStreamException(OptionError,"MissingArgument",option);
cristydbdd0e32011-11-04 23:29:40 +0000544 value=StringToDouble(argv[i],&p);
cristyda16f162011-02-19 23:52:17 +0000545 (void) value;
cristy3ed852e2009-09-05 21:47:34 +0000546 if ((p == argv[i]) && (LocaleCompare("unlimited",argv[i]) != 0))
547 ThrowStreamInvalidArgumentException(option,argv[i]);
548 break;
549 }
550 if (LocaleCompare("list",option+1) == 0)
551 {
cristybb503372010-05-27 20:51:26 +0000552 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000553 list;
554
555 if (*option == '+')
556 break;
557 i++;
cristybb503372010-05-27 20:51:26 +0000558 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000559 ThrowStreamException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000560 list=ParseCommandOption(MagickListOptions,MagickFalse,argv[i]);
cristy3ed852e2009-09-05 21:47:34 +0000561 if (list < 0)
562 ThrowStreamException(OptionError,"UnrecognizedListType",argv[i]);
cristyaeb2cbc2010-05-07 13:28:58 +0000563 status=MogrifyImageInfo(image_info,(int) (i-j+1),(const char **)
cristy3ed852e2009-09-05 21:47:34 +0000564 argv+j,exception);
565 DestroyStream();
cristy32ce2392014-09-24 19:08:53 +0000566 return(status == 0 ? MagickTrue : MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +0000567 }
568 if (LocaleCompare("log",option+1) == 0)
569 {
570 if (*option == '+')
571 break;
572 i++;
cristybb503372010-05-27 20:51:26 +0000573 if ((i == (ssize_t) argc) || (strchr(argv[i],'%') == (char *) NULL))
cristy3ed852e2009-09-05 21:47:34 +0000574 ThrowStreamException(OptionError,"MissingArgument",option);
575 break;
576 }
577 ThrowStreamException(OptionError,"UnrecognizedOption",option)
578 }
579 case 'm':
580 {
581 if (LocaleCompare("map",option+1) == 0)
582 {
cristy151b66d2015-04-15 10:50:31 +0000583 (void) CopyMagickString(argv[i]+1,"san",MagickPathExtent);
cristy3ed852e2009-09-05 21:47:34 +0000584 if (*option == '+')
585 break;
586 i++;
587 SetStreamInfoMap(stream_info,argv[i]);
588 break;
589 }
590 if (LocaleCompare("monitor",option+1) == 0)
591 break;
592 ThrowStreamException(OptionError,"UnrecognizedOption",option)
593 }
594 case 'q':
595 {
596 if (LocaleCompare("quantize",option+1) == 0)
597 {
cristybb503372010-05-27 20:51:26 +0000598 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000599 colorspace;
600
601 if (*option == '+')
602 break;
603 i++;
cristye81f5522014-05-07 01:25:59 +0000604 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000605 ThrowStreamException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000606 colorspace=ParseCommandOption(MagickColorspaceOptions,
cristy3ed852e2009-09-05 21:47:34 +0000607 MagickFalse,argv[i]);
608 if (colorspace < 0)
609 ThrowStreamException(OptionError,"UnrecognizedColorspace",
610 argv[i]);
611 break;
612 }
613 if (LocaleCompare("quiet",option+1) == 0)
614 break;
615 ThrowStreamException(OptionError,"UnrecognizedOption",option)
616 }
617 case 'r':
618 {
619 if (LocaleCompare("regard-warnings",option+1) == 0)
620 break;
621 if (LocaleNCompare("respect-parentheses",option+1,17) == 0)
622 {
623 respect_parenthesis=(*option == '-') ? MagickTrue : MagickFalse;
624 break;
625 }
626 ThrowStreamException(OptionError,"UnrecognizedOption",option)
627 }
628 case 's':
629 {
630 if (LocaleCompare("sampling-factor",option+1) == 0)
631 {
632 if (*option == '+')
633 break;
634 i++;
cristybb503372010-05-27 20:51:26 +0000635 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000636 ThrowStreamException(OptionError,"MissingArgument",option);
637 if (IsGeometry(argv[i]) == MagickFalse)
638 ThrowStreamInvalidArgumentException(option,argv[i]);
639 break;
640 }
641 if (LocaleCompare("seed",option+1) == 0)
642 {
643 if (*option == '+')
644 break;
645 i++;
cristye81f5522014-05-07 01:25:59 +0000646 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000647 ThrowStreamException(OptionError,"MissingArgument",option);
648 if (IsGeometry(argv[i]) == MagickFalse)
649 ThrowStreamInvalidArgumentException(option,argv[i]);
650 break;
651 }
652 if (LocaleCompare("set",option+1) == 0)
653 {
654 i++;
cristybb503372010-05-27 20:51:26 +0000655 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000656 ThrowStreamException(OptionError,"MissingArgument",option);
657 if (*option == '+')
658 break;
659 i++;
cristybb503372010-05-27 20:51:26 +0000660 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000661 ThrowStreamException(OptionError,"MissingArgument",option);
662 break;
663 }
664 if (LocaleCompare("size",option+1) == 0)
665 {
666 if (*option == '+')
667 break;
668 i++;
cristybb503372010-05-27 20:51:26 +0000669 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000670 ThrowStreamException(OptionError,"MissingArgument",option);
671 if (IsGeometry(argv[i]) == MagickFalse)
672 ThrowStreamInvalidArgumentException(option,argv[i]);
673 break;
674 }
675 if (LocaleCompare("storage-type",option+1) == 0)
676 {
cristybb503372010-05-27 20:51:26 +0000677 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000678 type;
679
680 if (*option == '+')
681 break;
682 i++;
cristye81f5522014-05-07 01:25:59 +0000683 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000684 ThrowStreamException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000685 type=ParseCommandOption(MagickStorageOptions,MagickFalse,argv[i]);
cristy3ed852e2009-09-05 21:47:34 +0000686 if (type < 0)
687 ThrowStreamException(OptionError,"UnrecognizedStorageType",
688 argv[i]);
689 SetStreamInfoStorageType(stream_info,(StorageType) type);
690 break;
691 }
cristyd9a29192010-10-16 16:49:53 +0000692 if (LocaleCompare("synchronize",option+1) == 0)
693 break;
cristy3ed852e2009-09-05 21:47:34 +0000694 ThrowStreamException(OptionError,"UnrecognizedOption",option)
695 }
696 case 't':
697 {
cristyd9a29192010-10-16 16:49:53 +0000698 if (LocaleCompare("taint",option+1) == 0)
699 break;
cristy3ed852e2009-09-05 21:47:34 +0000700 if (LocaleCompare("transparent-color",option+1) == 0)
701 {
702 if (*option == '+')
703 break;
704 i++;
cristye81f5522014-05-07 01:25:59 +0000705 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000706 ThrowStreamException(OptionError,"MissingArgument",option);
707 break;
708 }
709 ThrowStreamException(OptionError,"UnrecognizedOption",option)
710 }
711 case 'v':
712 {
713 if (LocaleCompare("verbose",option+1) == 0)
714 break;
715 if ((LocaleCompare("version",option+1) == 0) ||
716 (LocaleCompare("-version",option+1) == 0))
717 {
cristy4f7a6132012-12-23 00:35:19 +0000718 ListMagickVersion(stdout);
cristy3ed852e2009-09-05 21:47:34 +0000719 break;
720 }
721 if (LocaleCompare("virtual-pixel",option+1) == 0)
722 {
cristybb503372010-05-27 20:51:26 +0000723 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000724 method;
725
726 if (*option == '+')
727 break;
728 i++;
cristye81f5522014-05-07 01:25:59 +0000729 if (i == (ssize_t) argc)
cristy3ed852e2009-09-05 21:47:34 +0000730 ThrowStreamException(OptionError,"MissingArgument",option);
cristy042ee782011-04-22 18:48:30 +0000731 method=ParseCommandOption(MagickVirtualPixelOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +0000732 argv[i]);
733 if (method < 0)
cristy0696de12013-05-26 19:22:40 +0000734 ThrowStreamException(OptionError,"UnrecognizedVirtualPixelMethod",
735 argv[i]);
cristy3ed852e2009-09-05 21:47:34 +0000736 break;
737 }
738 ThrowStreamException(OptionError,"UnrecognizedOption",option)
739 }
740 case '?':
741 break;
742 default:
743 ThrowStreamException(OptionError,"UnrecognizedOption",option)
744 }
cristy042ee782011-04-22 18:48:30 +0000745 fire=(GetCommandOptionFlags(MagickCommandOptions,MagickFalse,option) &
746 FireOptionFlag) == 0 ? MagickFalse : MagickTrue;
cristy3ed852e2009-09-05 21:47:34 +0000747 if (fire != MagickFalse)
748 FireImageStack(MagickFalse,MagickTrue,MagickTrue);
749 }
750 if (k != 0)
751 ThrowStreamException(OptionError,"UnbalancedParenthesis",argv[i]);
cristybb503372010-05-27 20:51:26 +0000752 if (i-- != (ssize_t) (argc-1))
cristy3ed852e2009-09-05 21:47:34 +0000753 ThrowStreamException(OptionError,"MissingAnImageFilename",argv[i]);
754 if (image == (Image *) NULL)
755 ThrowStreamException(OptionError,"MissingAnImageFilename",argv[i]);
756 FinalizeImageSettings(image_info,image,MagickTrue);
cristy94f20072009-09-12 02:12:36 +0000757 if (image == (Image *) NULL)
758 ThrowStreamException(OptionError,"MissingAnImageFilename",argv[i]);
cristy3ed852e2009-09-05 21:47:34 +0000759 DestroyStream();
760 return(status != 0 ? MagickTrue : MagickFalse);
761}