blob: 8b2e2e3216ed9dd6e25ceef968f78d1df2c437f3 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% M M IIIII FFFFF FFFFF %
7% MM MM I F F %
8% M M M I FFF FFF %
9% M M I F F %
10% M M IIIII F F %
11% %
12% %
13% Read/Write MIFF 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% %
Cristyf6ff9ea2016-12-05 09:53:35 -050020% Copyright 1999-2017 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% %
Cristyf19d4142017-04-24 11:34:30 -040026% https://www.imagemagick.org/script/license.php %
cristy3ed852e2009-09-05 21:47:34 +000027% %
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/attribute.h"
44#include "MagickCore/blob.h"
45#include "MagickCore/blob-private.h"
46#include "MagickCore/cache.h"
47#include "MagickCore/color.h"
48#include "MagickCore/color-private.h"
49#include "MagickCore/colormap.h"
50#include "MagickCore/colormap-private.h"
51#include "MagickCore/colorspace.h"
cristy325cfdc2012-04-28 01:00:09 +000052#include "MagickCore/colorspace-private.h"
cristy4c08aed2011-07-01 19:47:50 +000053#include "MagickCore/constitute.h"
54#include "MagickCore/exception.h"
55#include "MagickCore/exception-private.h"
cristy4c08aed2011-07-01 19:47:50 +000056#include "MagickCore/geometry.h"
57#include "MagickCore/image.h"
58#include "MagickCore/image-private.h"
dirkabed7e22016-01-31 17:10:21 +010059#include "MagickCore/linked-list.h"
cristy4c08aed2011-07-01 19:47:50 +000060#include "MagickCore/list.h"
61#include "MagickCore/magick.h"
62#include "MagickCore/memory_.h"
63#include "MagickCore/module.h"
64#include "MagickCore/monitor.h"
65#include "MagickCore/monitor-private.h"
66#include "MagickCore/option.h"
67#include "MagickCore/pixel.h"
68#include "MagickCore/pixel-accessor.h"
69#include "MagickCore/profile.h"
70#include "MagickCore/property.h"
71#include "MagickCore/quantum-private.h"
72#include "MagickCore/static.h"
73#include "MagickCore/statistic.h"
74#include "MagickCore/string_.h"
75#include "MagickCore/string-private.h"
cristy3ed852e2009-09-05 21:47:34 +000076#if defined(MAGICKCORE_BZLIB_DELEGATE)
77#include "bzlib.h"
78#endif
cristy26377172010-12-20 19:01:58 +000079#if defined(MAGICKCORE_LZMA_DELEGATE)
80#include "lzma.h"
81#endif
82#if defined(MAGICKCORE_ZLIB_DELEGATE)
83#include "zlib.h"
84#endif
cristy3ed852e2009-09-05 21:47:34 +000085
86/*
cristya7a341e2010-12-22 20:28:51 +000087 Define declarations.
88*/
89#if !defined(LZMA_OK)
90#define LZMA_OK 0
91#endif
92
93/*
cristy3ed852e2009-09-05 21:47:34 +000094 Forward declarations.
95*/
96static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +000097 WriteMIFFImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000098
99/*
100%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
101% %
102% %
103% %
104% I s M I F F %
105% %
106% %
107% %
108%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
109%
110% IsMIFF() returns MagickTrue if the image format type, identified by the
111% magick string, is MIFF.
112%
113% The format of the IsMIFF method is:
114%
115% MagickBooleanType IsMIFF(const unsigned char *magick,const size_t length)
116%
117% A description of each parameter follows:
118%
119% o magick: compare image format pattern against these bytes.
120%
121% o length: Specifies the length of the magick string.
122%
123*/
124static MagickBooleanType IsMIFF(const unsigned char *magick,const size_t length)
125{
126 if (length < 14)
127 return(MagickFalse);
128 if (LocaleNCompare((const char *) magick,"id=ImageMagick",14) == 0)
129 return(MagickTrue);
130 return(MagickFalse);
131}
132
133/*
134%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
135% %
136% %
137% %
138% R e a d M I F F I m a g e %
139% %
140% %
141% %
142%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
143%
144% ReadMIFFImage() reads a MIFF image file and returns it. It allocates the
145% memory necessary for the new Image structure and returns a pointer to the
146% new image.
147%
148% The format of the ReadMIFFImage method is:
149%
150% Image *ReadMIFFImage(const ImageInfo *image_info,
151% ExceptionInfo *exception)
152%
153% Decompression code contributed by Kyle Shorter.
154%
155% A description of each parameter follows:
156%
157% o image_info: the image info.
158%
159% o exception: return any errors or warnings in this structure.
160%
161*/
162
163#if defined(MAGICKCORE_BZLIB_DELEGATE)
164static void *AcquireBZIPMemory(void *context,int items,int size)
165{
166 (void) context;
167 return((void *) AcquireQuantumMemory((size_t) items,(size_t) size));
168}
169#endif
170
cristy4b46dba2010-12-20 19:18:20 +0000171#if defined(MAGICKCORE_LZMA_DELEGATE)
172static void *AcquireLZMAMemory(void *context,size_t items,size_t size)
173{
174 (void) context;
175 return((void *) AcquireQuantumMemory((size_t) items,(size_t) size));
176}
177#endif
178
cristy3ed852e2009-09-05 21:47:34 +0000179#if defined(MAGICKCORE_ZLIB_DELEGATE)
180static voidpf AcquireZIPMemory(voidpf context,unsigned int items,
181 unsigned int size)
182{
183 (void) context;
184 return((voidpf) AcquireQuantumMemory(items,size));
185}
186#endif
187
cristy3ed852e2009-09-05 21:47:34 +0000188static void PushRunlengthPacket(Image *image,const unsigned char *pixels,
cristyc82a27b2011-10-21 01:07:16 +0000189 size_t *length,PixelInfo *pixel,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000190{
191 const unsigned char
192 *p;
193
194 p=pixels;
195 if (image->storage_class == PseudoClass)
196 {
cristy4c08aed2011-07-01 19:47:50 +0000197 pixel->index=0;
cristy3ed852e2009-09-05 21:47:34 +0000198 switch (image->depth)
199 {
200 case 32:
201 {
cristy5467fcf2014-05-18 17:20:55 +0000202 pixel->index=ConstrainColormapIndex(image,((size_t) *p << 24) |
203 ((size_t) *(p+1) << 16) | ((size_t) *(p+2) << 8) | (size_t) *(p+3),
204 exception);
cristy3ed852e2009-09-05 21:47:34 +0000205 p+=4;
206 break;
207 }
208 case 16:
209 {
cristyc82a27b2011-10-21 01:07:16 +0000210 pixel->index=ConstrainColormapIndex(image,(*p << 8) | *(p+1),
211 exception);
cristy3ed852e2009-09-05 21:47:34 +0000212 p+=2;
213 break;
214 }
215 case 8:
216 {
cristyc82a27b2011-10-21 01:07:16 +0000217 pixel->index=ConstrainColormapIndex(image,*p,exception);
cristy3ed852e2009-09-05 21:47:34 +0000218 p++;
219 break;
220 }
221 default:
cristyc82a27b2011-10-21 01:07:16 +0000222 (void) ThrowMagickException(exception,GetMagickModule(),
cristy3ed852e2009-09-05 21:47:34 +0000223 CorruptImageError,"ImageDepthNotSupported","`%s'",image->filename);
224 }
cristy3ed852e2009-09-05 21:47:34 +0000225 switch (image->depth)
226 {
227 case 8:
228 {
229 unsigned char
230 quantum;
231
cristy9f36ba72014-12-07 22:55:01 +0000232 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000233 {
234 p=PushCharPixel(p,&quantum);
cristy4c08aed2011-07-01 19:47:50 +0000235 pixel->alpha=ScaleCharToQuantum(quantum);
cristy3ed852e2009-09-05 21:47:34 +0000236 }
237 break;
238 }
239 case 16:
240 {
241 unsigned short
242 quantum;
243
cristy9f36ba72014-12-07 22:55:01 +0000244 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000245 {
246 p=PushShortPixel(MSBEndian,p,&quantum);
cristy4c08aed2011-07-01 19:47:50 +0000247 pixel->alpha=(Quantum) (quantum >> (image->depth-
cristy3ed852e2009-09-05 21:47:34 +0000248 MAGICKCORE_QUANTUM_DEPTH));
249 }
250 break;
251 }
252 case 32:
253 {
cristy4cb162a2010-05-30 03:04:47 +0000254 unsigned int
cristy3ed852e2009-09-05 21:47:34 +0000255 quantum;
256
cristy9f36ba72014-12-07 22:55:01 +0000257 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000258 {
259 p=PushLongPixel(MSBEndian,p,&quantum);
cristy4c08aed2011-07-01 19:47:50 +0000260 pixel->alpha=(Quantum) (quantum >> (image->depth-
cristy3ed852e2009-09-05 21:47:34 +0000261 MAGICKCORE_QUANTUM_DEPTH));
262 }
263 break;
264 }
265 default:
cristyc82a27b2011-10-21 01:07:16 +0000266 (void) ThrowMagickException(exception,GetMagickModule(),
cristy3ed852e2009-09-05 21:47:34 +0000267 CorruptImageError,"ImageDepthNotSupported","`%s'",image->filename);
268 }
269 *length=(size_t) (*p++)+1;
270 return;
271 }
272 switch (image->depth)
273 {
274 case 8:
275 {
276 unsigned char
277 quantum;
278
279 p=PushCharPixel(p,&quantum);
cristy4c08aed2011-07-01 19:47:50 +0000280 pixel->red=ScaleCharToQuantum(quantum);
cristy325cfdc2012-04-28 01:00:09 +0000281 pixel->green=pixel->red;
282 pixel->blue=pixel->red;
283 if (IsGrayColorspace(image->colorspace) == MagickFalse)
284 {
285 p=PushCharPixel(p,&quantum);
286 pixel->green=ScaleCharToQuantum(quantum);
287 p=PushCharPixel(p,&quantum);
288 pixel->blue=ScaleCharToQuantum(quantum);
289 }
cristy3ed852e2009-09-05 21:47:34 +0000290 if (image->colorspace == CMYKColorspace)
291 {
292 p=PushCharPixel(p,&quantum);
cristy4c08aed2011-07-01 19:47:50 +0000293 pixel->black=ScaleCharToQuantum(quantum);
294 }
cristy9f36ba72014-12-07 22:55:01 +0000295 if (image->alpha_trait != UndefinedPixelTrait)
cristy4c08aed2011-07-01 19:47:50 +0000296 {
297 p=PushCharPixel(p,&quantum);
298 pixel->alpha=ScaleCharToQuantum(quantum);
cristy3ed852e2009-09-05 21:47:34 +0000299 }
300 break;
301 }
302 case 16:
303 {
304 unsigned short
305 quantum;
306
307 p=PushShortPixel(MSBEndian,p,&quantum);
cristy4c08aed2011-07-01 19:47:50 +0000308 pixel->red=quantum >> (image->depth-MAGICKCORE_QUANTUM_DEPTH);
cristy325cfdc2012-04-28 01:00:09 +0000309 pixel->green=pixel->red;
310 pixel->blue=pixel->red;
311 if (IsGrayColorspace(image->colorspace) == MagickFalse)
312 {
313 p=PushShortPixel(MSBEndian,p,&quantum);
314 pixel->green=quantum >> (image->depth-MAGICKCORE_QUANTUM_DEPTH);
315 p=PushShortPixel(MSBEndian,p,&quantum);
316 pixel->blue=quantum >> (image->depth-MAGICKCORE_QUANTUM_DEPTH);
317 }
cristy3ed852e2009-09-05 21:47:34 +0000318 if (image->colorspace == CMYKColorspace)
319 {
320 p=PushShortPixel(MSBEndian,p,&quantum);
cristy4c08aed2011-07-01 19:47:50 +0000321 pixel->black=quantum >> (image->depth-MAGICKCORE_QUANTUM_DEPTH);
322 }
cristy9f36ba72014-12-07 22:55:01 +0000323 if (image->alpha_trait != UndefinedPixelTrait)
cristy4c08aed2011-07-01 19:47:50 +0000324 {
325 p=PushShortPixel(MSBEndian,p,&quantum);
326 pixel->alpha=quantum >> (image->depth-MAGICKCORE_QUANTUM_DEPTH);
cristy3ed852e2009-09-05 21:47:34 +0000327 }
328 break;
329 }
330 case 32:
331 {
cristy4cb162a2010-05-30 03:04:47 +0000332 unsigned int
cristy3ed852e2009-09-05 21:47:34 +0000333 quantum;
334
335 p=PushLongPixel(MSBEndian,p,&quantum);
cristy4c08aed2011-07-01 19:47:50 +0000336 pixel->red=quantum >> (image->depth-MAGICKCORE_QUANTUM_DEPTH);
cristy325cfdc2012-04-28 01:00:09 +0000337 pixel->green=pixel->red;
338 pixel->blue=pixel->red;
339 if (IsGrayColorspace(image->colorspace) == MagickFalse)
340 {
341 p=PushLongPixel(MSBEndian,p,&quantum);
342 pixel->green=quantum >> (image->depth-MAGICKCORE_QUANTUM_DEPTH);
343 p=PushLongPixel(MSBEndian,p,&quantum);
344 pixel->blue=quantum >> (image->depth-MAGICKCORE_QUANTUM_DEPTH);
345 }
cristy3ed852e2009-09-05 21:47:34 +0000346 if (image->colorspace == CMYKColorspace)
347 {
348 p=PushLongPixel(MSBEndian,p,&quantum);
cristy4c08aed2011-07-01 19:47:50 +0000349 pixel->black=quantum >> (image->depth-MAGICKCORE_QUANTUM_DEPTH);
350 }
cristy9f36ba72014-12-07 22:55:01 +0000351 if (image->alpha_trait != UndefinedPixelTrait)
cristy4c08aed2011-07-01 19:47:50 +0000352 {
353 p=PushLongPixel(MSBEndian,p,&quantum);
354 pixel->alpha=quantum >> (image->depth-MAGICKCORE_QUANTUM_DEPTH);
cristy3ed852e2009-09-05 21:47:34 +0000355 }
356 break;
357 }
358 default:
cristyc82a27b2011-10-21 01:07:16 +0000359 (void) ThrowMagickException(exception,GetMagickModule(),CorruptImageError,
360 "ImageDepthNotSupported","`%s'",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000361 }
362 *length=(size_t) (*p++)+1;
363}
364
cristy4b46dba2010-12-20 19:18:20 +0000365#if defined(MAGICKCORE_BZLIB_DELEGATE)
366static void RelinquishBZIPMemory(void *context,void *memory)
cristy3ed852e2009-09-05 21:47:34 +0000367{
368 (void) context;
369 memory=RelinquishMagickMemory(memory);
370}
371#endif
372
cristy4b46dba2010-12-20 19:18:20 +0000373#if defined(MAGICKCORE_LZMA_DELEGATE)
374static void RelinquishLZMAMemory(void *context,void *memory)
375{
376 (void) context;
377 memory=RelinquishMagickMemory(memory);
378}
379#endif
380
381#if defined(MAGICKCORE_ZLIB_DELEGATE)
382static void RelinquishZIPMemory(voidpf context,voidpf memory)
cristy3ed852e2009-09-05 21:47:34 +0000383{
384 (void) context;
385 memory=RelinquishMagickMemory(memory);
386}
387#endif
388
389static Image *ReadMIFFImage(const ImageInfo *image_info,
390 ExceptionInfo *exception)
391{
392#define BZipMaxExtent(x) ((x)+((x)/100)+600)
cristy26377172010-12-20 19:01:58 +0000393#define LZMAMaxExtent(x) ((x)+((x)/3)+128)
cristy3ed852e2009-09-05 21:47:34 +0000394#define ZipMaxExtent(x) ((x)+(((x)+7) >> 3)+(((x)+63) >> 6)+11)
395
396#if defined(MAGICKCORE_BZLIB_DELEGATE)
397 bz_stream
398 bzip_info;
399#endif
400
401 char
cristy151b66d2015-04-15 10:50:31 +0000402 id[MagickPathExtent],
403 keyword[MagickPathExtent],
cristy3ed852e2009-09-05 21:47:34 +0000404 *options;
405
406 const unsigned char
407 *p;
408
409 double
410 version;
411
412 GeometryInfo
413 geometry_info;
414
415 Image
416 *image;
417
cristy3ed852e2009-09-05 21:47:34 +0000418 int
cristy3a99dcf2011-12-17 01:29:40 +0000419 c;
cristy3ed852e2009-09-05 21:47:34 +0000420
cristyde626a22012-05-13 00:39:00 +0000421 LinkedListInfo
422 *profiles;
423
cristy26377172010-12-20 19:01:58 +0000424#if defined(MAGICKCORE_LZMA_DELEGATE)
425 lzma_stream
cristy330af6c2010-12-21 14:36:06 +0000426 initialize_lzma = LZMA_STREAM_INIT,
427 lzma_info;
cristy4b46dba2010-12-20 19:18:20 +0000428
429 lzma_allocator
430 allocator;
cristy26377172010-12-20 19:01:58 +0000431#endif
432
cristy3ed852e2009-09-05 21:47:34 +0000433 MagickBooleanType
434 status;
435
cristy4c08aed2011-07-01 19:47:50 +0000436 PixelInfo
437 pixel;
438
cristy3ed852e2009-09-05 21:47:34 +0000439 MagickStatusType
440 flags;
441
cristy3ed852e2009-09-05 21:47:34 +0000442 QuantumFormatType
443 quantum_format;
444
445 QuantumInfo
446 *quantum_info;
447
448 QuantumType
449 quantum_type;
450
cristybb503372010-05-27 20:51:26 +0000451 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000452 i;
453
454 size_t
cristy1d3be432015-01-07 11:26:54 +0000455 compress_extent,
cristy3ed852e2009-09-05 21:47:34 +0000456 length,
457 packet_size;
458
459 ssize_t
460 count;
461
462 unsigned char
463 *compress_pixels,
464 *pixels;
465
cristybb503372010-05-27 20:51:26 +0000466 size_t
cristy3ed852e2009-09-05 21:47:34 +0000467 colors;
468
cristy26377172010-12-20 19:01:58 +0000469 ssize_t
470 y;
471
cristy3ed852e2009-09-05 21:47:34 +0000472#if defined(MAGICKCORE_ZLIB_DELEGATE)
473 z_stream
474 zip_info;
475#endif
476
477 /*
478 Open image file.
479 */
480 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000481 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000482 if (image_info->debug != MagickFalse)
483 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
484 image_info->filename);
485 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000486 assert(exception->signature == MagickCoreSignature);
cristy9950d572011-10-01 18:22:35 +0000487 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000488 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
489 if (status == MagickFalse)
490 {
491 image=DestroyImageList(image);
492 return((Image *) NULL);
493 }
494 /*
495 Decode image header; header terminates one character beyond a ':'.
496 */
497 c=ReadBlobByte(image);
498 if (c == EOF)
499 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy3ed852e2009-09-05 21:47:34 +0000500 *id='\0';
501 (void) ResetMagickMemory(keyword,0,sizeof(keyword));
502 version=0.0;
cristy51f4b1b2012-02-21 13:56:07 +0000503 (void) version;
cristy3ed852e2009-09-05 21:47:34 +0000504 do
505 {
506 /*
507 Decode image header; header terminates one character beyond a ':'.
508 */
cristy151b66d2015-04-15 10:50:31 +0000509 length=MagickPathExtent;
cristy3ed852e2009-09-05 21:47:34 +0000510 options=AcquireString((char *) NULL);
511 quantum_format=UndefinedQuantumFormat;
512 profiles=(LinkedListInfo *) NULL;
513 colors=0;
514 image->depth=8UL;
515 image->compression=NoCompression;
516 while ((isgraph(c) != MagickFalse) && (c != (int) ':'))
517 {
518 register char
519 *p;
520
521 if (c == (int) '{')
522 {
523 char
524 *comment;
525
526 /*
527 Read comment-- any text between { }.
528 */
cristy151b66d2015-04-15 10:50:31 +0000529 length=MagickPathExtent;
cristy3ed852e2009-09-05 21:47:34 +0000530 comment=AcquireString((char *) NULL);
531 for (p=comment; comment != (char *) NULL; p++)
532 {
533 c=ReadBlobByte(image);
cristyb880ee82012-04-07 15:08:14 +0000534 if (c == (int) '\\')
535 c=ReadBlobByte(image);
536 else
537 if ((c == EOF) || (c == (int) '}'))
538 break;
cristy3ed852e2009-09-05 21:47:34 +0000539 if ((size_t) (p-comment+1) >= length)
540 {
541 *p='\0';
542 length<<=1;
543 comment=(char *) ResizeQuantumMemory(comment,length+
cristy151b66d2015-04-15 10:50:31 +0000544 MagickPathExtent,sizeof(*comment));
cristy3ed852e2009-09-05 21:47:34 +0000545 if (comment == (char *) NULL)
546 break;
547 p=comment+strlen(comment);
548 }
549 *p=(char) c;
550 }
551 if (comment == (char *) NULL)
552 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
553 *p='\0';
cristyd15e6592011-10-15 00:13:06 +0000554 (void) SetImageProperty(image,"comment",comment,exception);
cristy3ed852e2009-09-05 21:47:34 +0000555 comment=DestroyString(comment);
556 c=ReadBlobByte(image);
557 }
558 else
559 if (isalnum(c) != MagickFalse)
560 {
561 /*
562 Get the keyword.
563 */
cristy151b66d2015-04-15 10:50:31 +0000564 length=MagickPathExtent;
cristy3ed852e2009-09-05 21:47:34 +0000565 p=keyword;
566 do
567 {
cristy3ed852e2009-09-05 21:47:34 +0000568 if (c == (int) '=')
569 break;
cristy151b66d2015-04-15 10:50:31 +0000570 if ((size_t) (p-keyword) < (MagickPathExtent-1))
cristy3ed852e2009-09-05 21:47:34 +0000571 *p++=(char) c;
572 c=ReadBlobByte(image);
573 } while (c != EOF);
574 *p='\0';
575 p=options;
cristy93505cf2010-08-10 21:37:49 +0000576 while ((isspace((int) ((unsigned char) c)) != 0) && (c != EOF))
cristy3ed852e2009-09-05 21:47:34 +0000577 c=ReadBlobByte(image);
578 if (c == (int) '=')
579 {
580 /*
581 Get the keyword value.
582 */
583 c=ReadBlobByte(image);
584 while ((c != (int) '}') && (c != EOF))
585 {
586 if ((size_t) (p-options+1) >= length)
587 {
588 *p='\0';
589 length<<=1;
590 options=(char *) ResizeQuantumMemory(options,length+
cristy151b66d2015-04-15 10:50:31 +0000591 MagickPathExtent,sizeof(*options));
cristy3ed852e2009-09-05 21:47:34 +0000592 if (options == (char *) NULL)
593 break;
594 p=options+strlen(options);
595 }
cristy3ed852e2009-09-05 21:47:34 +0000596 *p++=(char) c;
597 c=ReadBlobByte(image);
cristyb880ee82012-04-07 15:08:14 +0000598 if (c == '\\')
599 {
600 c=ReadBlobByte(image);
601 if (c == (int) '}')
602 {
603 *p++=(char) c;
604 c=ReadBlobByte(image);
605 }
606 }
cristy3ed852e2009-09-05 21:47:34 +0000607 if (*options != '{')
608 if (isspace((int) ((unsigned char) c)) != 0)
609 break;
cristy37889762015-01-07 12:20:18 +0000610 }
611 if (options == (char *) NULL)
612 ThrowReaderException(ResourceLimitError,
613 "MemoryAllocationFailed");
614 }
cristy3ed852e2009-09-05 21:47:34 +0000615 *p='\0';
616 if (*options == '{')
cristybfae51d2012-10-05 15:40:35 +0000617 (void) CopyMagickString(options,options+1,strlen(options));
cristy3ed852e2009-09-05 21:47:34 +0000618 /*
619 Assign a value to the specified keyword.
620 */
621 switch (*keyword)
622 {
cristy8a46d822012-08-28 23:32:39 +0000623 case 'a':
624 case 'A':
625 {
626 if (LocaleCompare(keyword,"alpha-trait") == 0)
627 {
628 ssize_t
629 alpha_trait;
630
631 alpha_trait=ParseCommandOption(MagickPixelTraitOptions,
632 MagickFalse,options);
633 if (alpha_trait < 0)
634 break;
635 image->alpha_trait=(PixelTrait) alpha_trait;
636 break;
637 }
638 (void) SetImageProperty(image,keyword,options,exception);
639 break;
640 }
cristy3ed852e2009-09-05 21:47:34 +0000641 case 'b':
642 case 'B':
643 {
644 if (LocaleCompare(keyword,"background-color") == 0)
645 {
cristy9950d572011-10-01 18:22:35 +0000646 (void) QueryColorCompliance(options,AllCompliance,
647 &image->background_color,exception);
cristy3ed852e2009-09-05 21:47:34 +0000648 break;
649 }
650 if (LocaleCompare(keyword,"blue-primary") == 0)
651 {
652 flags=ParseGeometry(options,&geometry_info);
653 image->chromaticity.blue_primary.x=geometry_info.rho;
654 image->chromaticity.blue_primary.y=geometry_info.sigma;
655 if ((flags & SigmaValue) == 0)
656 image->chromaticity.blue_primary.y=
657 image->chromaticity.blue_primary.x;
658 break;
659 }
660 if (LocaleCompare(keyword,"border-color") == 0)
661 {
cristy9950d572011-10-01 18:22:35 +0000662 (void) QueryColorCompliance(options,AllCompliance,
663 &image->border_color,exception);
cristy3ed852e2009-09-05 21:47:34 +0000664 break;
665 }
cristyd15e6592011-10-15 00:13:06 +0000666 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000667 break;
668 }
669 case 'c':
670 case 'C':
671 {
672 if (LocaleCompare(keyword,"class") == 0)
673 {
cristybb503372010-05-27 20:51:26 +0000674 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000675 storage_class;
676
cristy042ee782011-04-22 18:48:30 +0000677 storage_class=ParseCommandOption(MagickClassOptions,
cristy3ed852e2009-09-05 21:47:34 +0000678 MagickFalse,options);
679 if (storage_class < 0)
680 break;
681 image->storage_class=(ClassType) storage_class;
682 break;
683 }
684 if (LocaleCompare(keyword,"colors") == 0)
685 {
cristye27293e2009-12-18 02:53:20 +0000686 colors=StringToUnsignedLong(options);
cristy3ed852e2009-09-05 21:47:34 +0000687 break;
688 }
689 if (LocaleCompare(keyword,"colorspace") == 0)
690 {
cristybb503372010-05-27 20:51:26 +0000691 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000692 colorspace;
693
cristy042ee782011-04-22 18:48:30 +0000694 colorspace=ParseCommandOption(MagickColorspaceOptions,
cristy3ed852e2009-09-05 21:47:34 +0000695 MagickFalse,options);
696 if (colorspace < 0)
697 break;
cristy02a27d52013-03-05 01:06:21 +0000698 image->colorspace=(ColorspaceType) colorspace;
cristy3ed852e2009-09-05 21:47:34 +0000699 break;
700 }
701 if (LocaleCompare(keyword,"compression") == 0)
702 {
cristybb503372010-05-27 20:51:26 +0000703 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000704 compression;
705
cristy042ee782011-04-22 18:48:30 +0000706 compression=ParseCommandOption(MagickCompressOptions,
cristy3ed852e2009-09-05 21:47:34 +0000707 MagickFalse,options);
708 if (compression < 0)
709 break;
710 image->compression=(CompressionType) compression;
711 break;
712 }
713 if (LocaleCompare(keyword,"columns") == 0)
714 {
cristye27293e2009-12-18 02:53:20 +0000715 image->columns=StringToUnsignedLong(options);
cristy3ed852e2009-09-05 21:47:34 +0000716 break;
717 }
cristyd15e6592011-10-15 00:13:06 +0000718 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000719 break;
720 }
721 case 'd':
722 case 'D':
723 {
724 if (LocaleCompare(keyword,"delay") == 0)
725 {
cristye27293e2009-12-18 02:53:20 +0000726 image->delay=StringToUnsignedLong(options);
cristy3ed852e2009-09-05 21:47:34 +0000727 break;
728 }
729 if (LocaleCompare(keyword,"depth") == 0)
730 {
cristye27293e2009-12-18 02:53:20 +0000731 image->depth=StringToUnsignedLong(options);
cristy3ed852e2009-09-05 21:47:34 +0000732 break;
733 }
734 if (LocaleCompare(keyword,"dispose") == 0)
735 {
cristybb503372010-05-27 20:51:26 +0000736 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000737 dispose;
738
cristy042ee782011-04-22 18:48:30 +0000739 dispose=ParseCommandOption(MagickDisposeOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +0000740 options);
741 if (dispose < 0)
742 break;
743 image->dispose=(DisposeType) dispose;
744 break;
745 }
cristyd15e6592011-10-15 00:13:06 +0000746 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000747 break;
748 }
749 case 'e':
750 case 'E':
751 {
752 if (LocaleCompare(keyword,"endian") == 0)
753 {
cristybb503372010-05-27 20:51:26 +0000754 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000755 endian;
756
cristy042ee782011-04-22 18:48:30 +0000757 endian=ParseCommandOption(MagickEndianOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +0000758 options);
759 if (endian < 0)
760 break;
761 image->endian=(EndianType) endian;
762 break;
763 }
cristyd15e6592011-10-15 00:13:06 +0000764 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000765 break;
766 }
767 case 'g':
768 case 'G':
769 {
770 if (LocaleCompare(keyword,"gamma") == 0)
771 {
cristydbdd0e32011-11-04 23:29:40 +0000772 image->gamma=StringToDouble(options,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +0000773 break;
774 }
775 if (LocaleCompare(keyword,"gravity") == 0)
776 {
cristybb503372010-05-27 20:51:26 +0000777 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000778 gravity;
779
cristy042ee782011-04-22 18:48:30 +0000780 gravity=ParseCommandOption(MagickGravityOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +0000781 options);
782 if (gravity < 0)
783 break;
784 image->gravity=(GravityType) gravity;
785 break;
786 }
787 if (LocaleCompare(keyword,"green-primary") == 0)
788 {
789 flags=ParseGeometry(options,&geometry_info);
790 image->chromaticity.green_primary.x=geometry_info.rho;
791 image->chromaticity.green_primary.y=geometry_info.sigma;
792 if ((flags & SigmaValue) == 0)
793 image->chromaticity.green_primary.y=
794 image->chromaticity.green_primary.x;
795 break;
796 }
cristyd15e6592011-10-15 00:13:06 +0000797 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000798 break;
799 }
800 case 'i':
801 case 'I':
802 {
803 if (LocaleCompare(keyword,"id") == 0)
804 {
cristy151b66d2015-04-15 10:50:31 +0000805 (void) CopyMagickString(id,options,MagickPathExtent);
cristy3ed852e2009-09-05 21:47:34 +0000806 break;
807 }
808 if (LocaleCompare(keyword,"iterations") == 0)
809 {
cristye27293e2009-12-18 02:53:20 +0000810 image->iterations=StringToUnsignedLong(options);
cristy3ed852e2009-09-05 21:47:34 +0000811 break;
812 }
cristyd15e6592011-10-15 00:13:06 +0000813 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000814 break;
815 }
816 case 'm':
817 case 'M':
818 {
819 if (LocaleCompare(keyword,"matte") == 0)
820 {
cristybb503372010-05-27 20:51:26 +0000821 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000822 matte;
823
cristy042ee782011-04-22 18:48:30 +0000824 matte=ParseCommandOption(MagickBooleanOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +0000825 options);
826 if (matte < 0)
827 break;
cristy8a46d822012-08-28 23:32:39 +0000828 image->alpha_trait=matte == 0 ? UndefinedPixelTrait :
829 BlendPixelTrait;
cristy3ed852e2009-09-05 21:47:34 +0000830 break;
831 }
Cristy18b27502017-02-16 07:29:19 -0500832 if (LocaleCompare(keyword,"mattecolor") == 0)
833 {
834 (void) QueryColorCompliance(options,AllCompliance,
835 &image->matte_color,exception);
836 break;
837 }
cristy3ed852e2009-09-05 21:47:34 +0000838 if (LocaleCompare(keyword,"montage") == 0)
839 {
840 (void) CloneString(&image->montage,options);
841 break;
842 }
cristyd15e6592011-10-15 00:13:06 +0000843 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000844 break;
845 }
846 case 'o':
847 case 'O':
848 {
cristy3ed852e2009-09-05 21:47:34 +0000849 if (LocaleCompare(keyword,"orientation") == 0)
850 {
cristybb503372010-05-27 20:51:26 +0000851 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000852 orientation;
853
cristy042ee782011-04-22 18:48:30 +0000854 orientation=ParseCommandOption(MagickOrientationOptions,
cristy3ed852e2009-09-05 21:47:34 +0000855 MagickFalse,options);
856 if (orientation < 0)
857 break;
858 image->orientation=(OrientationType) orientation;
859 break;
860 }
cristyd15e6592011-10-15 00:13:06 +0000861 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000862 break;
863 }
864 case 'p':
865 case 'P':
866 {
867 if (LocaleCompare(keyword,"page") == 0)
868 {
869 char
870 *geometry;
871
872 geometry=GetPageGeometry(options);
873 (void) ParseAbsoluteGeometry(geometry,&image->page);
874 geometry=DestroyString(geometry);
875 break;
876 }
cristy3e4e9f42013-04-06 22:29:40 +0000877 if (LocaleCompare(keyword,"pixel-intensity") == 0)
878 {
879 ssize_t
880 intensity;
881
882 intensity=ParseCommandOption(MagickPixelIntensityOptions,
883 MagickFalse,options);
884 if (intensity < 0)
885 break;
886 image->intensity=(PixelIntensityMethod) intensity;
887 break;
888 }
cristy3ed852e2009-09-05 21:47:34 +0000889 if ((LocaleNCompare(keyword,"profile:",8) == 0) ||
890 (LocaleNCompare(keyword,"profile-",8) == 0))
891 {
892 StringInfo
893 *profile;
894
895 if (profiles == (LinkedListInfo *) NULL)
896 profiles=NewLinkedList(0);
897 (void) AppendValueToLinkedList(profiles,
898 AcquireString(keyword+8));
cristy63f9b8e2011-09-01 13:40:50 +0000899 profile=BlobToStringInfo((const void *) NULL,(size_t)
900 StringToLong(options));
cristy49f5e9f2011-09-01 13:44:57 +0000901 if (profile == (StringInfo *) NULL)
cristy63f9b8e2011-09-01 13:40:50 +0000902 ThrowReaderException(ResourceLimitError,
903 "MemoryAllocationFailed");
cristyd15e6592011-10-15 00:13:06 +0000904 (void) SetImageProfile(image,keyword+8,profile,exception);
cristy3ed852e2009-09-05 21:47:34 +0000905 profile=DestroyStringInfo(profile);
906 break;
907 }
cristyd15e6592011-10-15 00:13:06 +0000908 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000909 break;
910 }
911 case 'q':
912 case 'Q':
913 {
914 if (LocaleCompare(keyword,"quality") == 0)
915 {
cristye27293e2009-12-18 02:53:20 +0000916 image->quality=StringToUnsignedLong(options);
cristy3ed852e2009-09-05 21:47:34 +0000917 break;
918 }
919 if ((LocaleCompare(keyword,"quantum-format") == 0) ||
920 (LocaleCompare(keyword,"quantum:format") == 0))
921 {
cristybb503372010-05-27 20:51:26 +0000922 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000923 format;
924
cristy042ee782011-04-22 18:48:30 +0000925 format=ParseCommandOption(MagickQuantumFormatOptions,
cristy3ed852e2009-09-05 21:47:34 +0000926 MagickFalse,options);
927 if (format < 0)
928 break;
929 quantum_format=(QuantumFormatType) format;
930 break;
931 }
cristyd15e6592011-10-15 00:13:06 +0000932 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000933 break;
934 }
935 case 'r':
936 case 'R':
937 {
938 if (LocaleCompare(keyword,"red-primary") == 0)
939 {
940 flags=ParseGeometry(options,&geometry_info);
941 image->chromaticity.red_primary.x=geometry_info.rho;
942 image->chromaticity.red_primary.y=geometry_info.sigma;
943 if ((flags & SigmaValue) == 0)
944 image->chromaticity.red_primary.y=
945 image->chromaticity.red_primary.x;
946 break;
947 }
948 if (LocaleCompare(keyword,"rendering-intent") == 0)
949 {
cristybb503372010-05-27 20:51:26 +0000950 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000951 rendering_intent;
952
cristy042ee782011-04-22 18:48:30 +0000953 rendering_intent=ParseCommandOption(MagickIntentOptions,
cristy3ed852e2009-09-05 21:47:34 +0000954 MagickFalse,options);
955 if (rendering_intent < 0)
956 break;
957 image->rendering_intent=(RenderingIntent) rendering_intent;
958 break;
959 }
960 if (LocaleCompare(keyword,"resolution") == 0)
961 {
962 flags=ParseGeometry(options,&geometry_info);
cristy2a11bef2011-10-28 18:33:11 +0000963 image->resolution.x=geometry_info.rho;
964 image->resolution.y=geometry_info.sigma;
cristy3ed852e2009-09-05 21:47:34 +0000965 if ((flags & SigmaValue) == 0)
cristy2a11bef2011-10-28 18:33:11 +0000966 image->resolution.y=image->resolution.x;
cristy3ed852e2009-09-05 21:47:34 +0000967 break;
968 }
969 if (LocaleCompare(keyword,"rows") == 0)
970 {
cristye27293e2009-12-18 02:53:20 +0000971 image->rows=StringToUnsignedLong(options);
cristy3ed852e2009-09-05 21:47:34 +0000972 break;
973 }
cristyd15e6592011-10-15 00:13:06 +0000974 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000975 break;
976 }
977 case 's':
978 case 'S':
979 {
980 if (LocaleCompare(keyword,"scene") == 0)
981 {
cristye27293e2009-12-18 02:53:20 +0000982 image->scene=StringToUnsignedLong(options);
cristy3ed852e2009-09-05 21:47:34 +0000983 break;
984 }
cristyd15e6592011-10-15 00:13:06 +0000985 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +0000986 break;
987 }
988 case 't':
989 case 'T':
990 {
991 if (LocaleCompare(keyword,"ticks-per-second") == 0)
992 {
cristy15893a42010-11-20 18:57:15 +0000993 image->ticks_per_second=(ssize_t) StringToLong(options);
cristy3ed852e2009-09-05 21:47:34 +0000994 break;
995 }
996 if (LocaleCompare(keyword,"tile-offset") == 0)
997 {
998 char
999 *geometry;
1000
1001 geometry=GetPageGeometry(options);
1002 (void) ParseAbsoluteGeometry(geometry,&image->tile_offset);
1003 geometry=DestroyString(geometry);
1004 break;
1005 }
1006 if (LocaleCompare(keyword,"type") == 0)
1007 {
cristybb503372010-05-27 20:51:26 +00001008 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001009 type;
1010
cristy042ee782011-04-22 18:48:30 +00001011 type=ParseCommandOption(MagickTypeOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +00001012 options);
1013 if (type < 0)
1014 break;
1015 image->type=(ImageType) type;
1016 break;
1017 }
cristyd15e6592011-10-15 00:13:06 +00001018 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +00001019 break;
1020 }
1021 case 'u':
1022 case 'U':
1023 {
1024 if (LocaleCompare(keyword,"units") == 0)
1025 {
cristybb503372010-05-27 20:51:26 +00001026 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001027 units;
1028
cristyfbbafc92011-05-05 01:22:11 +00001029 units=ParseCommandOption(MagickResolutionOptions,
1030 MagickFalse,options);
cristy3ed852e2009-09-05 21:47:34 +00001031 if (units < 0)
1032 break;
1033 image->units=(ResolutionType) units;
1034 break;
1035 }
cristyd15e6592011-10-15 00:13:06 +00001036 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +00001037 break;
1038 }
1039 case 'v':
1040 case 'V':
1041 {
1042 if (LocaleCompare(keyword,"version") == 0)
1043 {
cristydbdd0e32011-11-04 23:29:40 +00001044 version=StringToDouble(options,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001045 break;
1046 }
cristyd15e6592011-10-15 00:13:06 +00001047 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +00001048 break;
1049 }
1050 case 'w':
1051 case 'W':
1052 {
1053 if (LocaleCompare(keyword,"white-point") == 0)
1054 {
1055 flags=ParseGeometry(options,&geometry_info);
1056 image->chromaticity.white_point.x=geometry_info.rho;
cristy37f88d92012-05-04 11:14:52 +00001057 image->chromaticity.white_point.y=geometry_info.sigma;
cristy74ca1502012-06-21 13:10:47 +00001058 if ((flags & SigmaValue) == 0)
cristy3ed852e2009-09-05 21:47:34 +00001059 image->chromaticity.white_point.y=
1060 image->chromaticity.white_point.x;
1061 break;
1062 }
cristyd15e6592011-10-15 00:13:06 +00001063 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +00001064 break;
1065 }
1066 default:
1067 {
cristyd15e6592011-10-15 00:13:06 +00001068 (void) SetImageProperty(image,keyword,options,exception);
cristy3ed852e2009-09-05 21:47:34 +00001069 break;
1070 }
1071 }
1072 }
1073 else
1074 c=ReadBlobByte(image);
1075 while (isspace((int) ((unsigned char) c)) != 0)
1076 c=ReadBlobByte(image);
1077 }
1078 options=DestroyString(options);
1079 (void) ReadBlobByte(image);
1080 /*
1081 Verify that required image information is defined.
1082 */
1083 if ((LocaleCompare(id,"ImageMagick") != 0) ||
1084 (image->storage_class == UndefinedClass) ||
Cristycdc1b382016-03-25 09:35:56 -04001085 (image->compression == UndefinedCompression) ||
1086 (image->colorspace == UndefinedColorspace) ||
cristy3ed852e2009-09-05 21:47:34 +00001087 (image->columns == 0) || (image->rows == 0))
Cristycdc1b382016-03-25 09:35:56 -04001088 {
1089 if (image->previous == (Image *) NULL)
1090 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
Cristy5d95b4c2017-05-23 19:06:22 -04001091 DeleteImageFromList(&image);
Cristycdc1b382016-03-25 09:35:56 -04001092 (void) ThrowMagickException(exception,GetMagickModule(),
1093 CorruptImageError,"ImproperImageHeader","`%s'",image->filename);
1094 break;
1095 }
cristy3ed852e2009-09-05 21:47:34 +00001096 if (image->montage != (char *) NULL)
1097 {
1098 register char
1099 *p;
1100
1101 /*
1102 Image directory.
1103 */
cristy151b66d2015-04-15 10:50:31 +00001104 length=MagickPathExtent;
cristy3ed852e2009-09-05 21:47:34 +00001105 image->directory=AcquireString((char *) NULL);
1106 p=image->directory;
1107 do
1108 {
1109 *p='\0';
cristy151b66d2015-04-15 10:50:31 +00001110 if ((strlen(image->directory)+MagickPathExtent) >= length)
cristy3ed852e2009-09-05 21:47:34 +00001111 {
1112 /*
1113 Allocate more memory for the image directory.
1114 */
1115 length<<=1;
1116 image->directory=(char *) ResizeQuantumMemory(image->directory,
cristy151b66d2015-04-15 10:50:31 +00001117 length+MagickPathExtent,sizeof(*image->directory));
cristy3ed852e2009-09-05 21:47:34 +00001118 if (image->directory == (char *) NULL)
1119 ThrowReaderException(CorruptImageError,"UnableToReadImageData");
1120 p=image->directory+strlen(image->directory);
1121 }
1122 c=ReadBlobByte(image);
1123 *p++=(char) c;
1124 } while (c != (int) '\0');
1125 }
1126 if (profiles != (LinkedListInfo *) NULL)
1127 {
1128 const char
1129 *name;
1130
1131 const StringInfo
1132 *profile;
1133
1134 /*
1135 Read image profiles.
1136 */
1137 ResetLinkedListIterator(profiles);
1138 name=(const char *) GetNextValueInLinkedList(profiles);
1139 while (name != (const char *) NULL)
1140 {
1141 profile=GetImageProfile(image,name);
1142 if (profile != (StringInfo *) NULL)
1143 {
1144 register unsigned char
1145 *p;
1146
1147 p=GetStringInfoDatum(profile);
1148 count=ReadBlob(image,GetStringInfoLength(profile),p);
cristyda16f162011-02-19 23:52:17 +00001149 (void) count;
cristy3ed852e2009-09-05 21:47:34 +00001150 }
1151 name=(const char *) GetNextValueInLinkedList(profiles);
1152 }
1153 profiles=DestroyLinkedList(profiles,RelinquishMagickMemory);
1154 }
1155 image->depth=GetImageQuantumDepth(image,MagickFalse);
1156 if (image->storage_class == PseudoClass)
1157 {
Cristy98e5d002017-07-06 06:22:27 -04001158 size_t
1159 packet_size;
1160
1161 unsigned char
1162 *colormap;
1163
cristy3ed852e2009-09-05 21:47:34 +00001164 /*
1165 Create image colormap.
1166 */
Cristy98e5d002017-07-06 06:22:27 -04001167 packet_size=(size_t) (3UL*image->depth/8UL);
Cristy634ff4b2017-07-06 08:51:41 -04001168 if ((packet_size*colors) > GetBlobSize(image))
Cristy30a74ed2017-07-06 06:17:54 -04001169 ThrowReaderException(CorruptImageError,"InsufficientImageDataInFile");
cristy018f07f2011-09-04 21:15:19 +00001170 status=AcquireImageColormap(image,colors != 0 ? colors : 256,exception);
cristy3ed852e2009-09-05 21:47:34 +00001171 if (status == MagickFalse)
1172 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
1173 if (colors != 0)
1174 {
cristy3ed852e2009-09-05 21:47:34 +00001175 /*
1176 Read image colormap from file.
1177 */
cristy3ed852e2009-09-05 21:47:34 +00001178 colormap=(unsigned char *) AcquireQuantumMemory(image->colors,
1179 packet_size*sizeof(*colormap));
1180 if (colormap == (unsigned char *) NULL)
1181 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
1182 count=ReadBlob(image,packet_size*image->colors,colormap);
1183 p=colormap;
1184 switch (image->depth)
1185 {
1186 default:
1187 ThrowReaderException(CorruptImageError,
1188 "ImageDepthNotSupported");
1189 case 8:
1190 {
1191 unsigned char
1192 pixel;
1193
cristybb503372010-05-27 20:51:26 +00001194 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +00001195 {
1196 p=PushCharPixel(p,&pixel);
1197 image->colormap[i].red=ScaleCharToQuantum(pixel);
1198 p=PushCharPixel(p,&pixel);
1199 image->colormap[i].green=ScaleCharToQuantum(pixel);
1200 p=PushCharPixel(p,&pixel);
1201 image->colormap[i].blue=ScaleCharToQuantum(pixel);
1202 }
1203 break;
1204 }
1205 case 16:
1206 {
1207 unsigned short
1208 pixel;
1209
cristybb503372010-05-27 20:51:26 +00001210 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +00001211 {
1212 p=PushShortPixel(MSBEndian,p,&pixel);
1213 image->colormap[i].red=ScaleShortToQuantum(pixel);
1214 p=PushShortPixel(MSBEndian,p,&pixel);
1215 image->colormap[i].green=ScaleShortToQuantum(pixel);
1216 p=PushShortPixel(MSBEndian,p,&pixel);
1217 image->colormap[i].blue=ScaleShortToQuantum(pixel);
1218 }
1219 break;
1220 }
1221 case 32:
1222 {
cristy4cb162a2010-05-30 03:04:47 +00001223 unsigned int
cristy3ed852e2009-09-05 21:47:34 +00001224 pixel;
1225
cristybb503372010-05-27 20:51:26 +00001226 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +00001227 {
1228 p=PushLongPixel(MSBEndian,p,&pixel);
1229 image->colormap[i].red=ScaleLongToQuantum(pixel);
1230 p=PushLongPixel(MSBEndian,p,&pixel);
1231 image->colormap[i].green=ScaleLongToQuantum(pixel);
1232 p=PushLongPixel(MSBEndian,p,&pixel);
1233 image->colormap[i].blue=ScaleLongToQuantum(pixel);
1234 }
1235 break;
1236 }
1237 }
1238 colormap=(unsigned char *) RelinquishMagickMemory(colormap);
1239 }
1240 }
1241 if ((image_info->ping != MagickFalse) && (image_info->number_scenes != 0))
1242 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
1243 break;
cristyacabb842014-12-14 23:36:33 +00001244 status=SetImageExtent(image,image->columns,image->rows,exception);
1245 if (status == MagickFalse)
1246 return(DestroyImageList(image));
cristy3ed852e2009-09-05 21:47:34 +00001247 /*
1248 Allocate image pixels.
1249 */
cristy5f766ef2014-12-14 21:12:47 +00001250 quantum_info=AcquireQuantumInfo(image_info,image);
cristy3ed852e2009-09-05 21:47:34 +00001251 if (quantum_info == (QuantumInfo *) NULL)
1252 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
1253 if (quantum_format != UndefinedQuantumFormat)
1254 {
1255 status=SetQuantumFormat(image,quantum_info,quantum_format);
1256 if (status == MagickFalse)
1257 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
1258 }
1259 packet_size=(size_t) (quantum_info->depth/8);
1260 if (image->storage_class == DirectClass)
1261 packet_size=(size_t) (3*quantum_info->depth/8);
cristy325cfdc2012-04-28 01:00:09 +00001262 if (IsGrayColorspace(image->colorspace) != MagickFalse)
cristy0a30e182011-09-01 01:43:15 +00001263 packet_size=quantum_info->depth/8;
cristy9f36ba72014-12-07 22:55:01 +00001264 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001265 packet_size+=quantum_info->depth/8;
1266 if (image->colorspace == CMYKColorspace)
1267 packet_size+=quantum_info->depth/8;
1268 if (image->compression == RLECompression)
1269 packet_size++;
cristy1d3be432015-01-07 11:26:54 +00001270 compress_extent=MagickMax(MagickMax(BZipMaxExtent(packet_size*
1271 image->columns),LZMAMaxExtent(packet_size*image->columns)),
1272 ZipMaxExtent(packet_size*image->columns));
1273 compress_pixels=(unsigned char *) AcquireQuantumMemory(compress_extent,
cristy3ed852e2009-09-05 21:47:34 +00001274 sizeof(*compress_pixels));
1275 if (compress_pixels == (unsigned char *) NULL)
1276 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
1277 /*
1278 Read image pixels.
1279 */
1280 quantum_type=RGBQuantum;
cristy9f36ba72014-12-07 22:55:01 +00001281 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001282 quantum_type=RGBAQuantum;
1283 if (image->colorspace == CMYKColorspace)
1284 {
1285 quantum_type=CMYKQuantum;
cristy9f36ba72014-12-07 22:55:01 +00001286 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001287 quantum_type=CMYKAQuantum;
1288 }
cristy325cfdc2012-04-28 01:00:09 +00001289 if (IsGrayColorspace(image->colorspace) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001290 {
1291 quantum_type=GrayQuantum;
cristy9f36ba72014-12-07 22:55:01 +00001292 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001293 quantum_type=GrayAlphaQuantum;
1294 }
cristybdbf4b62012-05-13 22:22:59 +00001295 if (image->storage_class == PseudoClass)
1296 {
1297 quantum_type=IndexQuantum;
cristy9f36ba72014-12-07 22:55:01 +00001298 if (image->alpha_trait != UndefinedPixelTrait)
cristybdbf4b62012-05-13 22:22:59 +00001299 quantum_type=IndexAlphaQuantum;
1300 }
cristy330af6c2010-12-21 14:36:06 +00001301 status=MagickTrue;
cristyd9a94d32014-01-11 21:56:26 +00001302 GetPixelInfo(image,&pixel);
cristy16abe0b2014-01-11 21:26:27 +00001303#if defined(MAGICKCORE_BZLIB_DELEGATE)
1304 (void) ResetMagickMemory(&bzip_info,0,sizeof(bzip_info));
1305#endif
1306#if defined(MAGICKCORE_LZMA_DELEGATE)
1307 (void) ResetMagickMemory(&allocator,0,sizeof(allocator));
1308#endif
1309#if defined(MAGICKCORE_ZLIB_DELEGATE)
1310 (void) ResetMagickMemory(&zip_info,0,sizeof(zip_info));
1311#endif
cristy330af6c2010-12-21 14:36:06 +00001312 switch (image->compression)
1313 {
1314#if defined(MAGICKCORE_BZLIB_DELEGATE)
1315 case BZipCompression:
1316 {
cristy3a99dcf2011-12-17 01:29:40 +00001317 int
1318 code;
1319
cristy330af6c2010-12-21 14:36:06 +00001320 bzip_info.bzalloc=AcquireBZIPMemory;
1321 bzip_info.bzfree=RelinquishBZIPMemory;
1322 bzip_info.opaque=(void *) NULL;
1323 code=BZ2_bzDecompressInit(&bzip_info,(int) image_info->verbose,
1324 MagickFalse);
1325 if (code != BZ_OK)
1326 status=MagickFalse;
cristy330af6c2010-12-21 14:36:06 +00001327 break;
1328 }
1329#endif
1330#if defined(MAGICKCORE_LZMA_DELEGATE)
1331 case LZMACompression:
1332 {
cristy3a99dcf2011-12-17 01:29:40 +00001333 int
1334 code;
1335
cristy9d72f1a2010-12-21 20:46:59 +00001336 allocator.alloc=AcquireLZMAMemory;
1337 allocator.free=RelinquishLZMAMemory;
cristy330af6c2010-12-21 14:36:06 +00001338 lzma_info=initialize_lzma;
cristy9d72f1a2010-12-21 20:46:59 +00001339 lzma_info.allocator=(&allocator);
cristy330af6c2010-12-21 14:36:06 +00001340 code=lzma_auto_decoder(&lzma_info,-1,0);
1341 if (code != LZMA_OK)
1342 status=MagickFalse;
cristy330af6c2010-12-21 14:36:06 +00001343 break;
1344 }
1345#endif
1346#if defined(MAGICKCORE_ZLIB_DELEGATE)
1347 case LZWCompression:
1348 case ZipCompression:
1349 {
cristy3a99dcf2011-12-17 01:29:40 +00001350 int
1351 code;
1352
cristy330af6c2010-12-21 14:36:06 +00001353 zip_info.zalloc=AcquireZIPMemory;
1354 zip_info.zfree=RelinquishZIPMemory;
1355 zip_info.opaque=(voidpf) NULL;
1356 code=inflateInit(&zip_info);
1357 if (code != Z_OK)
1358 status=MagickFalse;
cristy330af6c2010-12-21 14:36:06 +00001359 break;
1360 }
1361#endif
1362 case RLECompression:
cristy330af6c2010-12-21 14:36:06 +00001363 break;
cristy330af6c2010-12-21 14:36:06 +00001364 default:
1365 break;
1366 }
cristyb3f97ae2015-05-18 12:29:32 +00001367 pixels=(unsigned char *) GetQuantumPixels(quantum_info);
cristy3ed852e2009-09-05 21:47:34 +00001368 length=0;
cristybb503372010-05-27 20:51:26 +00001369 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00001370 {
cristybb503372010-05-27 20:51:26 +00001371 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001372 x;
1373
cristy4c08aed2011-07-01 19:47:50 +00001374 register Quantum
dirk05d2ff72015-11-18 23:13:43 +01001375 *magick_restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001376
cristy330af6c2010-12-21 14:36:06 +00001377 if (status == MagickFalse)
1378 break;
cristy3ed852e2009-09-05 21:47:34 +00001379 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +00001380 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001381 break;
cristy3ed852e2009-09-05 21:47:34 +00001382 switch (image->compression)
1383 {
cristy3ed852e2009-09-05 21:47:34 +00001384#if defined(MAGICKCORE_BZLIB_DELEGATE)
1385 case BZipCompression:
1386 {
cristy3ed852e2009-09-05 21:47:34 +00001387 bzip_info.next_out=(char *) pixels;
1388 bzip_info.avail_out=(unsigned int) (packet_size*image->columns);
1389 do
1390 {
cristy89f839d2015-01-25 17:32:32 +00001391 int
1392 code;
1393
cristy3ed852e2009-09-05 21:47:34 +00001394 if (bzip_info.avail_in == 0)
1395 {
1396 bzip_info.next_in=(char *) compress_pixels;
1397 length=(size_t) BZipMaxExtent(packet_size*image->columns);
cristy261ce822012-02-19 22:08:28 +00001398 if (version != 0.0)
cristy3ed852e2009-09-05 21:47:34 +00001399 length=(size_t) ReadBlobMSBLong(image);
cristy1d3be432015-01-07 11:26:54 +00001400 if (length > compress_extent)
cristyfda8bdc2015-07-28 22:50:33 +00001401 {
1402 (void) BZ2_bzDecompressEnd(&bzip_info);
1403 ThrowReaderException(CorruptImageError,
1404 "UnableToReadImageData");
1405 }
cristy3ed852e2009-09-05 21:47:34 +00001406 bzip_info.avail_in=(unsigned int) ReadBlob(image,length,
1407 (unsigned char *) bzip_info.next_in);
1408 }
cristy89f839d2015-01-25 17:32:32 +00001409 code=BZ2_bzDecompress(&bzip_info);
1410 if (code < 0)
1411 {
1412 status=MagickFalse;
1413 break;
1414 }
1415 if (code == BZ_STREAM_END)
cristy3ed852e2009-09-05 21:47:34 +00001416 break;
1417 } while (bzip_info.avail_out != 0);
cristy26377172010-12-20 19:01:58 +00001418 (void) ImportQuantumPixels(image,(CacheView *) NULL,quantum_info,
1419 quantum_type,pixels,exception);
1420 break;
1421 }
1422#endif
1423#if defined(MAGICKCORE_LZMA_DELEGATE)
1424 case LZMACompression:
1425 {
cristy26377172010-12-20 19:01:58 +00001426 lzma_info.next_out=pixels;
cristy330af6c2010-12-21 14:36:06 +00001427 lzma_info.avail_out=packet_size*image->columns;
cristy26377172010-12-20 19:01:58 +00001428 do
1429 {
cristy3a99dcf2011-12-17 01:29:40 +00001430 int
1431 code;
1432
cristy26377172010-12-20 19:01:58 +00001433 if (lzma_info.avail_in == 0)
1434 {
1435 lzma_info.next_in=compress_pixels;
1436 length=(size_t) ReadBlobMSBLong(image);
cristy1d3be432015-01-07 11:26:54 +00001437 if (length > compress_extent)
cristyfda8bdc2015-07-28 22:50:33 +00001438 {
1439 lzma_end(&lzma_info);
1440 ThrowReaderException(CorruptImageError,
1441 "UnableToReadImageData");
1442 }
cristy26377172010-12-20 19:01:58 +00001443 lzma_info.avail_in=(unsigned int) ReadBlob(image,length,
1444 (unsigned char *) lzma_info.next_in);
1445 }
1446 code=lzma_code(&lzma_info,LZMA_RUN);
cristy330af6c2010-12-21 14:36:06 +00001447 if (code < 0)
1448 {
1449 status=MagickFalse;
1450 break;
1451 }
1452 if (code == LZMA_STREAM_END)
cristy26377172010-12-20 19:01:58 +00001453 break;
1454 } while (lzma_info.avail_out != 0);
cristy26377172010-12-20 19:01:58 +00001455 (void) ImportQuantumPixels(image,(CacheView *) NULL,quantum_info,
1456 quantum_type,pixels,exception);
1457 break;
1458 }
1459#endif
1460#if defined(MAGICKCORE_ZLIB_DELEGATE)
1461 case LZWCompression:
1462 case ZipCompression:
1463 {
cristy26377172010-12-20 19:01:58 +00001464 zip_info.next_out=pixels;
1465 zip_info.avail_out=(uInt) (packet_size*image->columns);
1466 do
1467 {
cristy89f839d2015-01-25 17:32:32 +00001468 int
1469 code;
1470
cristy26377172010-12-20 19:01:58 +00001471 if (zip_info.avail_in == 0)
1472 {
1473 zip_info.next_in=compress_pixels;
1474 length=(size_t) ZipMaxExtent(packet_size*image->columns);
cristy261ce822012-02-19 22:08:28 +00001475 if (version != 0.0)
cristy26377172010-12-20 19:01:58 +00001476 length=(size_t) ReadBlobMSBLong(image);
cristy1d3be432015-01-07 11:26:54 +00001477 if (length > compress_extent)
cristyfda8bdc2015-07-28 22:50:33 +00001478 {
1479 (void) inflateEnd(&zip_info);
1480 ThrowReaderException(CorruptImageError,
1481 "UnableToReadImageData");
1482 }
cristy26377172010-12-20 19:01:58 +00001483 zip_info.avail_in=(unsigned int) ReadBlob(image,length,
1484 zip_info.next_in);
1485 }
cristy89f839d2015-01-25 17:32:32 +00001486 code=inflate(&zip_info,Z_SYNC_FLUSH);
1487 if (code < 0)
1488 {
1489 status=MagickFalse;
1490 break;
1491 }
1492 if (code == Z_STREAM_END)
cristy26377172010-12-20 19:01:58 +00001493 break;
1494 } while (zip_info.avail_out != 0);
cristy3ed852e2009-09-05 21:47:34 +00001495 (void) ImportQuantumPixels(image,(CacheView *) NULL,quantum_info,
1496 quantum_type,pixels,exception);
1497 break;
1498 }
1499#endif
1500 case RLECompression:
1501 {
cristybb503372010-05-27 20:51:26 +00001502 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00001503 {
1504 if (length == 0)
1505 {
1506 count=ReadBlob(image,packet_size,pixels);
cristyc82a27b2011-10-21 01:07:16 +00001507 PushRunlengthPacket(image,pixels,&length,&pixel,exception);
cristy3ed852e2009-09-05 21:47:34 +00001508 }
1509 length--;
cristy4c08aed2011-07-01 19:47:50 +00001510 if (image->storage_class == PseudoClass)
cristy94b11832011-09-08 19:46:03 +00001511 SetPixelIndex(image,ClampToQuantum(pixel.index),q);
cristy4c08aed2011-07-01 19:47:50 +00001512 else
1513 {
cristy94b11832011-09-08 19:46:03 +00001514 SetPixelRed(image,ClampToQuantum(pixel.red),q);
1515 SetPixelGreen(image,ClampToQuantum(pixel.green),q);
1516 SetPixelBlue(image,ClampToQuantum(pixel.blue),q);
cristy4c08aed2011-07-01 19:47:50 +00001517 if (image->colorspace == CMYKColorspace)
cristy94b11832011-09-08 19:46:03 +00001518 SetPixelBlack(image,ClampToQuantum(pixel.black),q);
cristy4c08aed2011-07-01 19:47:50 +00001519 }
cristy9f36ba72014-12-07 22:55:01 +00001520 if (image->alpha_trait != UndefinedPixelTrait)
cristy94b11832011-09-08 19:46:03 +00001521 SetPixelAlpha(image,ClampToQuantum(pixel.alpha),q);
cristyed231572011-07-14 02:18:59 +00001522 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001523 }
1524 break;
1525 }
1526 default:
1527 {
1528 count=ReadBlob(image,packet_size*image->columns,pixels);
1529 (void) ImportQuantumPixels(image,(CacheView *) NULL,quantum_info,
1530 quantum_type,pixels,exception);
1531 break;
1532 }
1533 }
1534 if (SyncAuthenticPixels(image,exception) == MagickFalse)
1535 break;
1536 }
1537 SetQuantumImageType(image,quantum_type);
cristy330af6c2010-12-21 14:36:06 +00001538 switch (image->compression)
1539 {
1540#if defined(MAGICKCORE_BZLIB_DELEGATE)
1541 case BZipCompression:
1542 {
cristy3a99dcf2011-12-17 01:29:40 +00001543 int
1544 code;
1545
cristy261ce822012-02-19 22:08:28 +00001546 if (version == 0.0)
cristy330af6c2010-12-21 14:36:06 +00001547 {
1548 MagickOffsetType
1549 offset;
1550
1551 offset=SeekBlob(image,-((MagickOffsetType)
1552 bzip_info.avail_in),SEEK_CUR);
1553 if (offset < 0)
cristy3e4e9f42013-04-06 22:29:40 +00001554 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy330af6c2010-12-21 14:36:06 +00001555 }
1556 code=BZ2_bzDecompressEnd(&bzip_info);
1557 if (code != BZ_OK)
1558 status=MagickFalse;
1559 break;
1560 }
1561#endif
1562#if defined(MAGICKCORE_LZMA_DELEGATE)
1563 case LZMACompression:
1564 {
cristy3a99dcf2011-12-17 01:29:40 +00001565 int
1566 code;
1567
cristy3b788a02010-12-27 15:59:54 +00001568 code=lzma_code(&lzma_info,LZMA_FINISH);
1569 if ((code != LZMA_STREAM_END) && (code != LZMA_OK))
cristyb977da52010-12-22 15:55:53 +00001570 status=MagickFalse;
cristy330af6c2010-12-21 14:36:06 +00001571 lzma_end(&lzma_info);
1572 break;
1573 }
1574#endif
1575#if defined(MAGICKCORE_ZLIB_DELEGATE)
1576 case LZWCompression:
1577 case ZipCompression:
1578 {
cristy3a99dcf2011-12-17 01:29:40 +00001579 int
1580 code;
1581
cristy261ce822012-02-19 22:08:28 +00001582 if (version == 0.0)
cristy330af6c2010-12-21 14:36:06 +00001583 {
1584 MagickOffsetType
1585 offset;
1586
1587 offset=SeekBlob(image,-((MagickOffsetType) zip_info.avail_in),
1588 SEEK_CUR);
1589 if (offset < 0)
cristy3e4e9f42013-04-06 22:29:40 +00001590 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy330af6c2010-12-21 14:36:06 +00001591 }
1592 code=inflateEnd(&zip_info);
1593 if (code != LZMA_OK)
1594 status=MagickFalse;
1595 break;
1596 }
1597#endif
1598 default:
1599 break;
1600 }
cristy3ed852e2009-09-05 21:47:34 +00001601 quantum_info=DestroyQuantumInfo(quantum_info);
1602 compress_pixels=(unsigned char *) RelinquishMagickMemory(compress_pixels);
cristybb503372010-05-27 20:51:26 +00001603 if (((y != (ssize_t) image->rows)) || (status == MagickFalse))
cristy3ed852e2009-09-05 21:47:34 +00001604 {
1605 image=DestroyImageList(image);
1606 return((Image *) NULL);
1607 }
1608 if (EOFBlob(image) != MagickFalse)
1609 {
1610 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
1611 image->filename);
1612 break;
1613 }
1614 /*
1615 Proceed to next image.
1616 */
1617 if (image_info->number_scenes != 0)
1618 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
1619 break;
1620 do
1621 {
1622 c=ReadBlobByte(image);
1623 } while ((isgraph(c) == MagickFalse) && (c != EOF));
1624 if (c != EOF)
1625 {
1626 /*
1627 Allocate next image structure.
1628 */
cristy9950d572011-10-01 18:22:35 +00001629 AcquireNextImage(image_info,image,exception);
cristy3ed852e2009-09-05 21:47:34 +00001630 if (GetNextImageInList(image) == (Image *) NULL)
1631 {
1632 image=DestroyImageList(image);
1633 return((Image *) NULL);
1634 }
1635 image=SyncNextImageInList(image);
1636 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
1637 GetBlobSize(image));
1638 if (status == MagickFalse)
1639 break;
1640 }
1641 } while (c != EOF);
1642 (void) CloseBlob(image);
1643 return(GetFirstImageInList(image));
1644}
1645
1646/*
1647%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1648% %
1649% %
1650% %
1651% R e g i s t e r M I F F I m a g e %
1652% %
1653% %
1654% %
1655%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1656%
1657% RegisterMIFFImage() adds properties for the MIFF image format to the list of
1658% supported formats. The properties include the image format tag, a method to
1659% read and/or write the format, whether the format supports the saving of more
1660% than one frame to the same file or blob, whether the format supports native
1661% in-memory I/O, and a brief description of the format.
1662%
1663% The format of the RegisterMIFFImage method is:
1664%
cristybb503372010-05-27 20:51:26 +00001665% size_t RegisterMIFFImage(void)
cristy3ed852e2009-09-05 21:47:34 +00001666%
1667*/
cristybb503372010-05-27 20:51:26 +00001668ModuleExport size_t RegisterMIFFImage(void)
cristy3ed852e2009-09-05 21:47:34 +00001669{
1670 char
cristy151b66d2015-04-15 10:50:31 +00001671 version[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +00001672
1673 MagickInfo
1674 *entry;
1675
1676 *version='\0';
1677#if defined(MagickImageCoderSignatureText)
cristy151b66d2015-04-15 10:50:31 +00001678 (void) CopyMagickString(version,MagickLibVersionText,MagickPathExtent);
cristy3ed852e2009-09-05 21:47:34 +00001679#if defined(ZLIB_VERSION)
cristy151b66d2015-04-15 10:50:31 +00001680 (void) ConcatenateMagickString(version," with Zlib ",MagickPathExtent);
1681 (void) ConcatenateMagickString(version,ZLIB_VERSION,MagickPathExtent);
cristy3ed852e2009-09-05 21:47:34 +00001682#endif
1683#if defined(MAGICKCORE_BZLIB_DELEGATE)
cristy151b66d2015-04-15 10:50:31 +00001684 (void) ConcatenateMagickString(version," and BZlib",MagickPathExtent);
cristy3ed852e2009-09-05 21:47:34 +00001685#endif
1686#endif
dirk06b627a2015-04-06 18:59:17 +00001687 entry=AcquireMagickInfo("MIFF","MIFF","Magick Image File Format");
cristy3ed852e2009-09-05 21:47:34 +00001688 entry->decoder=(DecodeImageHandler *) ReadMIFFImage;
1689 entry->encoder=(EncodeImageHandler *) WriteMIFFImage;
1690 entry->magick=(IsImageFormatHandler *) IsMIFF;
Dirk Lemstra8974d772017-01-22 03:19:27 +01001691 entry->flags|=CoderDecoderSeekableStreamFlag;
cristy3ed852e2009-09-05 21:47:34 +00001692 if (*version != '\0')
1693 entry->version=ConstantString(version);
cristy3ed852e2009-09-05 21:47:34 +00001694 (void) RegisterMagickInfo(entry);
1695 return(MagickImageCoderSignature);
1696}
1697
1698/*
1699%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1700% %
1701% %
1702% %
1703% U n r e g i s t e r M I F F I m a g e %
1704% %
1705% %
1706% %
1707%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1708%
1709% UnregisterMIFFImage() removes format registrations made by the MIFF module
1710% from the list of supported formats.
1711%
1712% The format of the UnregisterMIFFImage method is:
1713%
1714% UnregisterMIFFImage(void)
1715%
1716*/
1717ModuleExport void UnregisterMIFFImage(void)
1718{
1719 (void) UnregisterMagickInfo("MIFF");
1720}
1721
1722/*
1723%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1724% %
1725% %
1726% %
1727% W r i t e M I F F I m a g e %
1728% %
1729% %
1730% %
1731%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1732%
1733% WriteMIFFImage() writes a MIFF image to a file.
1734%
1735% The format of the WriteMIFFImage method is:
1736%
1737% MagickBooleanType WriteMIFFImage(const ImageInfo *image_info,
cristy1e178e72011-08-28 19:44:34 +00001738% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001739%
1740% Compression code contributed by Kyle Shorter.
1741%
1742% A description of each parameter follows:
1743%
1744% o image_info: the image info.
1745%
1746% o image: the image.
1747%
cristy1e178e72011-08-28 19:44:34 +00001748% o exception: return any errors or warnings in this structure.
1749%
cristy3ed852e2009-09-05 21:47:34 +00001750*/
1751
1752static unsigned char *PopRunlengthPacket(Image *image,unsigned char *pixels,
cristyc82a27b2011-10-21 01:07:16 +00001753 size_t length,PixelInfo *pixel,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001754{
1755 if (image->storage_class != DirectClass)
1756 {
cristy42c36c12014-04-27 19:57:46 +00001757 unsigned int
1758 value;
1759
1760 value=(unsigned int) ClampToQuantum(pixel->index);
cristy3ed852e2009-09-05 21:47:34 +00001761 switch (image->depth)
1762 {
1763 case 32:
1764 {
cristy42c36c12014-04-27 19:57:46 +00001765 *pixels++=(unsigned char) (value >> 24);
1766 *pixels++=(unsigned char) (value >> 16);
cristy3ed852e2009-09-05 21:47:34 +00001767 }
1768 case 16:
cristy42c36c12014-04-27 19:57:46 +00001769 *pixels++=(unsigned char) (value >> 8);
cristy3ed852e2009-09-05 21:47:34 +00001770 case 8:
1771 {
cristy42c36c12014-04-27 19:57:46 +00001772 *pixels++=(unsigned char) value;
cristy3ed852e2009-09-05 21:47:34 +00001773 break;
1774 }
1775 default:
cristyc82a27b2011-10-21 01:07:16 +00001776 (void) ThrowMagickException(exception,GetMagickModule(),
cristy3ed852e2009-09-05 21:47:34 +00001777 CorruptImageError,"ImageDepthNotSupported","`%s'",image->filename);
1778 }
1779 switch (image->depth)
1780 {
1781 case 32:
1782 {
cristy4cb162a2010-05-30 03:04:47 +00001783 unsigned int
cristy3ed852e2009-09-05 21:47:34 +00001784 value;
1785
cristy9f36ba72014-12-07 22:55:01 +00001786 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001787 {
cristy94b11832011-09-08 19:46:03 +00001788 value=ScaleQuantumToLong(ClampToQuantum(pixel->alpha));
cristy3ed852e2009-09-05 21:47:34 +00001789 pixels=PopLongPixel(MSBEndian,value,pixels);
1790 }
1791 break;
1792 }
1793 case 16:
1794 {
1795 unsigned short
1796 value;
1797
cristy9f36ba72014-12-07 22:55:01 +00001798 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001799 {
cristy94b11832011-09-08 19:46:03 +00001800 value=ScaleQuantumToShort(ClampToQuantum(pixel->alpha));
cristy3ed852e2009-09-05 21:47:34 +00001801 pixels=PopShortPixel(MSBEndian,value,pixels);
1802 }
1803 break;
1804 }
1805 case 8:
1806 {
1807 unsigned char
1808 value;
1809
cristy9f36ba72014-12-07 22:55:01 +00001810 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001811 {
cristy94b11832011-09-08 19:46:03 +00001812 value=(unsigned char) ScaleQuantumToChar(ClampToQuantum(
1813 pixel->alpha));
cristy3ed852e2009-09-05 21:47:34 +00001814 pixels=PopCharPixel(value,pixels);
1815 }
1816 break;
1817 }
1818 default:
cristyc82a27b2011-10-21 01:07:16 +00001819 (void) ThrowMagickException(exception,GetMagickModule(),
cristy3ed852e2009-09-05 21:47:34 +00001820 CorruptImageError,"ImageDepthNotSupported","`%s'",image->filename);
1821 }
1822 *pixels++=(unsigned char) length;
1823 return(pixels);
1824 }
1825 switch (image->depth)
1826 {
1827 case 32:
1828 {
cristy4cb162a2010-05-30 03:04:47 +00001829 unsigned int
cristy3ed852e2009-09-05 21:47:34 +00001830 value;
1831
cristy94b11832011-09-08 19:46:03 +00001832 value=ScaleQuantumToLong(ClampToQuantum(pixel->red));
cristy3ed852e2009-09-05 21:47:34 +00001833 pixels=PopLongPixel(MSBEndian,value,pixels);
cristy325cfdc2012-04-28 01:00:09 +00001834 if (IsGrayColorspace(image->colorspace) == MagickFalse)
1835 {
1836 value=ScaleQuantumToLong(ClampToQuantum(pixel->green));
1837 pixels=PopLongPixel(MSBEndian,value,pixels);
1838 value=ScaleQuantumToLong(ClampToQuantum(pixel->blue));
1839 pixels=PopLongPixel(MSBEndian,value,pixels);
1840 }
cristy3ed852e2009-09-05 21:47:34 +00001841 if (image->colorspace == CMYKColorspace)
1842 {
cristy94b11832011-09-08 19:46:03 +00001843 value=ScaleQuantumToLong(ClampToQuantum(pixel->black));
cristy4c08aed2011-07-01 19:47:50 +00001844 pixels=PopLongPixel(MSBEndian,value,pixels);
1845 }
cristy9f36ba72014-12-07 22:55:01 +00001846 if (image->alpha_trait != UndefinedPixelTrait)
cristy4c08aed2011-07-01 19:47:50 +00001847 {
cristy94b11832011-09-08 19:46:03 +00001848 value=ScaleQuantumToLong(ClampToQuantum(pixel->alpha));
cristy3ed852e2009-09-05 21:47:34 +00001849 pixels=PopLongPixel(MSBEndian,value,pixels);
1850 }
1851 break;
1852 }
1853 case 16:
1854 {
1855 unsigned short
1856 value;
1857
cristy94b11832011-09-08 19:46:03 +00001858 value=ScaleQuantumToShort(ClampToQuantum(pixel->red));
cristy3ed852e2009-09-05 21:47:34 +00001859 pixels=PopShortPixel(MSBEndian,value,pixels);
cristy325cfdc2012-04-28 01:00:09 +00001860 if (IsGrayColorspace(image->colorspace) == MagickFalse)
1861 {
1862 value=ScaleQuantumToShort(ClampToQuantum(pixel->green));
1863 pixels=PopShortPixel(MSBEndian,value,pixels);
1864 value=ScaleQuantumToShort(ClampToQuantum(pixel->blue));
1865 pixels=PopShortPixel(MSBEndian,value,pixels);
1866 }
cristy3ed852e2009-09-05 21:47:34 +00001867 if (image->colorspace == CMYKColorspace)
1868 {
cristy94b11832011-09-08 19:46:03 +00001869 value=ScaleQuantumToShort(ClampToQuantum(pixel->black));
cristy4c08aed2011-07-01 19:47:50 +00001870 pixels=PopShortPixel(MSBEndian,value,pixels);
1871 }
cristy9f36ba72014-12-07 22:55:01 +00001872 if (image->alpha_trait != UndefinedPixelTrait)
cristy4c08aed2011-07-01 19:47:50 +00001873 {
cristy94b11832011-09-08 19:46:03 +00001874 value=ScaleQuantumToShort(ClampToQuantum(pixel->alpha));
cristy3ed852e2009-09-05 21:47:34 +00001875 pixels=PopShortPixel(MSBEndian,value,pixels);
1876 }
1877 break;
1878 }
1879 case 8:
1880 {
1881 unsigned char
1882 value;
1883
cristy94b11832011-09-08 19:46:03 +00001884 value=(unsigned char) ScaleQuantumToChar(ClampToQuantum(pixel->red));
cristy3ed852e2009-09-05 21:47:34 +00001885 pixels=PopCharPixel(value,pixels);
cristy325cfdc2012-04-28 01:00:09 +00001886 if (IsGrayColorspace(image->colorspace) == MagickFalse)
1887 {
1888 value=(unsigned char) ScaleQuantumToChar(ClampToQuantum(
1889 pixel->green));
1890 pixels=PopCharPixel(value,pixels);
1891 value=(unsigned char) ScaleQuantumToChar(ClampToQuantum(pixel->blue));
1892 pixels=PopCharPixel(value,pixels);
1893 }
cristy3ed852e2009-09-05 21:47:34 +00001894 if (image->colorspace == CMYKColorspace)
1895 {
cristy94b11832011-09-08 19:46:03 +00001896 value=(unsigned char) ScaleQuantumToChar(ClampToQuantum(
1897 pixel->black));
cristy4c08aed2011-07-01 19:47:50 +00001898 pixels=PopCharPixel(value,pixels);
1899 }
cristy9f36ba72014-12-07 22:55:01 +00001900 if (image->alpha_trait != UndefinedPixelTrait)
cristy4c08aed2011-07-01 19:47:50 +00001901 {
cristy94b11832011-09-08 19:46:03 +00001902 value=(unsigned char) ScaleQuantumToChar(ClampToQuantum(
1903 pixel->alpha));
cristy3ed852e2009-09-05 21:47:34 +00001904 pixels=PopCharPixel(value,pixels);
1905 }
1906 break;
1907 }
1908 default:
cristyc82a27b2011-10-21 01:07:16 +00001909 (void) ThrowMagickException(exception,GetMagickModule(),CorruptImageError,
1910 "ImageDepthNotSupported","`%s'",image->filename);
cristy3ed852e2009-09-05 21:47:34 +00001911 }
1912 *pixels++=(unsigned char) length;
1913 return(pixels);
1914}
1915
1916static MagickBooleanType WriteMIFFImage(const ImageInfo *image_info,
cristy1e178e72011-08-28 19:44:34 +00001917 Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001918{
1919#if defined(MAGICKCORE_BZLIB_DELEGATE)
1920 bz_stream
1921 bzip_info;
1922#endif
1923
1924 char
cristy151b66d2015-04-15 10:50:31 +00001925 buffer[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +00001926
1927 CompressionType
1928 compression;
1929
1930 const char
1931 *property,
1932 *value;
1933
cristy26377172010-12-20 19:01:58 +00001934#if defined(MAGICKCORE_LZMA_DELEGATE)
cristy4b46dba2010-12-20 19:18:20 +00001935 lzma_allocator
1936 allocator;
1937
cristy26377172010-12-20 19:01:58 +00001938 lzma_stream
cristy330af6c2010-12-21 14:36:06 +00001939 initialize_lzma = LZMA_STREAM_INIT,
1940 lzma_info;
cristy26377172010-12-20 19:01:58 +00001941#endif
cristy3ed852e2009-09-05 21:47:34 +00001942
1943 MagickBooleanType
1944 status;
1945
1946 MagickOffsetType
1947 scene;
1948
cristy4c08aed2011-07-01 19:47:50 +00001949 PixelInfo
1950 pixel,
1951 target;
cristy3ed852e2009-09-05 21:47:34 +00001952
1953 QuantumInfo
1954 *quantum_info;
1955
1956 QuantumType
1957 quantum_type;
1958
cristybb503372010-05-27 20:51:26 +00001959 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001960 i;
1961
1962 size_t
1963 length,
1964 packet_size;
1965
cristy26377172010-12-20 19:01:58 +00001966 ssize_t
1967 y;
1968
cristy3ed852e2009-09-05 21:47:34 +00001969 unsigned char
1970 *compress_pixels,
1971 *pixels,
1972 *q;
1973
1974#if defined(MAGICKCORE_ZLIB_DELEGATE)
1975 z_stream
1976 zip_info;
1977#endif
1978
1979 /*
1980 Open output image file.
1981 */
1982 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001983 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00001984 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001985 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00001986 if (image->debug != MagickFalse)
1987 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3a37efd2011-08-28 20:31:03 +00001988 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001989 assert(exception->signature == MagickCoreSignature);
cristy1e178e72011-08-28 19:44:34 +00001990 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +00001991 if (status == MagickFalse)
1992 return(status);
cristy3ed852e2009-09-05 21:47:34 +00001993 scene=0;
1994 do
1995 {
1996 /*
1997 Allocate image pixels.
1998 */
cristyd7f03932013-04-07 01:19:28 +00001999 if ((image->storage_class == PseudoClass) &&
2000 (image->colors > (size_t) (GetQuantumRange(image->depth)+1)))
2001 (void) SetImageStorageClass(image,DirectClass,exception);
cristyca5fbf32013-03-30 00:04:11 +00002002 image->depth=image->depth <= 8 ? 8UL : image->depth <= 16 ? 16UL :
2003 image->depth <= 32 ? 32UL : 64UL;
cristy5f766ef2014-12-14 21:12:47 +00002004 quantum_info=AcquireQuantumInfo(image_info,image);
cristy3ed852e2009-09-05 21:47:34 +00002005 if (quantum_info == (QuantumInfo *) NULL)
2006 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
2007 if ((image->storage_class != PseudoClass) && (image->depth >= 32) &&
2008 (quantum_info->format == UndefinedQuantumFormat) &&
cristy1e178e72011-08-28 19:44:34 +00002009 (IsHighDynamicRangeImage(image,exception) != MagickFalse))
cristy3ed852e2009-09-05 21:47:34 +00002010 {
2011 status=SetQuantumFormat(image,quantum_info,FloatingPointQuantumFormat);
2012 if (status == MagickFalse)
2013 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
2014 }
dirk29dd80e2013-10-31 23:11:11 +00002015 compression=UndefinedCompression;
cristy3ed852e2009-09-05 21:47:34 +00002016 if (image_info->compression != UndefinedCompression)
2017 compression=image_info->compression;
2018 switch (compression)
2019 {
cristy49f95c22013-05-09 11:32:05 +00002020#if !defined(MAGICKCORE_LZMA_DELEGATE)
cristy26377172010-12-20 19:01:58 +00002021 case LZMACompression: compression=NoCompression; break;
2022#endif
2023#if !defined(MAGICKCORE_ZLIB_DELEGATE)
cristy3ed852e2009-09-05 21:47:34 +00002024 case LZWCompression:
2025 case ZipCompression: compression=NoCompression; break;
2026#endif
2027#if !defined(MAGICKCORE_BZLIB_DELEGATE)
2028 case BZipCompression: compression=NoCompression; break;
2029#endif
2030 case RLECompression:
2031 {
2032 if (quantum_info->format == FloatingPointQuantumFormat)
2033 compression=NoCompression;
cristy4c08aed2011-07-01 19:47:50 +00002034 GetPixelInfo(image,&target);
cristy3ed852e2009-09-05 21:47:34 +00002035 break;
2036 }
2037 default:
2038 break;
2039 }
2040 packet_size=(size_t) (quantum_info->depth/8);
2041 if (image->storage_class == DirectClass)
2042 packet_size=(size_t) (3*quantum_info->depth/8);
cristy325cfdc2012-04-28 01:00:09 +00002043 if (IsGrayColorspace(image->colorspace) != MagickFalse)
cristy0a30e182011-09-01 01:43:15 +00002044 packet_size=(size_t) (quantum_info->depth/8);
cristy9f36ba72014-12-07 22:55:01 +00002045 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00002046 packet_size+=quantum_info->depth/8;
2047 if (image->colorspace == CMYKColorspace)
2048 packet_size+=quantum_info->depth/8;
2049 if (compression == RLECompression)
2050 packet_size++;
cristy3ed852e2009-09-05 21:47:34 +00002051 length=MagickMax(BZipMaxExtent(packet_size*image->columns),ZipMaxExtent(
2052 packet_size*image->columns));
2053 if ((compression == BZipCompression) || (compression == ZipCompression))
2054 if (length != (size_t) ((unsigned int) length))
2055 compression=NoCompression;
2056 compress_pixels=(unsigned char *) AcquireQuantumMemory(length,
2057 sizeof(*compress_pixels));
2058 if (compress_pixels == (unsigned char *) NULL)
2059 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
2060 /*
2061 Write MIFF header.
2062 */
Cristy26645012015-08-23 20:24:30 -04002063 (void) WriteBlobString(image,"id=ImageMagick version=1.0\n");
cristy151b66d2015-04-15 10:50:31 +00002064 (void) FormatLocaleString(buffer,MagickPathExtent,
cristy8a46d822012-08-28 23:32:39 +00002065 "class=%s colors=%.20g alpha-trait=%s\n",CommandOptionToMnemonic(
cristye8c25f92010-06-03 00:53:06 +00002066 MagickClassOptions,image->storage_class),(double) image->colors,
cristy8a46d822012-08-28 23:32:39 +00002067 CommandOptionToMnemonic(MagickPixelTraitOptions,(ssize_t)
cristy9f36ba72014-12-07 22:55:01 +00002068 image->alpha_trait));
cristy3ed852e2009-09-05 21:47:34 +00002069 (void) WriteBlobString(image,buffer);
Cristy4cb7acb2015-08-30 09:56:13 -04002070 if (image->alpha_trait != UndefinedPixelTrait)
2071 (void) WriteBlobString(image,"matte=True\n");
Cristy6ffac4f2015-08-23 10:55:57 -04002072 (void) FormatLocaleString(buffer,MagickPathExtent,
2073 "columns=%.20g rows=%.20g depth=%.20g\n",(double) image->columns,
2074 (double) image->rows,(double) image->depth);
cristy3ed852e2009-09-05 21:47:34 +00002075 (void) WriteBlobString(image,buffer);
cristy5f1c1ff2010-12-23 21:38:06 +00002076 if (image->type != UndefinedType)
cristy3ed852e2009-09-05 21:47:34 +00002077 {
cristy151b66d2015-04-15 10:50:31 +00002078 (void) FormatLocaleString(buffer,MagickPathExtent,"type=%s\n",
cristy042ee782011-04-22 18:48:30 +00002079 CommandOptionToMnemonic(MagickTypeOptions,image->type));
cristy3ed852e2009-09-05 21:47:34 +00002080 (void) WriteBlobString(image,buffer);
2081 }
2082 if (image->colorspace != UndefinedColorspace)
2083 {
cristy151b66d2015-04-15 10:50:31 +00002084 (void) FormatLocaleString(buffer,MagickPathExtent,"colorspace=%s\n",
cristy042ee782011-04-22 18:48:30 +00002085 CommandOptionToMnemonic(MagickColorspaceOptions,image->colorspace));
cristy3ed852e2009-09-05 21:47:34 +00002086 (void) WriteBlobString(image,buffer);
2087 }
cristy3e4e9f42013-04-06 22:29:40 +00002088 if (image->intensity != UndefinedPixelIntensityMethod)
2089 {
Cristy6ffac4f2015-08-23 10:55:57 -04002090 (void) FormatLocaleString(buffer,MagickPathExtent,
2091 "pixel-intensity=%s\n",CommandOptionToMnemonic(
2092 MagickPixelIntensityOptions,image->intensity));
cristy3e4e9f42013-04-06 22:29:40 +00002093 (void) WriteBlobString(image,buffer);
2094 }
2095 if (image->endian != UndefinedEndian)
2096 {
cristy151b66d2015-04-15 10:50:31 +00002097 (void) FormatLocaleString(buffer,MagickPathExtent,"endian=%s\n",
cristy3e4e9f42013-04-06 22:29:40 +00002098 CommandOptionToMnemonic(MagickEndianOptions,image->endian));
2099 (void) WriteBlobString(image,buffer);
2100 }
cristy3ed852e2009-09-05 21:47:34 +00002101 if (compression != UndefinedCompression)
2102 {
cristy151b66d2015-04-15 10:50:31 +00002103 (void) FormatLocaleString(buffer,MagickPathExtent,"compression=%s "
cristy042ee782011-04-22 18:48:30 +00002104 "quality=%.20g\n",CommandOptionToMnemonic(MagickCompressOptions,
cristye8c25f92010-06-03 00:53:06 +00002105 compression),(double) image->quality);
cristy3ed852e2009-09-05 21:47:34 +00002106 (void) WriteBlobString(image,buffer);
2107 }
2108 if (image->units != UndefinedResolution)
2109 {
cristy151b66d2015-04-15 10:50:31 +00002110 (void) FormatLocaleString(buffer,MagickPathExtent,"units=%s\n",
cristy042ee782011-04-22 18:48:30 +00002111 CommandOptionToMnemonic(MagickResolutionOptions,image->units));
cristy3ed852e2009-09-05 21:47:34 +00002112 (void) WriteBlobString(image,buffer);
2113 }
cristy2a11bef2011-10-28 18:33:11 +00002114 if ((image->resolution.x != 0) || (image->resolution.y != 0))
cristy3ed852e2009-09-05 21:47:34 +00002115 {
cristy151b66d2015-04-15 10:50:31 +00002116 (void) FormatLocaleString(buffer,MagickPathExtent,
cristy2a11bef2011-10-28 18:33:11 +00002117 "resolution=%gx%g\n",image->resolution.x,image->resolution.y);
cristy3ed852e2009-09-05 21:47:34 +00002118 (void) WriteBlobString(image,buffer);
2119 }
2120 if ((image->page.width != 0) || (image->page.height != 0))
2121 {
cristy151b66d2015-04-15 10:50:31 +00002122 (void) FormatLocaleString(buffer,MagickPathExtent,
cristye8c25f92010-06-03 00:53:06 +00002123 "page=%.20gx%.20g%+.20g%+.20g\n",(double) image->page.width,(double)
2124 image->page.height,(double) image->page.x,(double) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +00002125 (void) WriteBlobString(image,buffer);
2126 }
2127 else
2128 if ((image->page.x != 0) || (image->page.y != 0))
2129 {
cristy151b66d2015-04-15 10:50:31 +00002130 (void) FormatLocaleString(buffer,MagickPathExtent,"page=%+ld%+ld\n",
cristyf2faecf2010-05-28 19:19:36 +00002131 (long) image->page.x,(long) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +00002132 (void) WriteBlobString(image,buffer);
2133 }
2134 if ((image->tile_offset.x != 0) || (image->tile_offset.y != 0))
2135 {
Cristy6ffac4f2015-08-23 10:55:57 -04002136 (void) FormatLocaleString(buffer,MagickPathExtent,
2137 "tile-offset=%+ld%+ld\n",(long) image->tile_offset.x,(long)
2138 image->tile_offset.y);
cristy3ed852e2009-09-05 21:47:34 +00002139 (void) WriteBlobString(image,buffer);
2140 }
2141 if ((GetNextImageInList(image) != (Image *) NULL) ||
2142 (GetPreviousImageInList(image) != (Image *) NULL))
2143 {
2144 if (image->scene == 0)
cristy151b66d2015-04-15 10:50:31 +00002145 (void) FormatLocaleString(buffer,MagickPathExtent,"iterations=%.20g "
cristye8c25f92010-06-03 00:53:06 +00002146 "delay=%.20g ticks-per-second=%.20g\n",(double) image->iterations,
2147 (double) image->delay,(double) image->ticks_per_second);
cristy3ed852e2009-09-05 21:47:34 +00002148 else
cristy151b66d2015-04-15 10:50:31 +00002149 (void) FormatLocaleString(buffer,MagickPathExtent,"scene=%.20g "
cristye8c25f92010-06-03 00:53:06 +00002150 "iterations=%.20g delay=%.20g ticks-per-second=%.20g\n",(double)
2151 image->scene,(double) image->iterations,(double) image->delay,
2152 (double) image->ticks_per_second);
cristy3ed852e2009-09-05 21:47:34 +00002153 (void) WriteBlobString(image,buffer);
2154 }
2155 else
2156 {
2157 if (image->scene != 0)
2158 {
cristy151b66d2015-04-15 10:50:31 +00002159 (void) FormatLocaleString(buffer,MagickPathExtent,"scene=%.20g\n",
cristye8c25f92010-06-03 00:53:06 +00002160 (double) image->scene);
cristy3ed852e2009-09-05 21:47:34 +00002161 (void) WriteBlobString(image,buffer);
2162 }
2163 if (image->iterations != 0)
2164 {
Cristy6ffac4f2015-08-23 10:55:57 -04002165 (void) FormatLocaleString(buffer,MagickPathExtent,
2166 "iterations=%.20g\n",(double) image->iterations);
cristy3ed852e2009-09-05 21:47:34 +00002167 (void) WriteBlobString(image,buffer);
2168 }
2169 if (image->delay != 0)
2170 {
cristy151b66d2015-04-15 10:50:31 +00002171 (void) FormatLocaleString(buffer,MagickPathExtent,"delay=%.20g\n",
cristye8c25f92010-06-03 00:53:06 +00002172 (double) image->delay);
cristy3ed852e2009-09-05 21:47:34 +00002173 (void) WriteBlobString(image,buffer);
2174 }
2175 if (image->ticks_per_second != UndefinedTicksPerSecond)
2176 {
cristy151b66d2015-04-15 10:50:31 +00002177 (void) FormatLocaleString(buffer,MagickPathExtent,
cristye8c25f92010-06-03 00:53:06 +00002178 "ticks-per-second=%.20g\n",(double) image->ticks_per_second);
cristy3ed852e2009-09-05 21:47:34 +00002179 (void) WriteBlobString(image,buffer);
2180 }
2181 }
2182 if (image->gravity != UndefinedGravity)
2183 {
cristy151b66d2015-04-15 10:50:31 +00002184 (void) FormatLocaleString(buffer,MagickPathExtent,"gravity=%s\n",
cristy042ee782011-04-22 18:48:30 +00002185 CommandOptionToMnemonic(MagickGravityOptions,image->gravity));
cristy3ed852e2009-09-05 21:47:34 +00002186 (void) WriteBlobString(image,buffer);
2187 }
2188 if (image->dispose != UndefinedDispose)
2189 {
cristy151b66d2015-04-15 10:50:31 +00002190 (void) FormatLocaleString(buffer,MagickPathExtent,"dispose=%s\n",
cristy042ee782011-04-22 18:48:30 +00002191 CommandOptionToMnemonic(MagickDisposeOptions,image->dispose));
cristy3ed852e2009-09-05 21:47:34 +00002192 (void) WriteBlobString(image,buffer);
2193 }
2194 if (image->rendering_intent != UndefinedIntent)
2195 {
Cristy6ffac4f2015-08-23 10:55:57 -04002196 (void) FormatLocaleString(buffer,MagickPathExtent,
2197 "rendering-intent=%s\n",CommandOptionToMnemonic(MagickIntentOptions,
2198 image->rendering_intent));
cristy3ed852e2009-09-05 21:47:34 +00002199 (void) WriteBlobString(image,buffer);
2200 }
2201 if (image->gamma != 0.0)
2202 {
cristy151b66d2015-04-15 10:50:31 +00002203 (void) FormatLocaleString(buffer,MagickPathExtent,"gamma=%g\n",
cristy3ed852e2009-09-05 21:47:34 +00002204 image->gamma);
2205 (void) WriteBlobString(image,buffer);
2206 }
2207 if (image->chromaticity.white_point.x != 0.0)
2208 {
2209 /*
2210 Note chomaticity points.
2211 */
cristy151b66d2015-04-15 10:50:31 +00002212 (void) FormatLocaleString(buffer,MagickPathExtent,"red-primary=%g,"
cristye7f51092010-01-17 00:39:37 +00002213 "%g green-primary=%g,%g blue-primary=%g,%g\n",
cristy3ed852e2009-09-05 21:47:34 +00002214 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y,
2215 image->chromaticity.green_primary.x,
2216 image->chromaticity.green_primary.y,
2217 image->chromaticity.blue_primary.x,
2218 image->chromaticity.blue_primary.y);
2219 (void) WriteBlobString(image,buffer);
cristy151b66d2015-04-15 10:50:31 +00002220 (void) FormatLocaleString(buffer,MagickPathExtent,
cristye7f51092010-01-17 00:39:37 +00002221 "white-point=%g,%g\n",image->chromaticity.white_point.x,
cristy8cd5b312010-01-07 01:10:24 +00002222 image->chromaticity.white_point.y);
cristy3ed852e2009-09-05 21:47:34 +00002223 (void) WriteBlobString(image,buffer);
2224 }
2225 if (image->orientation != UndefinedOrientation)
2226 {
cristy151b66d2015-04-15 10:50:31 +00002227 (void) FormatLocaleString(buffer,MagickPathExtent,"orientation=%s\n",
cristy042ee782011-04-22 18:48:30 +00002228 CommandOptionToMnemonic(MagickOrientationOptions,image->orientation));
cristy3ed852e2009-09-05 21:47:34 +00002229 (void) WriteBlobString(image,buffer);
2230 }
2231 if (image->profiles != (void *) NULL)
2232 {
2233 const char
2234 *name;
2235
2236 const StringInfo
2237 *profile;
2238
2239 /*
2240 Write image profiles.
2241 */
2242 ResetImageProfileIterator(image);
2243 name=GetNextImageProfile(image);
2244 while (name != (const char *) NULL)
2245 {
2246 profile=GetImageProfile(image,name);
2247 if (profile != (StringInfo *) NULL)
2248 {
cristy151b66d2015-04-15 10:50:31 +00002249 (void) FormatLocaleString(buffer,MagickPathExtent,
cristye8c25f92010-06-03 00:53:06 +00002250 "profile:%s=%.20g\n",name,(double)
2251 GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +00002252 (void) WriteBlobString(image,buffer);
2253 }
2254 name=GetNextImageProfile(image);
2255 }
2256 }
2257 if (image->montage != (char *) NULL)
2258 {
cristy151b66d2015-04-15 10:50:31 +00002259 (void) FormatLocaleString(buffer,MagickPathExtent,"montage=%s\n",
cristy3ed852e2009-09-05 21:47:34 +00002260 image->montage);
2261 (void) WriteBlobString(image,buffer);
2262 }
2263 if (quantum_info->format == FloatingPointQuantumFormat)
cristyd15e6592011-10-15 00:13:06 +00002264 (void) SetImageProperty(image,"quantum:format","floating-point",
2265 exception);
cristy3ed852e2009-09-05 21:47:34 +00002266 ResetImagePropertyIterator(image);
2267 property=GetNextImageProperty(image);
2268 while (property != (const char *) NULL)
2269 {
cristy151b66d2015-04-15 10:50:31 +00002270 (void) FormatLocaleString(buffer,MagickPathExtent,"%s=",property);
cristy3ed852e2009-09-05 21:47:34 +00002271 (void) WriteBlobString(image,buffer);
cristyd15e6592011-10-15 00:13:06 +00002272 value=GetImageProperty(image,property,exception);
cristy3ed852e2009-09-05 21:47:34 +00002273 if (value != (const char *) NULL)
2274 {
cristyd76ed5d2012-05-20 16:15:57 +00002275 size_t
2276 length;
2277
cristy0e75d752012-05-20 16:10:32 +00002278 length=strlen(value);
2279 for (i=0; i < (ssize_t) length; i++)
Cristy01efa162017-01-30 16:41:30 -05002280 if ((isspace((int) ((unsigned char) value[i])) != 0) ||
2281 (value[i] == '}'))
cristy3ed852e2009-09-05 21:47:34 +00002282 break;
cristy04e917f2013-08-17 00:54:17 +00002283 if ((i == (ssize_t) length) && (i != 0))
cristy0e75d752012-05-20 16:10:32 +00002284 (void) WriteBlob(image,length,(const unsigned char *) value);
cristyb880ee82012-04-07 15:08:14 +00002285 else
2286 {
2287 (void) WriteBlobByte(image,'{');
cristy3d136bd2012-05-04 12:16:20 +00002288 if (strchr(value,'}') == (char *) NULL)
cristy0e75d752012-05-20 16:10:32 +00002289 (void) WriteBlob(image,length,(const unsigned char *) value);
cristy3d136bd2012-05-04 12:16:20 +00002290 else
cristy0e75d752012-05-20 16:10:32 +00002291 for (i=0; i < (ssize_t) length; i++)
cristy3d136bd2012-05-04 12:16:20 +00002292 {
2293 if (value[i] == (int) '}')
2294 (void) WriteBlobByte(image,'\\');
2295 (void) WriteBlobByte(image,value[i]);
2296 }
cristyb880ee82012-04-07 15:08:14 +00002297 (void) WriteBlobByte(image,'}');
2298 }
cristy3ed852e2009-09-05 21:47:34 +00002299 }
2300 (void) WriteBlobByte(image,'\n');
2301 property=GetNextImageProperty(image);
2302 }
2303 (void) WriteBlobString(image,"\f\n:\032");
2304 if (image->montage != (char *) NULL)
2305 {
2306 /*
2307 Write montage tile directory.
2308 */
2309 if (image->directory != (char *) NULL)
2310 (void) WriteBlob(image,strlen(image->directory),(unsigned char *)
2311 image->directory);
2312 (void) WriteBlobByte(image,'\0');
2313 }
2314 if (image->profiles != (void *) NULL)
2315 {
2316 const char
2317 *name;
2318
2319 const StringInfo
2320 *profile;
2321
2322 /*
2323 Generic profile.
2324 */
2325 ResetImageProfileIterator(image);
2326 name=GetNextImageProfile(image);
2327 while (name != (const char *) NULL)
2328 {
2329 profile=GetImageProfile(image,name);
2330 (void) WriteBlob(image,GetStringInfoLength(profile),
2331 GetStringInfoDatum(profile));
2332 name=GetNextImageProfile(image);
2333 }
2334 }
2335 if (image->storage_class == PseudoClass)
2336 {
2337 size_t
2338 packet_size;
2339
2340 unsigned char
2341 *colormap,
2342 *q;
2343
2344 /*
2345 Allocate colormap.
2346 */
2347 packet_size=(size_t) (3*quantum_info->depth/8);
2348 colormap=(unsigned char *) AcquireQuantumMemory(image->colors,
2349 packet_size*sizeof(*colormap));
2350 if (colormap == (unsigned char *) NULL)
2351 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
2352 /*
2353 Write colormap to file.
2354 */
2355 q=colormap;
cristybb503372010-05-27 20:51:26 +00002356 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +00002357 {
2358 switch (quantum_info->depth)
2359 {
2360 default:
2361 ThrowWriterException(CorruptImageError,"ImageDepthNotSupported");
2362 case 32:
2363 {
cristy4cb162a2010-05-30 03:04:47 +00002364 register unsigned int
cristy3ed852e2009-09-05 21:47:34 +00002365 pixel;
2366
2367 pixel=ScaleQuantumToLong(image->colormap[i].red);
2368 q=PopLongPixel(MSBEndian,pixel,q);
2369 pixel=ScaleQuantumToLong(image->colormap[i].green);
2370 q=PopLongPixel(MSBEndian,pixel,q);
2371 pixel=ScaleQuantumToLong(image->colormap[i].blue);
2372 q=PopLongPixel(MSBEndian,pixel,q);
2373 break;
2374 }
2375 case 16:
2376 {
2377 register unsigned short
2378 pixel;
2379
2380 pixel=ScaleQuantumToShort(image->colormap[i].red);
2381 q=PopShortPixel(MSBEndian,pixel,q);
2382 pixel=ScaleQuantumToShort(image->colormap[i].green);
2383 q=PopShortPixel(MSBEndian,pixel,q);
2384 pixel=ScaleQuantumToShort(image->colormap[i].blue);
2385 q=PopShortPixel(MSBEndian,pixel,q);
2386 break;
2387 }
2388 case 8:
2389 {
2390 register unsigned char
2391 pixel;
2392
2393 pixel=(unsigned char) ScaleQuantumToChar(image->colormap[i].red);
2394 q=PopCharPixel(pixel,q);
2395 pixel=(unsigned char) ScaleQuantumToChar(
2396 image->colormap[i].green);
2397 q=PopCharPixel(pixel,q);
2398 pixel=(unsigned char) ScaleQuantumToChar(image->colormap[i].blue);
2399 q=PopCharPixel(pixel,q);
2400 break;
2401 }
2402 }
2403 }
2404 (void) WriteBlob(image,packet_size*image->colors,colormap);
2405 colormap=(unsigned char *) RelinquishMagickMemory(colormap);
2406 }
2407 /*
2408 Write image pixels to file.
2409 */
cristy330af6c2010-12-21 14:36:06 +00002410 status=MagickTrue;
2411 switch (compression)
2412 {
2413#if defined(MAGICKCORE_BZLIB_DELEGATE)
2414 case BZipCompression:
2415 {
cristy3a99dcf2011-12-17 01:29:40 +00002416 int
2417 code;
2418
cristy330af6c2010-12-21 14:36:06 +00002419 (void) ResetMagickMemory(&bzip_info,0,sizeof(bzip_info));
2420 bzip_info.bzalloc=AcquireBZIPMemory;
2421 bzip_info.bzfree=RelinquishBZIPMemory;
2422 code=BZ2_bzCompressInit(&bzip_info,(int) (image->quality ==
Cristy6ffac4f2015-08-23 10:55:57 -04002423 UndefinedCompressionQuality ? 7 : MagickMin(image->quality/10,9)),
2424 (int) image_info->verbose,0);
cristy330af6c2010-12-21 14:36:06 +00002425 if (code != BZ_OK)
2426 status=MagickFalse;
2427 break;
2428 }
2429#endif
2430#if defined(MAGICKCORE_LZMA_DELEGATE)
2431 case LZMACompression:
2432 {
cristy3a99dcf2011-12-17 01:29:40 +00002433 int
2434 code;
2435
cristy330af6c2010-12-21 14:36:06 +00002436 (void) ResetMagickMemory(&allocator,0,sizeof(allocator));
2437 allocator.alloc=AcquireLZMAMemory;
2438 allocator.free=RelinquishLZMAMemory;
cristy9d72f1a2010-12-21 20:46:59 +00002439 lzma_info=initialize_lzma;
cristy330af6c2010-12-21 14:36:06 +00002440 lzma_info.allocator=&allocator;
cristy9d72f1a2010-12-21 20:46:59 +00002441 code=lzma_easy_encoder(&lzma_info,image->quality/10,LZMA_CHECK_SHA256);
2442 if (code != LZMA_OK)
2443 status=MagickTrue;
cristy330af6c2010-12-21 14:36:06 +00002444 break;
2445 }
2446#endif
2447#if defined(MAGICKCORE_ZLIB_DELEGATE)
2448 case LZWCompression:
2449 case ZipCompression:
2450 {
cristy3a99dcf2011-12-17 01:29:40 +00002451 int
2452 code;
2453
cristy330af6c2010-12-21 14:36:06 +00002454 (void) ResetMagickMemory(&zip_info,0,sizeof(zip_info));
2455 zip_info.zalloc=AcquireZIPMemory;
2456 zip_info.zfree=RelinquishZIPMemory;
2457 code=deflateInit(&zip_info,(int) (image->quality ==
2458 UndefinedCompressionQuality ? 7 : MagickMin(image->quality/10,9)));
2459 if (code != Z_OK)
2460 status=MagickFalse;
2461 break;
2462 }
2463#endif
2464 default:
2465 break;
2466 }
cristy1e178e72011-08-28 19:44:34 +00002467 quantum_type=GetQuantumType(image,exception);
cristyb3f97ae2015-05-18 12:29:32 +00002468 pixels=(unsigned char *) GetQuantumPixels(quantum_info);
cristybb503372010-05-27 20:51:26 +00002469 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00002470 {
cristy4c08aed2011-07-01 19:47:50 +00002471 register const Quantum
dirk05d2ff72015-11-18 23:13:43 +01002472 *magick_restrict p;
cristy3ed852e2009-09-05 21:47:34 +00002473
cristybb503372010-05-27 20:51:26 +00002474 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002475 x;
2476
cristy330af6c2010-12-21 14:36:06 +00002477 if (status == MagickFalse)
2478 break;
cristy1e178e72011-08-28 19:44:34 +00002479 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00002480 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00002481 break;
cristy3ed852e2009-09-05 21:47:34 +00002482 q=pixels;
2483 switch (compression)
2484 {
cristy3ed852e2009-09-05 21:47:34 +00002485#if defined(MAGICKCORE_BZLIB_DELEGATE)
2486 case BZipCompression:
2487 {
cristy3ed852e2009-09-05 21:47:34 +00002488 bzip_info.next_in=(char *) pixels;
2489 bzip_info.avail_in=(unsigned int) (packet_size*image->columns);
cristydeec0c22013-04-18 14:46:41 +00002490 (void) ExportQuantumPixels(image,(CacheView *) NULL,quantum_info,
2491 quantum_type,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00002492 do
2493 {
cristy3a99dcf2011-12-17 01:29:40 +00002494 int
2495 code;
2496
cristy3ed852e2009-09-05 21:47:34 +00002497 bzip_info.next_out=(char *) compress_pixels;
2498 bzip_info.avail_out=(unsigned int) BZipMaxExtent(packet_size*
2499 image->columns);
2500 code=BZ2_bzCompress(&bzip_info,BZ_FLUSH);
cristy26377172010-12-20 19:01:58 +00002501 if (code != BZ_OK)
2502 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002503 length=(size_t) (bzip_info.next_out-(char *) compress_pixels);
2504 if (length != 0)
2505 {
2506 (void) WriteBlobMSBLong(image,(unsigned int) length);
2507 (void) WriteBlob(image,length,compress_pixels);
2508 }
2509 } while (bzip_info.avail_in != 0);
cristy26377172010-12-20 19:01:58 +00002510 break;
2511 }
2512#endif
2513#if defined(MAGICKCORE_LZMA_DELEGATE)
2514 case LZMACompression:
2515 {
cristy26377172010-12-20 19:01:58 +00002516 lzma_info.next_in=pixels;
cristy330af6c2010-12-21 14:36:06 +00002517 lzma_info.avail_in=packet_size*image->columns;
cristydeec0c22013-04-18 14:46:41 +00002518 (void) ExportQuantumPixels(image,(CacheView *) NULL,quantum_info,
2519 quantum_type,pixels,exception);
cristy26377172010-12-20 19:01:58 +00002520 do
2521 {
cristy3a99dcf2011-12-17 01:29:40 +00002522 int
2523 code;
2524
cristy26377172010-12-20 19:01:58 +00002525 lzma_info.next_out=compress_pixels;
2526 lzma_info.avail_out=packet_size*image->columns;
2527 code=lzma_code(&lzma_info,LZMA_RUN);
2528 if (code != LZMA_OK)
2529 status=MagickFalse;
2530 length=(size_t) (lzma_info.next_out-compress_pixels);
2531 if (length != 0)
2532 {
2533 (void) WriteBlobMSBLong(image,(unsigned int) length);
2534 (void) WriteBlob(image,length,compress_pixels);
2535 }
2536 } while (lzma_info.avail_in != 0);
cristy26377172010-12-20 19:01:58 +00002537 break;
2538 }
2539#endif
2540#if defined(MAGICKCORE_ZLIB_DELEGATE)
2541 case LZWCompression:
2542 case ZipCompression:
2543 {
cristy26377172010-12-20 19:01:58 +00002544 zip_info.next_in=pixels;
2545 zip_info.avail_in=(uInt) (packet_size*image->columns);
cristydeec0c22013-04-18 14:46:41 +00002546 (void) ExportQuantumPixels(image,(CacheView *) NULL,quantum_info,
2547 quantum_type,pixels,exception);
cristy26377172010-12-20 19:01:58 +00002548 do
2549 {
cristy3a99dcf2011-12-17 01:29:40 +00002550 int
2551 code;
2552
cristy26377172010-12-20 19:01:58 +00002553 zip_info.next_out=compress_pixels;
2554 zip_info.avail_out=(uInt) ZipMaxExtent(packet_size*image->columns);
2555 code=deflate(&zip_info,Z_SYNC_FLUSH);
2556 if (code != Z_OK)
2557 status=MagickFalse;
2558 length=(size_t) (zip_info.next_out-compress_pixels);
2559 if (length != 0)
2560 {
2561 (void) WriteBlobMSBLong(image,(unsigned int) length);
2562 (void) WriteBlob(image,length,compress_pixels);
2563 }
2564 } while (zip_info.avail_in != 0);
cristy3ed852e2009-09-05 21:47:34 +00002565 break;
2566 }
2567#endif
2568 case RLECompression:
2569 {
cristy4c08aed2011-07-01 19:47:50 +00002570 length=0;
cristy803640d2011-11-17 02:11:32 +00002571 GetPixelInfoPixel(image,p,&pixel);
cristyed231572011-07-14 02:18:59 +00002572 p+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +00002573 for (x=1; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00002574 {
cristy803640d2011-11-17 02:11:32 +00002575 GetPixelInfoPixel(image,p,&target);
cristy4c08aed2011-07-01 19:47:50 +00002576 if ((length < 255) &&
2577 (IsPixelInfoEquivalent(&pixel,&target) != MagickFalse))
cristy3ed852e2009-09-05 21:47:34 +00002578 length++;
2579 else
2580 {
cristyc82a27b2011-10-21 01:07:16 +00002581 q=PopRunlengthPacket(image,q,length,&pixel,exception);
cristy3ed852e2009-09-05 21:47:34 +00002582 length=0;
2583 }
cristy803640d2011-11-17 02:11:32 +00002584 GetPixelInfoPixel(image,p,&pixel);
cristyed231572011-07-14 02:18:59 +00002585 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00002586 }
cristyc82a27b2011-10-21 01:07:16 +00002587 q=PopRunlengthPacket(image,q,length,&pixel,exception);
cristy3ed852e2009-09-05 21:47:34 +00002588 (void) WriteBlob(image,(size_t) (q-pixels),pixels);
2589 break;
2590 }
2591 default:
2592 {
cristydeec0c22013-04-18 14:46:41 +00002593 (void) ExportQuantumPixels(image,(CacheView *) NULL,quantum_info,
2594 quantum_type,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00002595 (void) WriteBlob(image,packet_size*image->columns,pixels);
2596 break;
2597 }
2598 }
cristycee97112010-05-28 00:44:52 +00002599 if (image->previous == (Image *) NULL)
2600 {
2601 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
2602 image->rows);
2603 if (status == MagickFalse)
2604 break;
2605 }
cristy3ed852e2009-09-05 21:47:34 +00002606 }
cristy330af6c2010-12-21 14:36:06 +00002607 switch (compression)
2608 {
2609#if defined(MAGICKCORE_BZLIB_DELEGATE)
2610 case BZipCompression:
2611 {
cristy3a99dcf2011-12-17 01:29:40 +00002612 int
2613 code;
2614
cristy330af6c2010-12-21 14:36:06 +00002615 for ( ; ; )
2616 {
2617 if (status == MagickFalse)
2618 break;
2619 bzip_info.next_out=(char *) compress_pixels;
2620 bzip_info.avail_out=(unsigned int) BZipMaxExtent(packet_size*
2621 image->columns);
2622 code=BZ2_bzCompress(&bzip_info,BZ_FINISH);
cristy330af6c2010-12-21 14:36:06 +00002623 length=(size_t) (bzip_info.next_out-(char *) compress_pixels);
2624 if (length != 0)
2625 {
2626 (void) WriteBlobMSBLong(image,(unsigned int) length);
2627 (void) WriteBlob(image,length,compress_pixels);
2628 }
2629 if (code == BZ_STREAM_END)
2630 break;
2631 }
2632 code=BZ2_bzCompressEnd(&bzip_info);
2633 if (code != BZ_OK)
2634 status=MagickFalse;
2635 break;
2636 }
2637#endif
2638#if defined(MAGICKCORE_LZMA_DELEGATE)
2639 case LZMACompression:
2640 {
cristy3a99dcf2011-12-17 01:29:40 +00002641 int
2642 code;
2643
cristy330af6c2010-12-21 14:36:06 +00002644 for ( ; ; )
2645 {
2646 if (status == MagickFalse)
2647 break;
2648 lzma_info.next_out=compress_pixels;
2649 lzma_info.avail_out=packet_size*image->columns;
2650 code=lzma_code(&lzma_info,LZMA_FINISH);
cristy330af6c2010-12-21 14:36:06 +00002651 length=(size_t) (lzma_info.next_out-compress_pixels);
2652 if (length > 6)
2653 {
2654 (void) WriteBlobMSBLong(image,(unsigned int) length);
2655 (void) WriteBlob(image,length,compress_pixels);
2656 }
2657 if (code == LZMA_STREAM_END)
2658 break;
2659 }
2660 lzma_end(&lzma_info);
2661 break;
2662 }
2663#endif
2664#if defined(MAGICKCORE_ZLIB_DELEGATE)
2665 case LZWCompression:
2666 case ZipCompression:
2667 {
cristy3a99dcf2011-12-17 01:29:40 +00002668 int
2669 code;
2670
cristy330af6c2010-12-21 14:36:06 +00002671 for ( ; ; )
2672 {
2673 if (status == MagickFalse)
2674 break;
2675 zip_info.next_out=compress_pixels;
cristyc3ca81b2011-10-17 18:05:54 +00002676 zip_info.avail_out=(uInt) ZipMaxExtent(packet_size*image->columns);
cristy330af6c2010-12-21 14:36:06 +00002677 code=deflate(&zip_info,Z_FINISH);
cristy330af6c2010-12-21 14:36:06 +00002678 length=(size_t) (zip_info.next_out-compress_pixels);
2679 if (length > 6)
2680 {
2681 (void) WriteBlobMSBLong(image,(unsigned int) length);
2682 (void) WriteBlob(image,length,compress_pixels);
2683 }
2684 if (code == Z_STREAM_END)
2685 break;
2686 }
2687 code=deflateEnd(&zip_info);
2688 if (code != Z_OK)
2689 status=MagickFalse;
2690 break;
2691 }
2692#endif
2693 default:
2694 break;
2695 }
cristy3ed852e2009-09-05 21:47:34 +00002696 quantum_info=DestroyQuantumInfo(quantum_info);
2697 compress_pixels=(unsigned char *) RelinquishMagickMemory(compress_pixels);
2698 if (GetNextImageInList(image) == (Image *) NULL)
2699 break;
2700 image=SyncNextImageInList(image);
Cristy6ffac4f2015-08-23 10:55:57 -04002701 status=SetImageProgress(image,SaveImagesTag,scene++,GetImageListLength(
2702 image));
cristy3ed852e2009-09-05 21:47:34 +00002703 if (status == MagickFalse)
2704 break;
2705 } while (image_info->adjoin != MagickFalse);
2706 (void) CloseBlob(image);
2707 return(status);
2708}