blob: b6a9a7e3e01f9522bcfc4fe8f3a0282d861f774c [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% CCCC OOO N N SSSSS TTTTT IIIII TTTTT U U TTTTT EEEEE %
7% C O O NN N SS T I T U U T E %
8% C O O N N N ESSS T I T U U T EEE %
9% C O O N NN SS T I T U U T E %
10% CCCC OOO N N SSSSS T IIIII T UUU T EEEEE %
11% %
12% %
13% MagickCore Methods to Consitute an Image %
14% %
15% Software Design %
16% John Cristy %
17% October 1998 %
18% %
19% %
cristy1454be72011-12-19 01:52:48 +000020% Copyright 1999-2012 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%
37*/
38
39/*
40 Include declarations.
41*/
cristy4c08aed2011-07-01 19:47:50 +000042#include "MagickCore/studio.h"
43#include "MagickCore/blob.h"
44#include "MagickCore/blob-private.h"
45#include "MagickCore/exception.h"
46#include "MagickCore/exception-private.h"
47#include "MagickCore/cache.h"
48#include "MagickCore/client.h"
49#include "MagickCore/constitute.h"
cristy5ff4eaf2011-09-03 01:38:02 +000050#include "MagickCore/constitute-private.h"
cristy4c08aed2011-07-01 19:47:50 +000051#include "MagickCore/delegate.h"
52#include "MagickCore/geometry.h"
53#include "MagickCore/identify.h"
54#include "MagickCore/image-private.h"
55#include "MagickCore/list.h"
56#include "MagickCore/magick.h"
57#include "MagickCore/memory_.h"
58#include "MagickCore/monitor.h"
59#include "MagickCore/monitor-private.h"
60#include "MagickCore/option.h"
61#include "MagickCore/pixel.h"
62#include "MagickCore/pixel-accessor.h"
63#include "MagickCore/policy.h"
64#include "MagickCore/profile.h"
cristy7832dc22011-09-05 01:21:53 +000065#include "MagickCore/profile-private.h"
cristy4c08aed2011-07-01 19:47:50 +000066#include "MagickCore/property.h"
67#include "MagickCore/quantum.h"
68#include "MagickCore/resize.h"
69#include "MagickCore/resource_.h"
70#include "MagickCore/semaphore.h"
71#include "MagickCore/statistic.h"
72#include "MagickCore/stream.h"
73#include "MagickCore/string_.h"
74#include "MagickCore/string-private.h"
75#include "MagickCore/timer.h"
76#include "MagickCore/transform.h"
77#include "MagickCore/utility.h"
cristyd1dd6e42011-09-04 01:46:08 +000078#include "MagickCore/utility-private.h"
cristy3ed852e2009-09-05 21:47:34 +000079
80static SemaphoreInfo
81 *constitute_semaphore = (SemaphoreInfo *) NULL;
82
83/*
84%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
85% %
86% %
87% %
cristyf34a1452009-10-24 22:29:27 +000088+ C o n s t i t u t e C o m p o n e n t G e n e s i s %
89% %
90% %
91% %
92%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
93%
94% ConstituteComponentGenesis() instantiates the constitute component.
95%
96% The format of the ConstituteComponentGenesis method is:
97%
98% MagickBooleanType ConstituteComponentGenesis(void)
99%
100*/
cristy5ff4eaf2011-09-03 01:38:02 +0000101MagickPrivate MagickBooleanType ConstituteComponentGenesis(void)
cristyf34a1452009-10-24 22:29:27 +0000102{
cristy165b6092009-10-26 13:52:10 +0000103 AcquireSemaphoreInfo(&constitute_semaphore);
cristyf34a1452009-10-24 22:29:27 +0000104 return(MagickTrue);
105}
106
107/*
108%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
109% %
110% %
111% %
112+ C o n s t i t u t e C o m p o n e n t T e r m i n u s %
113% %
114% %
115% %
116%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
117%
118% ConstituteComponentTerminus() destroys the constitute component.
119%
120% The format of the ConstituteComponentTerminus method is:
121%
122% ConstituteComponentTerminus(void)
123%
124*/
cristy5ff4eaf2011-09-03 01:38:02 +0000125MagickPrivate void ConstituteComponentTerminus(void)
cristyf34a1452009-10-24 22:29:27 +0000126{
cristy18b17442009-10-25 18:36:48 +0000127 if (constitute_semaphore == (SemaphoreInfo *) NULL)
128 AcquireSemaphoreInfo(&constitute_semaphore);
129 DestroySemaphoreInfo(&constitute_semaphore);
cristyf34a1452009-10-24 22:29:27 +0000130}
131
132/*
133%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
134% %
135% %
136% %
cristy3ed852e2009-09-05 21:47:34 +0000137% C o n s t i t u t e I m a g e %
138% %
139% %
140% %
141%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
142%
143% ConstituteImage() returns an image from the pixel data you supply.
144% The pixel data must be in scanline order top-to-bottom. The data can be
145% char, short int, int, float, or double. Float and double require the
146% pixels to be normalized [0..1], otherwise [0..QuantumRange]. For example, to
147% create a 640x480 image from unsigned red-green-blue character data, use:
148%
149% image = ConstituteImage(640,480,"RGB",CharPixel,pixels,&exception);
150%
151% The format of the ConstituteImage method is:
152%
cristy0758f9e2010-05-28 01:44:10 +0000153% Image *ConstituteImage(const size_t columns,const size_t rows,
154% const char *map,const StorageType storage,const void *pixels,
155% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000156%
157% A description of each parameter follows:
158%
159% o columns: width in pixels of the image.
160%
161% o rows: height in pixels of the image.
162%
163% o map: This string reflects the expected ordering of the pixel array.
164% It can be any combination or order of R = red, G = green, B = blue,
165% A = alpha (0 is transparent), O = opacity (0 is opaque), C = cyan,
166% Y = yellow, M = magenta, K = black, I = intensity (for grayscale),
167% P = pad.
168%
169% o storage: Define the data type of the pixels. Float and double types are
170% expected to be normalized [0..1] otherwise [0..QuantumRange]. Choose
171% from these types: CharPixel, DoublePixel, FloatPixel, IntegerPixel,
172% LongPixel, QuantumPixel, or ShortPixel.
173%
174% o pixels: This array of values contain the pixel components as defined by
175% map and type. You must preallocate this array where the expected
176% length varies depending on the values of width, height, map, and type.
177%
178% o exception: return any errors or warnings in this structure.
179%
180*/
cristybb503372010-05-27 20:51:26 +0000181MagickExport Image *ConstituteImage(const size_t columns,
182 const size_t rows,const char *map,const StorageType storage,
cristy3ed852e2009-09-05 21:47:34 +0000183 const void *pixels,ExceptionInfo *exception)
184{
185 Image
186 *image;
187
188 MagickBooleanType
189 status;
190
191 /*
192 Allocate image structure.
193 */
194 assert(map != (const char *) NULL);
195 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",map);
196 assert(pixels != (void *) NULL);
197 assert(exception != (ExceptionInfo *) NULL);
198 assert(exception->signature == MagickSignature);
cristy9950d572011-10-01 18:22:35 +0000199 image=AcquireImage((ImageInfo *) NULL,exception);
cristy3ed852e2009-09-05 21:47:34 +0000200 if (image == (Image *) NULL)
201 return((Image *) NULL);
202 if ((columns == 0) || (rows == 0))
203 ThrowImageException(OptionError,"NonZeroWidthAndHeightRequired");
204 image->columns=columns;
205 image->rows=rows;
cristyea1a8aa2011-10-20 13:24:06 +0000206 (void) SetImageBackgroundColor(image,exception);
cristy018f07f2011-09-04 21:15:19 +0000207 status=ImportImagePixels(image,0,0,columns,rows,map,storage,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +0000208 if (status == MagickFalse)
cristy018f07f2011-09-04 21:15:19 +0000209 image=DestroyImage(image);
cristy3ed852e2009-09-05 21:47:34 +0000210 return(image);
211}
212
213/*
214%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
215% %
216% %
217% %
cristy3ed852e2009-09-05 21:47:34 +0000218% P i n g I m a g e %
219% %
220% %
221% %
222%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
223%
224% PingImage() returns all the properties of an image or image sequence
225% except for the pixels. It is much faster and consumes far less memory
226% than ReadImage(). On failure, a NULL image is returned and exception
227% describes the reason for the failure.
228%
229% The format of the PingImage method is:
230%
231% Image *PingImage(const ImageInfo *image_info,ExceptionInfo *exception)
232%
233% A description of each parameter follows:
234%
235% o image_info: Ping the image defined by the file or filename members of
236% this structure.
237%
238% o exception: return any errors or warnings in this structure.
239%
240*/
241
242#if defined(__cplusplus) || defined(c_plusplus)
243extern "C" {
244#endif
245
246static size_t PingStream(const Image *magick_unused(image),
247 const void *magick_unused(pixels),const size_t columns)
248{
249 return(columns);
250}
251
252#if defined(__cplusplus) || defined(c_plusplus)
253}
254#endif
255
256MagickExport Image *PingImage(const ImageInfo *image_info,
257 ExceptionInfo *exception)
258{
259 Image
260 *image;
261
262 ImageInfo
263 *ping_info;
264
265 assert(image_info != (ImageInfo *) NULL);
266 assert(image_info->signature == MagickSignature);
267 if (image_info->debug != MagickFalse)
268 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
269 image_info->filename);
270 assert(exception != (ExceptionInfo *) NULL);
271 ping_info=CloneImageInfo(image_info);
272 ping_info->ping=MagickTrue;
273 image=ReadStream(ping_info,&PingStream,exception);
274 if (image != (Image *) NULL)
275 {
276 ResetTimer(&image->timer);
277 if (ping_info->verbose != MagickFalse)
cristya4037272011-08-28 15:11:39 +0000278 (void) IdentifyImage(image,stdout,MagickFalse,exception);
cristy3ed852e2009-09-05 21:47:34 +0000279 }
280 ping_info=DestroyImageInfo(ping_info);
281 return(image);
282}
283
284/*
285%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
286% %
287% %
288% %
289% P i n g I m a g e s %
290% %
291% %
292% %
293%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
294%
295% PingImages() pings one or more images and returns them as an image list.
296%
297% The format of the PingImage method is:
298%
299% Image *PingImages(const ImageInfo *image_info,ExceptionInfo *exception)
300%
301% A description of each parameter follows:
302%
303% o image_info: the image info.
304%
305% o exception: return any errors or warnings in this structure.
306%
307*/
308MagickExport Image *PingImages(const ImageInfo *image_info,
309 ExceptionInfo *exception)
310{
311 char
312 filename[MaxTextExtent];
313
314 Image
315 *image,
316 *images;
317
318 ImageInfo
319 *read_info;
320
321 /*
322 Ping image list from a file.
323 */
324 assert(image_info != (ImageInfo *) NULL);
325 assert(image_info->signature == MagickSignature);
326 if (image_info->debug != MagickFalse)
327 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
328 image_info->filename);
329 assert(exception != (ExceptionInfo *) NULL);
330 (void) InterpretImageFilename(image_info,(Image *) NULL,image_info->filename,
cristy6fccee12011-10-20 18:43:18 +0000331 (int) image_info->scene,filename,exception);
cristy3ed852e2009-09-05 21:47:34 +0000332 if (LocaleCompare(filename,image_info->filename) != 0)
333 {
334 ExceptionInfo
335 *sans;
336
cristybb503372010-05-27 20:51:26 +0000337 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000338 extent,
339 scene;
340
341 /*
342 Images of the form image-%d.png[1-5].
343 */
344 read_info=CloneImageInfo(image_info);
345 sans=AcquireExceptionInfo();
cristyd965a422010-03-03 17:47:35 +0000346 (void) SetImageInfo(read_info,0,sans);
cristy3ed852e2009-09-05 21:47:34 +0000347 sans=DestroyExceptionInfo(sans);
348 (void) CopyMagickString(filename,read_info->filename,MaxTextExtent);
349 images=NewImageList();
cristybb503372010-05-27 20:51:26 +0000350 extent=(ssize_t) (read_info->scene+read_info->number_scenes);
351 for (scene=(ssize_t) read_info->scene; scene < (ssize_t) extent; scene++)
cristy3ed852e2009-09-05 21:47:34 +0000352 {
353 (void) InterpretImageFilename(image_info,(Image *) NULL,filename,(int)
cristy6fccee12011-10-20 18:43:18 +0000354 scene,read_info->filename,exception);
cristy3ed852e2009-09-05 21:47:34 +0000355 image=PingImage(read_info,exception);
356 if (image == (Image *) NULL)
357 continue;
358 AppendImageToList(&images,image);
359 }
360 read_info=DestroyImageInfo(read_info);
361 return(images);
362 }
363 return(PingImage(image_info,exception));
364}
365
366/*
367%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
368% %
369% %
370% %
371% R e a d I m a g e %
372% %
373% %
374% %
375%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
376%
377% ReadImage() reads an image or image sequence from a file or file handle.
378% The method returns a NULL if there is a memory shortage or if the image
379% cannot be read. On failure, a NULL image is returned and exception
380% describes the reason for the failure.
381%
382% The format of the ReadImage method is:
383%
384% Image *ReadImage(const ImageInfo *image_info,ExceptionInfo *exception)
385%
386% A description of each parameter follows:
387%
388% o image_info: Read the image defined by the file or filename members of
389% this structure.
390%
391% o exception: return any errors or warnings in this structure.
392%
393*/
394MagickExport Image *ReadImage(const ImageInfo *image_info,
395 ExceptionInfo *exception)
396{
397 char
398 filename[MaxTextExtent],
399 magick[MaxTextExtent],
400 magick_filename[MaxTextExtent];
401
402 const char
403 *value;
404
405 const DelegateInfo
406 *delegate_info;
407
408 const MagickInfo
409 *magick_info;
410
411 ExceptionInfo
412 *sans_exception;
413
414 GeometryInfo
415 geometry_info;
416
417 Image
418 *image,
419 *next;
420
421 ImageInfo
422 *read_info;
423
424 MagickStatusType
425 flags,
426 thread_support;
427
428 PolicyDomain
429 domain;
430
431 PolicyRights
432 rights;
433
434 /*
435 Determine image type from filename prefix or suffix (e.g. image.jpg).
436 */
437 assert(image_info != (ImageInfo *) NULL);
438 assert(image_info->signature == MagickSignature);
439 assert(image_info->filename != (char *) NULL);
440 if (image_info->debug != MagickFalse)
441 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
442 image_info->filename);
443 assert(exception != (ExceptionInfo *) NULL);
444 read_info=CloneImageInfo(image_info);
445 (void) CopyMagickString(magick_filename,read_info->filename,MaxTextExtent);
cristyd965a422010-03-03 17:47:35 +0000446 (void) SetImageInfo(read_info,0,exception);
cristy3ed852e2009-09-05 21:47:34 +0000447 (void) CopyMagickString(filename,read_info->filename,MaxTextExtent);
448 (void) CopyMagickString(magick,read_info->magick,MaxTextExtent);
449 domain=CoderPolicyDomain;
450 rights=ReadPolicyRights;
451 if (IsRightsAuthorized(domain,rights,read_info->magick) == MagickFalse)
452 {
cristya9197f62010-01-12 02:23:34 +0000453 errno=EPERM;
cristy3ed852e2009-09-05 21:47:34 +0000454 (void) ThrowMagickException(exception,GetMagickModule(),PolicyError,
455 "NotAuthorized","`%s'",read_info->filename);
456 return((Image *) NULL);
457 }
458 /*
459 Call appropriate image reader based on image type.
460 */
461 sans_exception=AcquireExceptionInfo();
462 magick_info=GetMagickInfo(read_info->magick,sans_exception);
463 sans_exception=DestroyExceptionInfo(sans_exception);
464 if (magick_info != (const MagickInfo *) NULL)
465 {
466 if (GetMagickEndianSupport(magick_info) == MagickFalse)
467 read_info->endian=UndefinedEndian;
468 else
469 if ((image_info->endian == UndefinedEndian) &&
470 (GetMagickRawSupport(magick_info) != MagickFalse))
471 {
cristybb503372010-05-27 20:51:26 +0000472 size_t
cristy3ed852e2009-09-05 21:47:34 +0000473 lsb_first;
474
475 lsb_first=1;
476 read_info->endian=(*(char *) &lsb_first) == 1 ? LSBEndian :
477 MSBEndian;
478 }
479 }
480 if ((magick_info != (const MagickInfo *) NULL) &&
481 (GetMagickSeekableStream(magick_info) != MagickFalse))
482 {
483 MagickBooleanType
484 status;
485
cristy9950d572011-10-01 18:22:35 +0000486 image=AcquireImage(read_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000487 (void) CopyMagickString(image->filename,read_info->filename,
488 MaxTextExtent);
489 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
490 if (status == MagickFalse)
491 {
492 read_info=DestroyImageInfo(read_info);
493 image=DestroyImage(image);
494 return((Image *) NULL);
495 }
496 if (IsBlobSeekable(image) == MagickFalse)
497 {
498 /*
499 Coder requires a seekable stream.
500 */
501 *read_info->filename='\0';
502 status=ImageToFile(image,read_info->filename,exception);
503 if (status == MagickFalse)
504 {
505 (void) CloseBlob(image);
506 read_info=DestroyImageInfo(read_info);
507 image=DestroyImage(image);
508 return((Image *) NULL);
509 }
510 read_info->temporary=MagickTrue;
511 }
512 (void) CloseBlob(image);
513 image=DestroyImage(image);
514 }
515 image=NewImageList();
cristy4e1dff62009-10-25 20:36:03 +0000516 if (constitute_semaphore == (SemaphoreInfo *) NULL)
517 AcquireSemaphoreInfo(&constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000518 if ((magick_info != (const MagickInfo *) NULL) &&
519 (GetImageDecoder(magick_info) != (DecodeImageHandler *) NULL))
520 {
521 thread_support=GetMagickThreadSupport(magick_info);
522 if ((thread_support & DecoderThreadSupport) == 0)
cristyf84a1932010-01-03 18:00:18 +0000523 LockSemaphoreInfo(constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000524 image=GetImageDecoder(magick_info)(read_info,exception);
525 if ((thread_support & DecoderThreadSupport) == 0)
cristyf84a1932010-01-03 18:00:18 +0000526 UnlockSemaphoreInfo(constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000527 }
528 else
529 {
530 delegate_info=GetDelegateInfo(read_info->magick,(char *) NULL,exception);
531 if (delegate_info == (const DelegateInfo *) NULL)
532 {
cristy3a7b2b82010-04-28 22:14:19 +0000533 (void) ThrowMagickException(exception,GetMagickModule(),
534 MissingDelegateError,"NoDecodeDelegateForThisImageFormat","`%s'",
535 read_info->filename);
cristy3ed852e2009-09-05 21:47:34 +0000536 if (read_info->temporary != MagickFalse)
537 (void) RelinquishUniqueFileResource(read_info->filename);
538 read_info=DestroyImageInfo(read_info);
539 return((Image *) NULL);
540 }
541 /*
542 Let our decoding delegate process the image.
543 */
cristy9950d572011-10-01 18:22:35 +0000544 image=AcquireImage(read_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000545 if (image == (Image *) NULL)
546 {
547 read_info=DestroyImageInfo(read_info);
548 return((Image *) NULL);
549 }
550 (void) CopyMagickString(image->filename,read_info->filename,
551 MaxTextExtent);
552 *read_info->filename='\0';
553 if (GetDelegateThreadSupport(delegate_info) == MagickFalse)
cristyf84a1932010-01-03 18:00:18 +0000554 LockSemaphoreInfo(constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000555 (void) InvokeDelegate(read_info,image,read_info->magick,(char *) NULL,
556 exception);
557 if (GetDelegateThreadSupport(delegate_info) == MagickFalse)
cristyf84a1932010-01-03 18:00:18 +0000558 UnlockSemaphoreInfo(constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000559 image=DestroyImageList(image);
560 read_info->temporary=MagickTrue;
cristyd965a422010-03-03 17:47:35 +0000561 (void) SetImageInfo(read_info,0,exception);
cristy3ed852e2009-09-05 21:47:34 +0000562 magick_info=GetMagickInfo(read_info->magick,exception);
563 if ((magick_info == (const MagickInfo *) NULL) ||
564 (GetImageDecoder(magick_info) == (DecodeImageHandler *) NULL))
565 {
566 if (IsPathAccessible(read_info->filename) != MagickFalse)
567 (void) ThrowMagickException(exception,GetMagickModule(),
568 MissingDelegateError,"NoDecodeDelegateForThisImageFormat","`%s'",
569 read_info->filename);
570 else
571 ThrowFileException(exception,FileOpenError,"UnableToOpenFile",
572 read_info->filename);
573 read_info=DestroyImageInfo(read_info);
574 return((Image *) NULL);
575 }
576 thread_support=GetMagickThreadSupport(magick_info);
577 if ((thread_support & DecoderThreadSupport) == 0)
cristyf84a1932010-01-03 18:00:18 +0000578 LockSemaphoreInfo(constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000579 image=(Image *) (GetImageDecoder(magick_info))(read_info,exception);
580 if ((thread_support & DecoderThreadSupport) == 0)
cristyf84a1932010-01-03 18:00:18 +0000581 UnlockSemaphoreInfo(constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000582 }
583 if (read_info->temporary != MagickFalse)
584 {
585 (void) RelinquishUniqueFileResource(read_info->filename);
586 read_info->temporary=MagickFalse;
587 if (image != (Image *) NULL)
588 (void) CopyMagickString(image->filename,filename,MaxTextExtent);
589 }
590 if (image == (Image *) NULL)
591 {
592 read_info=DestroyImageInfo(read_info);
593 return(image);
594 }
595 if (exception->severity >= ErrorException)
596 (void) LogMagickEvent(ExceptionEvent,GetMagickModule(),
597 "Coder (%s) generated an image despite an error (%d), "
598 "notify the developers",image->magick,exception->severity);
599 if (IsBlobTemporary(image) != MagickFalse)
600 (void) RelinquishUniqueFileResource(read_info->filename);
601 if ((GetNextImageInList(image) != (Image *) NULL) &&
602 (IsSceneGeometry(read_info->scenes,MagickFalse) != MagickFalse))
603 {
604 Image
605 *clones;
606
607 clones=CloneImages(image,read_info->scenes,exception);
608 if (clones == (Image *) NULL)
609 (void) ThrowMagickException(exception,GetMagickModule(),OptionError,
610 "SubimageSpecificationReturnsNoImages","`%s'",read_info->filename);
611 else
612 {
613 image=DestroyImageList(image);
614 image=GetFirstImageInList(clones);
615 }
616 }
617 if (GetBlobError(image) != MagickFalse)
618 {
619 ThrowFileException(exception,FileOpenError,
620 "AnErrorHasOccurredReadingFromFile",read_info->filename);
621 image=DestroyImageList(image);
622 read_info=DestroyImageInfo(read_info);
623 return((Image *) NULL);
624 }
625 for (next=image; next != (Image *) NULL; next=GetNextImageInList(next))
626 {
627 char
cristyad126fb2011-03-12 14:59:23 +0000628 magick_path[MaxTextExtent],
cristy7734b602010-09-13 18:32:30 +0000629 *property,
cristy3ed852e2009-09-05 21:47:34 +0000630 timestamp[MaxTextExtent];
631
cristy05e38ec2010-08-20 15:20:12 +0000632 const char
633 *option;
634
cristy3ed852e2009-09-05 21:47:34 +0000635 const StringInfo
636 *profile;
637
638 next->taint=MagickFalse;
cristyad126fb2011-03-12 14:59:23 +0000639 GetPathComponent(magick_filename,MagickPath,magick_path);
640 if (*magick_path == '\0')
cristy3ed852e2009-09-05 21:47:34 +0000641 (void) CopyMagickString(next->magick,magick,MaxTextExtent);
642 (void) CopyMagickString(next->magick_filename,magick_filename,
643 MaxTextExtent);
644 if (IsBlobTemporary(image) != MagickFalse)
645 (void) CopyMagickString(next->filename,filename,MaxTextExtent);
cristyad126fb2011-03-12 14:59:23 +0000646 if (next->magick_columns == 0)
647 next->magick_columns=next->columns;
648 if (next->magick_rows == 0)
649 next->magick_rows=next->rows;
cristyd15e6592011-10-15 00:13:06 +0000650 value=GetImageProperty(next,"tiff:Orientation",exception);
cristy3ed852e2009-09-05 21:47:34 +0000651 if (value == (char *) NULL)
cristyd15e6592011-10-15 00:13:06 +0000652 value=GetImageProperty(next,"exif:Orientation",exception);
cristy3ed852e2009-09-05 21:47:34 +0000653 if (value != (char *) NULL)
654 {
cristyf2f27272009-12-17 14:48:46 +0000655 next->orientation=(OrientationType) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +0000656 (void) DeleteImageProperty(next,"tiff:Orientation");
657 (void) DeleteImageProperty(next,"exif:Orientation");
658 }
cristyd15e6592011-10-15 00:13:06 +0000659 value=GetImageProperty(next,"exif:XResolution",exception);
cristy3ed852e2009-09-05 21:47:34 +0000660 if (value != (char *) NULL)
661 {
cristy2a11bef2011-10-28 18:33:11 +0000662 geometry_info.rho=next->resolution.x;
cristy3ed852e2009-09-05 21:47:34 +0000663 geometry_info.sigma=1.0;
664 flags=ParseGeometry(value,&geometry_info);
665 if (geometry_info.sigma != 0)
cristy2a11bef2011-10-28 18:33:11 +0000666 next->resolution.x=geometry_info.rho/geometry_info.sigma;
cristy3ed852e2009-09-05 21:47:34 +0000667 (void) DeleteImageProperty(next,"exif:XResolution");
cristy3ed852e2009-09-05 21:47:34 +0000668 }
cristyd15e6592011-10-15 00:13:06 +0000669 value=GetImageProperty(next,"exif:YResolution",exception);
cristy3ed852e2009-09-05 21:47:34 +0000670 if (value != (char *) NULL)
671 {
cristy2a11bef2011-10-28 18:33:11 +0000672 geometry_info.rho=next->resolution.y;
cristy3ed852e2009-09-05 21:47:34 +0000673 geometry_info.sigma=1.0;
674 flags=ParseGeometry(value,&geometry_info);
675 if (geometry_info.sigma != 0)
cristy2a11bef2011-10-28 18:33:11 +0000676 next->resolution.y=geometry_info.rho/geometry_info.sigma;
cristy3ed852e2009-09-05 21:47:34 +0000677 (void) DeleteImageProperty(next,"exif:YResolution");
cristy3ed852e2009-09-05 21:47:34 +0000678 }
cristyd15e6592011-10-15 00:13:06 +0000679 value=GetImageProperty(next,"tiff:ResolutionUnit",exception);
cristy3ed852e2009-09-05 21:47:34 +0000680 if (value == (char *) NULL)
cristyd15e6592011-10-15 00:13:06 +0000681 value=GetImageProperty(next,"exif:ResolutionUnit",exception);
cristy3ed852e2009-09-05 21:47:34 +0000682 if (value != (char *) NULL)
683 {
cristyf2f27272009-12-17 14:48:46 +0000684 next->units=(ResolutionType) (StringToLong(value)-1);
cristy3ed852e2009-09-05 21:47:34 +0000685 (void) DeleteImageProperty(next,"exif:ResolutionUnit");
686 (void) DeleteImageProperty(next,"tiff:ResolutionUnit");
687 }
688 if (next->page.width == 0)
689 next->page.width=next->columns;
690 if (next->page.height == 0)
691 next->page.height=next->rows;
cristy7734b602010-09-13 18:32:30 +0000692 option=GetImageOption(read_info,"caption");
693 if (option != (const char *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000694 {
cristy018f07f2011-09-04 21:15:19 +0000695 property=InterpretImageProperties(read_info,next,option,exception);
cristyd15e6592011-10-15 00:13:06 +0000696 (void) SetImageProperty(next,"caption",property,exception);
cristy7734b602010-09-13 18:32:30 +0000697 property=DestroyString(property);
698 }
699 option=GetImageOption(read_info,"comment");
700 if (option != (const char *) NULL)
701 {
cristy018f07f2011-09-04 21:15:19 +0000702 property=InterpretImageProperties(read_info,next,option,exception);
cristyd15e6592011-10-15 00:13:06 +0000703 (void) SetImageProperty(next,"comment",property,exception);
cristy7734b602010-09-13 18:32:30 +0000704 property=DestroyString(property);
705 }
706 option=GetImageOption(read_info,"label");
707 if (option != (const char *) NULL)
708 {
cristy018f07f2011-09-04 21:15:19 +0000709 property=InterpretImageProperties(read_info,next,option,exception);
cristyd15e6592011-10-15 00:13:06 +0000710 (void) SetImageProperty(next,"label",property,exception);
cristy7734b602010-09-13 18:32:30 +0000711 property=DestroyString(property);
cristy3ed852e2009-09-05 21:47:34 +0000712 }
713 if (LocaleCompare(next->magick,"TEXT") == 0)
714 (void) ParseAbsoluteGeometry("0x0+0+0",&next->page);
715 if ((read_info->extract != (char *) NULL) &&
716 (read_info->stream == (StreamHandler) NULL))
717 {
718 RectangleInfo
719 geometry;
720
721 flags=ParseAbsoluteGeometry(read_info->extract,&geometry);
722 if ((next->columns != geometry.width) ||
723 (next->rows != geometry.height))
724 {
725 if (((flags & XValue) != 0) || ((flags & YValue) != 0))
726 {
727 Image
728 *crop_image;
729
730 crop_image=CropImage(next,&geometry,exception);
731 if (crop_image != (Image *) NULL)
732 ReplaceImageInList(&next,crop_image);
733 }
734 else
735 if (((flags & WidthValue) != 0) || ((flags & HeightValue) != 0))
736 {
737 Image
738 *size_image;
739
740 flags=ParseRegionGeometry(next,read_info->extract,&geometry,
741 exception);
742 size_image=ResizeImage(next,geometry.width,geometry.height,
743 next->filter,next->blur,exception);
744 if (size_image != (Image *) NULL)
745 ReplaceImageInList(&next,size_image);
746 }
747 }
748 }
749 profile=GetImageProfile(next,"icc");
750 if (profile == (const StringInfo *) NULL)
751 profile=GetImageProfile(next,"icm");
cristy3ed852e2009-09-05 21:47:34 +0000752 profile=GetImageProfile(next,"iptc");
753 if (profile == (const StringInfo *) NULL)
754 profile=GetImageProfile(next,"8bim");
cristy3ed852e2009-09-05 21:47:34 +0000755 (void) FormatMagickTime(GetBlobProperties(next)->st_mtime,MaxTextExtent,
756 timestamp);
cristyd15e6592011-10-15 00:13:06 +0000757 (void) SetImageProperty(next,"date:modify",timestamp,exception);
cristy3ed852e2009-09-05 21:47:34 +0000758 (void) FormatMagickTime(GetBlobProperties(next)->st_ctime,MaxTextExtent,
759 timestamp);
cristyd15e6592011-10-15 00:13:06 +0000760 (void) SetImageProperty(next,"date:create",timestamp,exception);
cristy74f82a62010-08-19 22:24:53 +0000761 option=GetImageOption(image_info,"delay");
762 if (option != (const char *) NULL)
763 {
764 GeometryInfo
765 geometry_info;
766
767 flags=ParseGeometry(option,&geometry_info);
768 if ((flags & GreaterValue) != 0)
769 {
cristy7734b602010-09-13 18:32:30 +0000770 if (next->delay > (size_t) floor(geometry_info.rho+0.5))
771 next->delay=(size_t) floor(geometry_info.rho+0.5);
cristy74f82a62010-08-19 22:24:53 +0000772 }
773 else
774 if ((flags & LessValue) != 0)
775 {
cristy7734b602010-09-13 18:32:30 +0000776 if (next->delay < (size_t) floor(geometry_info.rho+0.5))
777 next->ticks_per_second=(ssize_t) floor(geometry_info.sigma+0.5);
cristy74f82a62010-08-19 22:24:53 +0000778 }
779 else
cristy7734b602010-09-13 18:32:30 +0000780 next->delay=(size_t) floor(geometry_info.rho+0.5);
cristy74f82a62010-08-19 22:24:53 +0000781 if ((flags & SigmaValue) != 0)
cristy7734b602010-09-13 18:32:30 +0000782 next->ticks_per_second=(ssize_t) floor(geometry_info.sigma+0.5);
cristy74f82a62010-08-19 22:24:53 +0000783 }
784 option=GetImageOption(image_info,"dispose");
785 if (option != (const char *) NULL)
cristy042ee782011-04-22 18:48:30 +0000786 next->dispose=(DisposeType) ParseCommandOption(MagickDisposeOptions,
cristy74f82a62010-08-19 22:24:53 +0000787 MagickFalse,option);
cristy3ed852e2009-09-05 21:47:34 +0000788 if (read_info->verbose != MagickFalse)
cristya4037272011-08-28 15:11:39 +0000789 (void) IdentifyImage(next,stderr,MagickFalse,exception);
cristy3ed852e2009-09-05 21:47:34 +0000790 image=next;
791 }
792 read_info=DestroyImageInfo(read_info);
793 return(GetFirstImageInList(image));
794}
795
796/*
797%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
798% %
799% %
800% %
801% R e a d I m a g e s %
802% %
803% %
804% %
805%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
806%
807% ReadImages() reads one or more images and returns them as an image list.
808%
809% The format of the ReadImage method is:
810%
811% Image *ReadImages(const ImageInfo *image_info,ExceptionInfo *exception)
812%
813% A description of each parameter follows:
814%
815% o image_info: the image info.
816%
817% o exception: return any errors or warnings in this structure.
818%
819*/
820MagickExport Image *ReadImages(const ImageInfo *image_info,
821 ExceptionInfo *exception)
822{
823 char
824 filename[MaxTextExtent];
825
826 Image
827 *image,
828 *images;
829
830 ImageInfo
831 *read_info;
832
833 /*
834 Read image list from a file.
835 */
836 assert(image_info != (ImageInfo *) NULL);
837 assert(image_info->signature == MagickSignature);
838 if (image_info->debug != MagickFalse)
839 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
840 image_info->filename);
841 assert(exception != (ExceptionInfo *) NULL);
842 (void) InterpretImageFilename(image_info,(Image *) NULL,image_info->filename,
cristy6fccee12011-10-20 18:43:18 +0000843 (int) image_info->scene,filename,exception);
cristy3ed852e2009-09-05 21:47:34 +0000844 if (LocaleCompare(filename,image_info->filename) != 0)
845 {
846 ExceptionInfo
847 *sans;
848
cristybb503372010-05-27 20:51:26 +0000849 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000850 extent,
851 scene;
852
853 /*
854 Images of the form image-%d.png[1-5].
855 */
856 read_info=CloneImageInfo(image_info);
857 sans=AcquireExceptionInfo();
cristyd965a422010-03-03 17:47:35 +0000858 (void) SetImageInfo(read_info,0,sans);
cristy3ed852e2009-09-05 21:47:34 +0000859 sans=DestroyExceptionInfo(sans);
cristyf95ba5f2011-07-02 00:35:48 +0000860 if (read_info->number_scenes == 0)
861 {
862 read_info=DestroyImageInfo(read_info);
863 return(ReadImage(image_info,exception));
864 }
cristyeb883912011-07-02 00:38:10 +0000865 (void) CopyMagickString(filename,read_info->filename,MaxTextExtent);
866 images=NewImageList();
cristybb503372010-05-27 20:51:26 +0000867 extent=(ssize_t) (read_info->scene+read_info->number_scenes);
868 for (scene=(ssize_t) read_info->scene; scene < (ssize_t) extent; scene++)
cristy3ed852e2009-09-05 21:47:34 +0000869 {
870 (void) InterpretImageFilename(image_info,(Image *) NULL,filename,(int)
cristy6fccee12011-10-20 18:43:18 +0000871 scene,read_info->filename,exception);
cristy3ed852e2009-09-05 21:47:34 +0000872 image=ReadImage(read_info,exception);
873 if (image == (Image *) NULL)
874 continue;
875 AppendImageToList(&images,image);
876 }
877 read_info=DestroyImageInfo(read_info);
878 return(images);
879 }
880 return(ReadImage(image_info,exception));
881}
882
883/*
884%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
885% %
886% %
887% %
888+ R e a d I n l i n e I m a g e %
889% %
890% %
891% %
892%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
893%
894% ReadInlineImage() reads a Base64-encoded inline image or image sequence.
895% The method returns a NULL if there is a memory shortage or if the image
896% cannot be read. On failure, a NULL image is returned and exception
897% describes the reason for the failure.
898%
899% The format of the ReadInlineImage method is:
900%
901% Image *ReadInlineImage(const ImageInfo *image_info,const char *content,
902% ExceptionInfo *exception)
903%
904% A description of each parameter follows:
905%
906% o image_info: the image info.
907%
908% o content: the image encoded in Base64.
909%
910% o exception: return any errors or warnings in this structure.
911%
912*/
913MagickExport Image *ReadInlineImage(const ImageInfo *image_info,
914 const char *content,ExceptionInfo *exception)
915{
916 Image
917 *image;
918
919 ImageInfo
920 *read_info;
921
922 unsigned char
923 *blob;
924
925 size_t
926 length;
927
928 register const char
929 *p;
930
cristyd5562a92010-06-05 13:43:49 +0000931 /*
932 Skip over header (e.g. data:image/gif;base64,).
933 */
cristy3ed852e2009-09-05 21:47:34 +0000934 image=NewImageList();
935 for (p=content; (*p != ',') && (*p != '\0'); p++) ;
936 if (*p == '\0')
937 ThrowReaderException(CorruptImageError,"CorruptImage");
938 p++;
939 length=0;
940 blob=Base64Decode(p,&length);
941 if (length == 0)
942 ThrowReaderException(CorruptImageError,"CorruptImage");
943 read_info=CloneImageInfo(image_info);
944 (void) SetImageInfoProgressMonitor(read_info,(MagickProgressMonitor) NULL,
945 (void *) NULL);
cristycc1fc8a2010-06-05 13:35:05 +0000946 *read_info->filename='\0';
947 *read_info->magick='\0';
cristy3ed852e2009-09-05 21:47:34 +0000948 image=BlobToImage(read_info,blob,length,exception);
949 blob=(unsigned char *) RelinquishMagickMemory(blob);
950 read_info=DestroyImageInfo(read_info);
951 return(image);
952}
953
954/*
955%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
956% %
957% %
958% %
959% W r i t e I m a g e %
960% %
961% %
962% %
963%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
964%
cristy96581e82011-02-01 01:10:11 +0000965% WriteImage() writes an image or an image sequence to a file or file handle.
966% If writing to a file is on disk, the name is defined by the filename member
967% of the image structure. WriteImage() returns MagickFalse is there is a
968% memory shortage or if the image cannot be written. Check the exception
969% member of image to determine the cause for any failure.
cristy3ed852e2009-09-05 21:47:34 +0000970%
971% The format of the WriteImage method is:
972%
cristy6f9e0d32011-08-28 16:32:09 +0000973% MagickBooleanType WriteImage(const ImageInfo *image_info,Image *image,
974% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000975%
976% A description of each parameter follows:
977%
978% o image_info: the image info.
979%
980% o image: the image.
981%
cristy6f9e0d32011-08-28 16:32:09 +0000982% o exception: return any errors or warnings in this structure.
983%
cristy3ed852e2009-09-05 21:47:34 +0000984*/
985MagickExport MagickBooleanType WriteImage(const ImageInfo *image_info,
cristy6f9e0d32011-08-28 16:32:09 +0000986 Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000987{
988 char
989 filename[MaxTextExtent];
990
cristy4c491342009-11-02 01:46:10 +0000991 const char
992 *option;
993
cristy3ed852e2009-09-05 21:47:34 +0000994 const DelegateInfo
995 *delegate_info;
996
997 const MagickInfo
998 *magick_info;
999
1000 ExceptionInfo
1001 *sans_exception;
1002
1003 ImageInfo
1004 *write_info;
1005
1006 MagickBooleanType
1007 status,
1008 temporary;
1009
1010 MagickStatusType
1011 thread_support;
1012
1013 PolicyDomain
1014 domain;
1015
1016 PolicyRights
1017 rights;
1018
1019 /*
1020 Determine image type from filename prefix or suffix (e.g. image.jpg).
1021 */
1022 assert(image_info != (ImageInfo *) NULL);
1023 assert(image_info->signature == MagickSignature);
1024 if (image->debug != MagickFalse)
1025 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1026 image_info->filename);
1027 assert(image != (Image *) NULL);
1028 assert(image->signature == MagickSignature);
cristy6f9e0d32011-08-28 16:32:09 +00001029 assert(exception != (ExceptionInfo *) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001030 sans_exception=AcquireExceptionInfo();
1031 write_info=CloneImageInfo(image_info);
1032 (void) CopyMagickString(write_info->filename,image->filename,MaxTextExtent);
1033 if (*write_info->magick == '\0')
1034 (void) CopyMagickString(write_info->magick,image->magick,MaxTextExtent);
cristyd965a422010-03-03 17:47:35 +00001035 (void) SetImageInfo(write_info,1,sans_exception);
cristy3ed852e2009-09-05 21:47:34 +00001036 (void) CopyMagickString(filename,image->filename,MaxTextExtent);
1037 (void) CopyMagickString(image->filename,write_info->filename,MaxTextExtent);
1038 domain=CoderPolicyDomain;
1039 rights=WritePolicyRights;
1040 if (IsRightsAuthorized(domain,rights,write_info->magick) == MagickFalse)
1041 {
1042 sans_exception=DestroyExceptionInfo(sans_exception);
cristya9197f62010-01-12 02:23:34 +00001043 errno=EPERM;
cristy3ed852e2009-09-05 21:47:34 +00001044 ThrowBinaryException(PolicyError,"NotAuthorized",filename);
1045 }
1046 magick_info=GetMagickInfo(write_info->magick,sans_exception);
1047 sans_exception=DestroyExceptionInfo(sans_exception);
1048 if (magick_info != (const MagickInfo *) NULL)
1049 {
1050 if (GetMagickEndianSupport(magick_info) == MagickFalse)
1051 image->endian=UndefinedEndian;
1052 else
1053 if ((image_info->endian == UndefinedEndian) &&
1054 (GetMagickRawSupport(magick_info) != MagickFalse))
1055 {
cristybb503372010-05-27 20:51:26 +00001056 size_t
cristy3ed852e2009-09-05 21:47:34 +00001057 lsb_first;
1058
1059 lsb_first=1;
1060 image->endian=(*(char *) &lsb_first) == 1 ? LSBEndian : MSBEndian;
1061 }
1062 }
1063 (void) SyncImageProfiles(image);
cristy4c491342009-11-02 01:46:10 +00001064 option=GetImageOption(image_info,"delegate:bimodal");
cristy91c09252011-02-14 00:00:33 +00001065 if ((option != (const char *) NULL) &&
cristy4c491342009-11-02 01:46:10 +00001066 (IsMagickTrue(option) != MagickFalse) &&
1067 (write_info->page == (char *) NULL) &&
cristy3ed852e2009-09-05 21:47:34 +00001068 (GetPreviousImageInList(image) == (Image *) NULL) &&
1069 (GetNextImageInList(image) == (Image *) NULL) &&
1070 (IsTaintImage(image) == MagickFalse))
1071 {
cristy6f9e0d32011-08-28 16:32:09 +00001072 delegate_info=GetDelegateInfo(image->magick,write_info->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +00001073 if ((delegate_info != (const DelegateInfo *) NULL) &&
1074 (GetDelegateMode(delegate_info) == 0) &&
1075 (IsPathAccessible(image->magick_filename) != MagickFalse))
1076 {
1077 /*
1078 Process image with bi-modal delegate.
1079 */
1080 (void) CopyMagickString(image->filename,image->magick_filename,
1081 MaxTextExtent);
1082 status=InvokeDelegate(write_info,image,image->magick,
cristy6f9e0d32011-08-28 16:32:09 +00001083 write_info->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +00001084 write_info=DestroyImageInfo(write_info);
1085 (void) CopyMagickString(image->filename,filename,MaxTextExtent);
1086 return(status);
1087 }
1088 }
1089 status=MagickFalse;
1090 temporary=MagickFalse;
1091 if ((magick_info != (const MagickInfo *) NULL) &&
1092 (GetMagickSeekableStream(magick_info) != MagickFalse))
1093 {
1094 char
1095 filename[MaxTextExtent];
1096
1097 (void) CopyMagickString(filename,image->filename,MaxTextExtent);
cristy6f9e0d32011-08-28 16:32:09 +00001098 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +00001099 (void) CopyMagickString(image->filename,filename,MaxTextExtent);
1100 if (status != MagickFalse)
1101 {
cristye92a6fd2010-02-04 01:36:45 +00001102 if (IsBlobSeekable(image) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001103 {
1104 /*
1105 A seekable stream is required by the encoder.
1106 */
cristy54439632010-07-15 00:43:34 +00001107 write_info->adjoin=MagickTrue;
cristy3ed852e2009-09-05 21:47:34 +00001108 (void) CopyMagickString(write_info->filename,image->filename,
1109 MaxTextExtent);
1110 (void) AcquireUniqueFilename(image->filename);
1111 temporary=MagickTrue;
1112 }
1113 (void) CloseBlob(image);
1114 }
1115 }
cristy4e1dff62009-10-25 20:36:03 +00001116 if (constitute_semaphore == (SemaphoreInfo *) NULL)
1117 AcquireSemaphoreInfo(&constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +00001118 if ((magick_info != (const MagickInfo *) NULL) &&
1119 (GetImageEncoder(magick_info) != (EncodeImageHandler *) NULL))
1120 {
1121 /*
1122 Call appropriate image writer based on image type.
1123 */
1124 thread_support=GetMagickThreadSupport(magick_info);
1125 if ((thread_support & EncoderThreadSupport) == 0)
cristyf84a1932010-01-03 18:00:18 +00001126 LockSemaphoreInfo(constitute_semaphore);
cristy1e178e72011-08-28 19:44:34 +00001127 status=GetImageEncoder(magick_info)(write_info,image,exception);
cristy3ed852e2009-09-05 21:47:34 +00001128 if ((thread_support & EncoderThreadSupport) == 0)
cristyf84a1932010-01-03 18:00:18 +00001129 UnlockSemaphoreInfo(constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +00001130 }
1131 else
1132 {
cristy6f9e0d32011-08-28 16:32:09 +00001133 delegate_info=GetDelegateInfo((char *) NULL,write_info->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +00001134 if (delegate_info != (DelegateInfo *) NULL)
1135 {
1136 /*
1137 Process the image with delegate.
1138 */
1139 *write_info->filename='\0';
1140 if (GetDelegateThreadSupport(delegate_info) == MagickFalse)
cristyf84a1932010-01-03 18:00:18 +00001141 LockSemaphoreInfo(constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +00001142 status=InvokeDelegate(write_info,image,(char *) NULL,
cristy6f9e0d32011-08-28 16:32:09 +00001143 write_info->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +00001144 if (GetDelegateThreadSupport(delegate_info) == MagickFalse)
cristyf84a1932010-01-03 18:00:18 +00001145 UnlockSemaphoreInfo(constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +00001146 (void) CopyMagickString(image->filename,filename,MaxTextExtent);
1147 }
1148 else
1149 {
1150 sans_exception=AcquireExceptionInfo();
1151 magick_info=GetMagickInfo(write_info->magick,sans_exception);
1152 sans_exception=DestroyExceptionInfo(sans_exception);
1153 if ((write_info->affirm == MagickFalse) &&
1154 (magick_info == (const MagickInfo *) NULL))
1155 {
1156 (void) CopyMagickString(write_info->magick,image->magick,
1157 MaxTextExtent);
cristy6f9e0d32011-08-28 16:32:09 +00001158 magick_info=GetMagickInfo(write_info->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +00001159 }
1160 if ((magick_info == (const MagickInfo *) NULL) ||
1161 (GetImageEncoder(magick_info) == (EncodeImageHandler *) NULL))
cristy1a8fced2010-03-15 18:05:43 +00001162 {
cristy91c09252011-02-14 00:00:33 +00001163 char
1164 extension[MaxTextExtent];
1165
1166 GetPathComponent(image->filename,ExtensionPath,extension);
1167 if (*extension != '\0')
cristy6f9e0d32011-08-28 16:32:09 +00001168 magick_info=GetMagickInfo(extension,exception);
cristy91c09252011-02-14 00:00:33 +00001169 else
cristy6f9e0d32011-08-28 16:32:09 +00001170 magick_info=GetMagickInfo(image->magick,exception);
cristy1a8fced2010-03-15 18:05:43 +00001171 (void) CopyMagickString(image->filename,filename,MaxTextExtent);
cristy924c8722010-03-15 17:50:24 +00001172 }
cristy1a8fced2010-03-15 18:05:43 +00001173 if ((magick_info == (const MagickInfo *) NULL) ||
1174 (GetImageEncoder(magick_info) == (EncodeImageHandler *) NULL))
cristy6f9e0d32011-08-28 16:32:09 +00001175 (void) ThrowMagickException(exception,GetMagickModule(),
cristy1a8fced2010-03-15 18:05:43 +00001176 MissingDelegateError,"NoEncodeDelegateForThisImageFormat","`%s'",
1177 image->filename);
cristy3ed852e2009-09-05 21:47:34 +00001178 else
1179 {
1180 /*
1181 Call appropriate image writer based on image type.
1182 */
1183 thread_support=GetMagickThreadSupport(magick_info);
1184 if ((thread_support & EncoderThreadSupport) == 0)
cristyf84a1932010-01-03 18:00:18 +00001185 LockSemaphoreInfo(constitute_semaphore);
cristy1e178e72011-08-28 19:44:34 +00001186 status=GetImageEncoder(magick_info)(write_info,image,exception);
cristy3ed852e2009-09-05 21:47:34 +00001187 if ((thread_support & EncoderThreadSupport) == 0)
cristyf84a1932010-01-03 18:00:18 +00001188 UnlockSemaphoreInfo(constitute_semaphore);
cristy3ed852e2009-09-05 21:47:34 +00001189 }
1190 }
1191 }
1192 if (GetBlobError(image) != MagickFalse)
cristy6f9e0d32011-08-28 16:32:09 +00001193 ThrowFileException(exception,FileOpenError,
cristy3ed852e2009-09-05 21:47:34 +00001194 "AnErrorHasOccurredWritingToFile",image->filename);
1195 if (temporary == MagickTrue)
1196 {
1197 /*
1198 Copy temporary image file to permanent.
1199 */
cristy6f9e0d32011-08-28 16:32:09 +00001200 status=OpenBlob(write_info,image,ReadBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +00001201 if (status != MagickFalse)
cristycd20d2b2012-01-31 16:02:29 +00001202 {
1203 (void) RelinquishUniqueFileResource(write_info->filename);
1204 status=ImageToFile(image,write_info->filename,exception);
1205 }
cristya8902942010-07-30 00:49:52 +00001206 (void) CloseBlob(image);
cristy3ed852e2009-09-05 21:47:34 +00001207 (void) RelinquishUniqueFileResource(image->filename);
1208 (void) CopyMagickString(image->filename,write_info->filename,
1209 MaxTextExtent);
cristy3ed852e2009-09-05 21:47:34 +00001210 }
1211 if ((LocaleCompare(write_info->magick,"info") != 0) &&
1212 (write_info->verbose != MagickFalse))
cristy6f9e0d32011-08-28 16:32:09 +00001213 (void) IdentifyImage(image,stdout,MagickFalse,exception);
cristy3ed852e2009-09-05 21:47:34 +00001214 write_info=DestroyImageInfo(write_info);
1215 return(status);
1216}
1217
1218/*
1219%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1220% %
1221% %
1222% %
1223% W r i t e I m a g e s %
1224% %
1225% %
1226% %
1227%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1228%
cristy96581e82011-02-01 01:10:11 +00001229% WriteImages() writes an image sequence into one or more files. While
1230% WriteImage() can write an image sequence, it is limited to writing
1231% the sequence into a single file using a format which supports multiple
1232% frames. WriteImages(), however, does not have this limitation, instead it
1233% generates multiple output files if necessary (or when requested). When
1234% ImageInfo's adjoin flag is set to MagickFalse, the file name is expected
1235% to include a printf-style formatting string for the frame number (e.g.
1236% "image%02d.png").
cristy3ed852e2009-09-05 21:47:34 +00001237%
1238% The format of the WriteImages method is:
1239%
1240% MagickBooleanType WriteImages(const ImageInfo *image_info,Image *images,
1241% const char *filename,ExceptionInfo *exception)
1242%
1243% A description of each parameter follows:
1244%
1245% o image_info: the image info.
1246%
1247% o images: the image list.
1248%
1249% o filename: the image filename.
1250%
1251% o exception: return any errors or warnings in this structure.
1252%
1253*/
1254MagickExport MagickBooleanType WriteImages(const ImageInfo *image_info,
1255 Image *images,const char *filename,ExceptionInfo *exception)
1256{
cristy36507e62010-02-11 00:26:48 +00001257#define WriteImageTag "Write/Image"
1258
cristy3ed852e2009-09-05 21:47:34 +00001259 BlobInfo
1260 *blob;
1261
1262 ExceptionInfo
1263 *sans_exception;
1264
1265 ImageInfo
1266 *write_info;
1267
cristy36507e62010-02-11 00:26:48 +00001268 MagickBooleanType
1269 proceed;
1270
1271 MagickOffsetType
1272 i;
1273
1274 MagickProgressMonitor
1275 progress_monitor;
1276
1277 MagickSizeType
1278 number_images;
1279
cristy3ed852e2009-09-05 21:47:34 +00001280 MagickStatusType
1281 status;
1282
1283 register Image
1284 *p;
1285
1286 assert(image_info != (const ImageInfo *) NULL);
1287 assert(image_info->signature == MagickSignature);
1288 assert(images != (Image *) NULL);
1289 assert(images->signature == MagickSignature);
1290 if (images->debug != MagickFalse)
1291 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",images->filename);
1292 assert(exception != (ExceptionInfo *) NULL);
1293 write_info=CloneImageInfo(image_info);
1294 images=GetFirstImageInList(images);
1295 blob=CloneBlobInfo(images->blob); /* thread specific I/O handler */
1296 DestroyBlob(images);
1297 images->blob=blob;
1298 if (filename != (const char *) NULL)
1299 for (p=images; p != (Image *) NULL; p=GetNextImageInList(p))
1300 (void) CopyMagickString(p->filename,filename,MaxTextExtent);
1301 (void) CopyMagickString(write_info->filename,images->filename,MaxTextExtent);
1302 if (*write_info->magick == '\0')
1303 (void) CopyMagickString(write_info->magick,images->magick,MaxTextExtent);
1304 sans_exception=AcquireExceptionInfo();
cristyd965a422010-03-03 17:47:35 +00001305 (void) SetImageInfo(write_info,(unsigned int) GetImageListLength(images),
1306 sans_exception);
cristy3ed852e2009-09-05 21:47:34 +00001307 sans_exception=DestroyExceptionInfo(sans_exception);
1308 p=images;
1309 for ( ; GetNextImageInList(p) != (Image *) NULL; p=GetNextImageInList(p))
1310 if (p->scene >= GetNextImageInList(p)->scene)
1311 {
cristybb503372010-05-27 20:51:26 +00001312 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001313 i;
1314
1315 /*
1316 Generate consistent scene numbers.
1317 */
cristybb503372010-05-27 20:51:26 +00001318 i=(ssize_t) images->scene;
cristy3ed852e2009-09-05 21:47:34 +00001319 for (p=images; p != (Image *) NULL; p=GetNextImageInList(p))
cristybb503372010-05-27 20:51:26 +00001320 p->scene=(size_t) i++;
cristy3ed852e2009-09-05 21:47:34 +00001321 break;
1322 }
1323 /*
1324 Write images.
1325 */
1326 status=MagickTrue;
cristy466802f2010-02-24 14:18:37 +00001327 progress_monitor=(MagickProgressMonitor) NULL;
cristy36507e62010-02-11 00:26:48 +00001328 i=0;
1329 number_images=GetImageListLength(images);
cristy3ed852e2009-09-05 21:47:34 +00001330 for (p=images; p != (Image *) NULL; p=GetNextImageInList(p))
1331 {
cristy8b27a6d2010-02-14 03:31:15 +00001332 if (number_images != 1)
1333 progress_monitor=SetImageProgressMonitor(p,(MagickProgressMonitor) NULL,
1334 p->client_data);
cristy6f9e0d32011-08-28 16:32:09 +00001335 status&=WriteImage(write_info,p,exception);
cristy8b27a6d2010-02-14 03:31:15 +00001336 if (number_images != 1)
1337 (void) SetImageProgressMonitor(p,progress_monitor,p->client_data);
cristy3ed852e2009-09-05 21:47:34 +00001338 if (write_info->adjoin != MagickFalse)
1339 break;
cristy8b27a6d2010-02-14 03:31:15 +00001340 if (number_images != 1)
1341 {
1342 proceed=SetImageProgress(p,WriteImageTag,i++,number_images);
1343 if (proceed == MagickFalse)
1344 break;
1345 }
cristy3ed852e2009-09-05 21:47:34 +00001346 }
1347 write_info=DestroyImageInfo(write_info);
1348 return(status != 0 ? MagickTrue : MagickFalse);
1349}