blob: 5411f2bfc073e5a8ba07209a4a7cf6191363f720 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% SSSSS U U N N %
7% SS U U NN N %
8% SSS U U N N N %
9% SS U U N NN %
10% SSSSS UUU N N %
11% %
12% %
13% Read/Write Sun Rasterfile Image Format %
14% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% July 1992 %
18% %
19% %
Cristy7ce65e72015-12-12 18:03:16 -050020% Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% dedicated to making software imaging solutions freely available. %
22% %
23% You may not use this file except in compliance with the License. You may %
24% obtain a copy of the License at %
25% %
26% http://www.imagemagick.org/script/license.php %
27% %
28% Unless required by applicable law or agreed to in writing, software %
29% distributed under the License is distributed on an "AS IS" BASIS, %
30% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31% See the License for the specific language governing permissions and %
32% limitations under the License. %
33% %
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35%
36%
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"
cristyced5eb72015-01-25 21:25:47 +000050#include "MagickCore/colormap-private.h"
cristy4c08aed2011-07-01 19:47:50 +000051#include "MagickCore/colorspace.h"
cristy510d06a2011-07-06 23:43:54 +000052#include "MagickCore/colorspace-private.h"
cristy4c08aed2011-07-01 19:47:50 +000053#include "MagickCore/exception.h"
54#include "MagickCore/exception-private.h"
55#include "MagickCore/image.h"
56#include "MagickCore/image-private.h"
57#include "MagickCore/list.h"
58#include "MagickCore/magick.h"
59#include "MagickCore/memory_.h"
60#include "MagickCore/monitor.h"
61#include "MagickCore/monitor-private.h"
62#include "MagickCore/pixel-accessor.h"
63#include "MagickCore/quantum-private.h"
64#include "MagickCore/static.h"
65#include "MagickCore/string_.h"
66#include "MagickCore/module.h"
cristy3ed852e2009-09-05 21:47:34 +000067
68/*
69 Forward declarations.
70*/
71static MagickBooleanType
cristy3a37efd2011-08-28 20:31:03 +000072 WriteSUNImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000073
74/*
75%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
76% %
77% %
78% %
79% I s S U N %
80% %
81% %
82% %
83%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
84%
85% IsSUN() returns MagickTrue if the image format type, identified by the
86% magick string, is SUN.
87%
88% The format of the IsSUN method is:
89%
90% MagickBooleanType IsSUN(const unsigned char *magick,const size_t length)
91%
92% A description of each parameter follows:
93%
94% o magick: compare image format pattern against these bytes.
95%
96% o length: Specifies the length of the magick string.
97%
98*/
99static MagickBooleanType IsSUN(const unsigned char *magick,const size_t length)
100{
101 if (length < 4)
102 return(MagickFalse);
103 if (memcmp(magick,"\131\246\152\225",4) == 0)
104 return(MagickTrue);
105 return(MagickFalse);
106}
107
108/*
109%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
110% %
111% %
112% %
113% D e c o d e I m a g e %
114% %
115% %
116% %
117%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
118%
119% DecodeImage unpacks the packed image pixels into runlength-encoded pixel
120% packets.
121%
122% The format of the DecodeImage method is:
123%
124% MagickBooleanType DecodeImage(const unsigned char *compressed_pixels,
125% const size_t length,unsigned char *pixels)
126%
127% A description of each parameter follows:
128%
129% o compressed_pixels: The address of a byte (8 bits) array of compressed
130% pixel data.
131%
132% o length: An integer value that is the total number of bytes of the
133% source image (as just read by ReadBlob)
134%
135% o pixels: The address of a byte (8 bits) array of pixel data created by
136% the uncompression process. The number of bytes in this array
137% must be at least equal to the number columns times the number of rows
138% of the source pixels.
139%
140*/
141static MagickBooleanType DecodeImage(const unsigned char *compressed_pixels,
142 const size_t length,unsigned char *pixels,size_t maxpixels)
143{
144 register const unsigned char
cristyc6da28e2011-04-28 01:41:35 +0000145 *l,
146 *p;
cristy3ed852e2009-09-05 21:47:34 +0000147
148 register unsigned char
149 *q;
150
151 ssize_t
152 count;
153
154 unsigned char
155 byte;
156
157 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
158 assert(compressed_pixels != (unsigned char *) NULL);
159 assert(pixels != (unsigned char *) NULL);
160 p=compressed_pixels;
161 q=pixels;
162 l=q+maxpixels;
163 while (((size_t) (p-compressed_pixels) < length) && (q < l))
164 {
165 byte=(*p++);
166 if (byte != 128U)
167 *q++=byte;
168 else
169 {
170 /*
171 Runlength-encoded packet: <count><byte>
172 */
173 count=(ssize_t) (*p++);
174 if (count > 0)
175 byte=(*p++);
176 while ((count >= 0) && (q < l))
177 {
178 *q++=byte;
179 count--;
180 }
181 }
182 }
183 return(MagickTrue);
184}
185
186/*
187%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
188% %
189% %
190% %
191% R e a d S U N I m a g e %
192% %
193% %
194% %
195%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
196%
197% ReadSUNImage() reads a SUN image file and returns it. It allocates
198% the memory necessary for the new Image structure and returns a pointer to
199% the new image.
200%
201% The format of the ReadSUNImage method is:
202%
203% Image *ReadSUNImage(const ImageInfo *image_info,ExceptionInfo *exception)
204%
205% A description of each parameter follows:
206%
207% o image_info: the image info.
208%
209% o exception: return any errors or warnings in this structure.
210%
211*/
212static Image *ReadSUNImage(const ImageInfo *image_info,ExceptionInfo *exception)
213{
214#define RMT_EQUAL_RGB 1
215#define RMT_NONE 0
216#define RMT_RAW 2
217#define RT_STANDARD 1
218#define RT_ENCODED 2
219#define RT_FORMAT_RGB 3
220
221 typedef struct _SUNInfo
222 {
223 unsigned int
224 magic,
225 width,
226 height,
227 depth,
228 length,
229 type,
230 maptype,
231 maplength;
232 } SUNInfo;
233
234 Image
235 *image;
236
237 int
238 bit;
239
cristy3ed852e2009-09-05 21:47:34 +0000240 MagickBooleanType
241 status;
242
243 MagickSizeType
244 number_pixels;
245
cristy4c08aed2011-07-01 19:47:50 +0000246 register Quantum
cristy3ed852e2009-09-05 21:47:34 +0000247 *q;
248
cristybb503372010-05-27 20:51:26 +0000249 register ssize_t
cristye13c3042011-03-03 01:30:05 +0000250 i,
251 x;
cristy3ed852e2009-09-05 21:47:34 +0000252
253 register unsigned char
254 *p;
255
256 size_t
cristy01daf942014-12-01 23:14:00 +0000257 bytes_per_line,
cristy754c2152014-12-07 18:17:41 +0000258 extent,
cristy8ea44b42015-01-13 13:31:27 +0000259 height;
cristy3ed852e2009-09-05 21:47:34 +0000260
261 ssize_t
cristyc6da28e2011-04-28 01:41:35 +0000262 count,
263 y;
cristy3ed852e2009-09-05 21:47:34 +0000264
265 SUNInfo
266 sun_info;
267
268 unsigned char
269 *sun_data,
270 *sun_pixels;
271
cristy3ed852e2009-09-05 21:47:34 +0000272 /*
273 Open image file.
274 */
275 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000276 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000277 if (image_info->debug != MagickFalse)
278 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
279 image_info->filename);
280 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000281 assert(exception->signature == MagickCoreSignature);
cristy9950d572011-10-01 18:22:35 +0000282 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000283 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
284 if (status == MagickFalse)
285 {
286 image=DestroyImageList(image);
287 return((Image *) NULL);
288 }
289 /*
290 Read SUN raster header.
291 */
292 (void) ResetMagickMemory(&sun_info,0,sizeof(sun_info));
293 sun_info.magic=ReadBlobMSBLong(image);
294 do
295 {
296 /*
297 Verify SUN identifier.
298 */
299 if (sun_info.magic != 0x59a66a95)
300 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
301 sun_info.width=ReadBlobMSBLong(image);
302 sun_info.height=ReadBlobMSBLong(image);
303 sun_info.depth=ReadBlobMSBLong(image);
304 sun_info.length=ReadBlobMSBLong(image);
305 sun_info.type=ReadBlobMSBLong(image);
306 sun_info.maptype=ReadBlobMSBLong(image);
307 sun_info.maplength=ReadBlobMSBLong(image);
cristy754c2152014-12-07 18:17:41 +0000308 extent=sun_info.height*sun_info.width;
cristy62a3eb72014-12-07 12:52:02 +0000309 if ((sun_info.height != 0) && (sun_info.width != extent/sun_info.height))
310 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy22a6f212014-11-30 15:59:52 +0000311 if ((sun_info.type != RT_STANDARD) && (sun_info.type != RT_ENCODED) &&
312 (sun_info.type != RT_FORMAT_RGB))
cristy76d045a2014-12-02 02:12:04 +0000313 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy22a6f212014-11-30 15:59:52 +0000314 if ((sun_info.maptype == RMT_NONE) && (sun_info.maplength != 0))
cristy76d045a2014-12-02 02:12:04 +0000315 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
dirk6cad3f62016-01-15 02:11:22 +0100316 if ((sun_info.depth != 1) && (sun_info.depth != 8) &&
dirkde9d2312016-01-15 22:29:36 +0100317 (sun_info.depth != 24) && (sun_info.depth != 32))
cristy3ed852e2009-09-05 21:47:34 +0000318 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy22a6f212014-11-30 15:59:52 +0000319 if ((sun_info.maptype != RMT_NONE) && (sun_info.maptype != RMT_EQUAL_RGB) &&
320 (sun_info.maptype != RMT_RAW))
321 ThrowReaderException(CoderError,"ColormapTypeNotSupported");
322 image->columns=sun_info.width;
323 image->rows=sun_info.height;
cristyacee8122009-11-19 02:04:10 +0000324 image->depth=sun_info.depth <= 8 ? sun_info.depth :
325 MAGICKCORE_QUANTUM_DEPTH;
cristy3ed852e2009-09-05 21:47:34 +0000326 if (sun_info.depth < 24)
327 {
cristyeaedf062010-05-29 22:36:02 +0000328 size_t
329 one;
330
cristy3ed852e2009-09-05 21:47:34 +0000331 image->colors=sun_info.maplength;
cristyeaedf062010-05-29 22:36:02 +0000332 one=1;
cristy3ed852e2009-09-05 21:47:34 +0000333 if (sun_info.maptype == RMT_NONE)
cristyeaedf062010-05-29 22:36:02 +0000334 image->colors=one << sun_info.depth;
cristy3ed852e2009-09-05 21:47:34 +0000335 if (sun_info.maptype == RMT_EQUAL_RGB)
336 image->colors=sun_info.maplength/3;
cristybd960742015-01-08 15:44:24 +0000337 if (AcquireImageColormap(image,image->colors,exception) == MagickFalse)
338 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
cristy3ed852e2009-09-05 21:47:34 +0000339 }
340 switch (sun_info.maptype)
341 {
cristy450bd712015-01-09 20:02:31 +0000342 case RMT_NONE:
343 break;
cristy3ed852e2009-09-05 21:47:34 +0000344 case RMT_EQUAL_RGB:
345 {
346 unsigned char
347 *sun_colormap;
348
349 /*
350 Read SUN raster colormap.
351 */
cristy3ed852e2009-09-05 21:47:34 +0000352 sun_colormap=(unsigned char *) AcquireQuantumMemory(image->colors,
353 sizeof(*sun_colormap));
354 if (sun_colormap == (unsigned char *) NULL)
355 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
356 count=ReadBlob(image,image->colors,sun_colormap);
cristy22a6f212014-11-30 15:59:52 +0000357 if (count != (ssize_t) image->colors)
358 ThrowReaderException(CorruptImageError,"UnexpectedEndOfFile");
cristybb503372010-05-27 20:51:26 +0000359 for (i=0; i < (ssize_t) image->colors; i++)
cristy22a6f212014-11-30 15:59:52 +0000360 image->colormap[i].red=(MagickRealType) ScaleCharToQuantum(
361 sun_colormap[i]);
cristy3ed852e2009-09-05 21:47:34 +0000362 count=ReadBlob(image,image->colors,sun_colormap);
cristy22a6f212014-11-30 15:59:52 +0000363 if (count != (ssize_t) image->colors)
364 ThrowReaderException(CorruptImageError,"UnexpectedEndOfFile");
cristybb503372010-05-27 20:51:26 +0000365 for (i=0; i < (ssize_t) image->colors; i++)
cristy22a6f212014-11-30 15:59:52 +0000366 image->colormap[i].green=(MagickRealType) ScaleCharToQuantum(
367 sun_colormap[i]);
cristy3ed852e2009-09-05 21:47:34 +0000368 count=ReadBlob(image,image->colors,sun_colormap);
cristy22a6f212014-11-30 15:59:52 +0000369 if (count != (ssize_t) image->colors)
370 ThrowReaderException(CorruptImageError,"UnexpectedEndOfFile");
cristybb503372010-05-27 20:51:26 +0000371 for (i=0; i < (ssize_t) image->colors; i++)
cristy22a6f212014-11-30 15:59:52 +0000372 image->colormap[i].blue=(MagickRealType) ScaleCharToQuantum(
373 sun_colormap[i]);
cristy3ed852e2009-09-05 21:47:34 +0000374 sun_colormap=(unsigned char *) RelinquishMagickMemory(sun_colormap);
375 break;
376 }
377 case RMT_RAW:
378 {
379 unsigned char
380 *sun_colormap;
381
382 /*
383 Read SUN raster colormap.
384 */
385 sun_colormap=(unsigned char *) AcquireQuantumMemory(sun_info.maplength,
386 sizeof(*sun_colormap));
387 if (sun_colormap == (unsigned char *) NULL)
388 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
389 count=ReadBlob(image,sun_info.maplength,sun_colormap);
cristy22a6f212014-11-30 15:59:52 +0000390 if (count != (ssize_t) sun_info.maplength)
391 ThrowReaderException(CorruptImageError,"UnexpectedEndOfFile");
cristy3ed852e2009-09-05 21:47:34 +0000392 sun_colormap=(unsigned char *) RelinquishMagickMemory(sun_colormap);
393 break;
394 }
395 default:
396 ThrowReaderException(CoderError,"ColormapTypeNotSupported");
397 }
cristy22a6f212014-11-30 15:59:52 +0000398 image->alpha_trait=sun_info.depth == 32 ? BlendPixelTrait :
cristyb0a657e2012-08-29 00:45:37 +0000399 UndefinedPixelTrait;
cristy3ed852e2009-09-05 21:47:34 +0000400 image->columns=sun_info.width;
401 image->rows=sun_info.height;
402 if (image_info->ping != MagickFalse)
403 {
404 (void) CloseBlob(image);
405 return(GetFirstImageInList(image));
406 }
cristyacabb842014-12-14 23:36:33 +0000407 status=SetImageExtent(image,image->columns,image->rows,exception);
408 if (status == MagickFalse)
409 return(DestroyImageList(image));
cristy3ed852e2009-09-05 21:47:34 +0000410 if ((sun_info.length*sizeof(*sun_data))/sizeof(*sun_data) !=
411 sun_info.length || !sun_info.length)
cristy6b4aff02015-01-13 12:16:28 +0000412 ThrowReaderException(ResourceLimitError,"ImproperImageHeader");
cristy4662a132015-01-19 19:27:00 +0000413 number_pixels=(MagickSizeType) (image->columns*image->rows);
cristyb8f17d02015-01-10 14:10:16 +0000414 if ((sun_info.type != RT_ENCODED) &&
cristy386277a2015-01-21 20:38:39 +0000415 ((number_pixels*sun_info.depth) > (8UL*sun_info.length)))
cristy3ed852e2009-09-05 21:47:34 +0000416 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy78f82d92015-01-06 12:13:31 +0000417 bytes_per_line=sun_info.width*sun_info.depth;
418 sun_data=(unsigned char *) AcquireQuantumMemory((size_t) MagickMax(
Cristyffb9daf2016-01-24 19:23:27 -0500419 sun_info.length,bytes_per_line*sun_info.width)+7,sizeof(*sun_data));
cristy3ed852e2009-09-05 21:47:34 +0000420 if (sun_data == (unsigned char *) NULL)
421 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
422 count=(ssize_t) ReadBlob(image,sun_info.length,sun_data);
cristy22a6f212014-11-30 15:59:52 +0000423 if (count != (ssize_t) sun_info.length)
cristy3ed852e2009-09-05 21:47:34 +0000424 ThrowReaderException(CorruptImageError,"UnableToReadImageData");
cristy1aa0c6d2015-01-13 02:23:43 +0000425 height=sun_info.height;
426 if ((height == 0) || (sun_info.width == 0) || (sun_info.depth == 0) ||
427 ((bytes_per_line/sun_info.depth) != sun_info.width))
cristy6b4aff02015-01-13 12:16:28 +0000428 ThrowReaderException(ResourceLimitError,"ImproperImageHeader");
cristy1aa0c6d2015-01-13 02:23:43 +0000429 bytes_per_line+=15;
430 bytes_per_line<<=1;
431 if ((bytes_per_line >> 1) != (sun_info.width*sun_info.depth+15))
cristy6b4aff02015-01-13 12:16:28 +0000432 ThrowReaderException(ResourceLimitError,"ImproperImageHeader");
cristy1aa0c6d2015-01-13 02:23:43 +0000433 bytes_per_line>>=4;
434 sun_pixels=(unsigned char *) AcquireQuantumMemory(height,
Cristy21744842016-01-13 18:31:21 -0500435 MagickMax(image->columns,bytes_per_line)*sizeof(*sun_pixels));
cristy1aa0c6d2015-01-13 02:23:43 +0000436 if (sun_pixels == (unsigned char *) NULL)
437 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
Cristy21744842016-01-13 18:31:21 -0500438 ResetMagickMemory(sun_pixels,0,height*MagickMax(image->columns,
439 bytes_per_line)*sizeof(*sun_pixels));
cristy3ed852e2009-09-05 21:47:34 +0000440 if (sun_info.type == RT_ENCODED)
cristy1aa0c6d2015-01-13 02:23:43 +0000441 (void) DecodeImage(sun_data,sun_info.length,sun_pixels,bytes_per_line*
442 height);
cristy6b4aff02015-01-13 12:16:28 +0000443 else
444 {
445 if (sun_info.length > (height*bytes_per_line))
446 ThrowReaderException(ResourceLimitError,"ImproperImageHeader");
447 (void) CopyMagickMemory(sun_pixels,sun_data,sun_info.length);
448 }
cristy1aa0c6d2015-01-13 02:23:43 +0000449 sun_data=(unsigned char *) RelinquishMagickMemory(sun_data);
cristy3ed852e2009-09-05 21:47:34 +0000450 /*
451 Convert SUN raster image to pixel packets.
452 */
453 p=sun_pixels;
454 if (sun_info.depth == 1)
cristybb503372010-05-27 20:51:26 +0000455 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000456 {
457 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000458 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000459 break;
cristybb503372010-05-27 20:51:26 +0000460 for (x=0; x < ((ssize_t) image->columns-7); x+=8)
cristy3ed852e2009-09-05 21:47:34 +0000461 {
462 for (bit=7; bit >= 0; bit--)
cristy4c08aed2011-07-01 19:47:50 +0000463 {
cristy22a6f212014-11-30 15:59:52 +0000464 SetPixelIndex(image,(Quantum) ((*p) & (0x01 << bit) ? 0x00 : 0x01),
465 q);
cristyed231572011-07-14 02:18:59 +0000466 q+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +0000467 }
cristy3ed852e2009-09-05 21:47:34 +0000468 p++;
469 }
470 if ((image->columns % 8) != 0)
471 {
cristy22a6f212014-11-30 15:59:52 +0000472 for (bit=7; bit >= (int) (8-(image->columns % 8)); bit--)
cristy4c08aed2011-07-01 19:47:50 +0000473 {
cristy22a6f212014-11-30 15:59:52 +0000474 SetPixelIndex(image,(Quantum) ((*p) & (0x01 << bit) ? 0x00 :
475 0x01),q);
cristyed231572011-07-14 02:18:59 +0000476 q+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +0000477 }
cristy3ed852e2009-09-05 21:47:34 +0000478 p++;
479 }
480 if ((((image->columns/8)+(image->columns % 8 ? 1 : 0)) % 2) != 0)
481 p++;
482 if (SyncAuthenticPixels(image,exception) == MagickFalse)
483 break;
484 if (image->previous == (Image *) NULL)
485 {
cristycee97112010-05-28 00:44:52 +0000486 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
cristye13c3042011-03-03 01:30:05 +0000487 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000488 if (status == MagickFalse)
489 break;
490 }
491 }
492 else
493 if (image->storage_class == PseudoClass)
494 {
cristybb503372010-05-27 20:51:26 +0000495 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000496 {
497 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000498 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000499 break;
cristybb503372010-05-27 20:51:26 +0000500 for (x=0; x < (ssize_t) image->columns; x++)
cristy4c08aed2011-07-01 19:47:50 +0000501 {
cristyced5eb72015-01-25 21:25:47 +0000502 SetPixelIndex(image,ConstrainColormapIndex(image,*p,exception),q);
503 p++;
cristyed231572011-07-14 02:18:59 +0000504 q+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +0000505 }
cristy3ed852e2009-09-05 21:47:34 +0000506 if ((image->columns % 2) != 0)
507 p++;
508 if (SyncAuthenticPixels(image,exception) == MagickFalse)
509 break;
510 if (image->previous == (Image *) NULL)
511 {
cristycee97112010-05-28 00:44:52 +0000512 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
513 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000514 if (status == MagickFalse)
515 break;
516 }
517 }
518 }
519 else
520 {
cristyacee8122009-11-19 02:04:10 +0000521 size_t
522 bytes_per_pixel;
523
524 bytes_per_pixel=3;
cristy17f11b02014-12-20 19:37:04 +0000525 if (image->alpha_trait != UndefinedPixelTrait)
cristyacee8122009-11-19 02:04:10 +0000526 bytes_per_pixel++;
cristy1f30ce42014-12-04 00:59:05 +0000527 if (bytes_per_line == 0)
528 bytes_per_line=bytes_per_pixel*image->columns;
cristybb503372010-05-27 20:51:26 +0000529 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000530 {
531 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000532 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000533 break;
cristybb503372010-05-27 20:51:26 +0000534 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000535 {
cristy17f11b02014-12-20 19:37:04 +0000536 if (image->alpha_trait != UndefinedPixelTrait)
cristy4c08aed2011-07-01 19:47:50 +0000537 SetPixelAlpha(image,ScaleCharToQuantum(*p++),q);
cristy3ed852e2009-09-05 21:47:34 +0000538 if (sun_info.type == RT_STANDARD)
539 {
cristy4c08aed2011-07-01 19:47:50 +0000540 SetPixelBlue(image,ScaleCharToQuantum(*p++),q);
541 SetPixelGreen(image,ScaleCharToQuantum(*p++),q);
542 SetPixelRed(image,ScaleCharToQuantum(*p++),q);
cristy3ed852e2009-09-05 21:47:34 +0000543 }
544 else
545 {
cristy4c08aed2011-07-01 19:47:50 +0000546 SetPixelRed(image,ScaleCharToQuantum(*p++),q);
547 SetPixelGreen(image,ScaleCharToQuantum(*p++),q);
548 SetPixelBlue(image,ScaleCharToQuantum(*p++),q);
cristy3ed852e2009-09-05 21:47:34 +0000549 }
550 if (image->colors != 0)
551 {
cristy22a6f212014-11-30 15:59:52 +0000552 SetPixelRed(image,ClampToQuantum(image->colormap[(ssize_t)
553 GetPixelRed(image,q)].red),q);
554 SetPixelGreen(image,ClampToQuantum(image->colormap[(ssize_t)
555 GetPixelGreen(image,q)].green),q);
556 SetPixelBlue(image,ClampToQuantum(image->colormap[(ssize_t)
557 GetPixelBlue(image,q)].blue),q);
cristy3ed852e2009-09-05 21:47:34 +0000558 }
cristyed231572011-07-14 02:18:59 +0000559 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000560 }
cristyacee8122009-11-19 02:04:10 +0000561 if (((bytes_per_pixel*image->columns) % 2) != 0)
cristy3ed852e2009-09-05 21:47:34 +0000562 p++;
563 if (SyncAuthenticPixels(image,exception) == MagickFalse)
564 break;
565 if (image->previous == (Image *) NULL)
566 {
cristycee97112010-05-28 00:44:52 +0000567 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
568 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000569 if (status == MagickFalse)
570 break;
571 }
572 }
573 }
574 if (image->storage_class == PseudoClass)
cristyea1a8aa2011-10-20 13:24:06 +0000575 (void) SyncImage(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000576 sun_pixels=(unsigned char *) RelinquishMagickMemory(sun_pixels);
577 if (EOFBlob(image) != MagickFalse)
578 {
579 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
580 image->filename);
581 break;
582 }
583 /*
584 Proceed to next image.
585 */
586 if (image_info->number_scenes != 0)
587 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
588 break;
589 sun_info.magic=ReadBlobMSBLong(image);
590 if (sun_info.magic == 0x59a66a95)
591 {
592 /*
593 Allocate next image structure.
594 */
cristy9950d572011-10-01 18:22:35 +0000595 AcquireNextImage(image_info,image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000596 if (GetNextImageInList(image) == (Image *) NULL)
597 {
598 image=DestroyImageList(image);
599 return((Image *) NULL);
600 }
601 image=SyncNextImageInList(image);
602 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
603 GetBlobSize(image));
604 if (status == MagickFalse)
605 break;
606 }
607 } while (sun_info.magic == 0x59a66a95);
608 (void) CloseBlob(image);
609 return(GetFirstImageInList(image));
610}
611
612/*
613%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
614% %
615% %
616% %
617% R e g i s t e r S U N I m a g e %
618% %
619% %
620% %
621%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
622%
623% RegisterSUNImage() adds attributes for the SUN image format to
624% the list of supported formats. The attributes include the image format
625% tag, a method to read and/or write the format, whether the format
626% supports the saving of more than one frame to the same file or blob,
627% whether the format supports native in-memory I/O, and a brief
628% description of the format.
629%
630% The format of the RegisterSUNImage method is:
631%
cristybb503372010-05-27 20:51:26 +0000632% size_t RegisterSUNImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000633%
634*/
cristybb503372010-05-27 20:51:26 +0000635ModuleExport size_t RegisterSUNImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000636{
637 MagickInfo
638 *entry;
639
dirk06b627a2015-04-06 18:59:17 +0000640 entry=AcquireMagickInfo("SUN","RAS","SUN Rasterfile");
cristy3ed852e2009-09-05 21:47:34 +0000641 entry->decoder=(DecodeImageHandler *) ReadSUNImage;
642 entry->encoder=(EncodeImageHandler *) WriteSUNImage;
643 entry->magick=(IsImageFormatHandler *) IsSUN;
cristy3ed852e2009-09-05 21:47:34 +0000644 (void) RegisterMagickInfo(entry);
dirk06b627a2015-04-06 18:59:17 +0000645 entry=AcquireMagickInfo("SUN","SUN","SUN Rasterfile");
cristy3ed852e2009-09-05 21:47:34 +0000646 entry->decoder=(DecodeImageHandler *) ReadSUNImage;
647 entry->encoder=(EncodeImageHandler *) WriteSUNImage;
cristy3ed852e2009-09-05 21:47:34 +0000648 (void) RegisterMagickInfo(entry);
649 return(MagickImageCoderSignature);
650}
651
652/*
653%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
654% %
655% %
656% %
657% U n r e g i s t e r S U N I m a g e %
658% %
659% %
660% %
661%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
662%
663% UnregisterSUNImage() removes format registrations made by the
664% SUN module from the list of supported formats.
665%
666% The format of the UnregisterSUNImage method is:
667%
668% UnregisterSUNImage(void)
669%
670*/
671ModuleExport void UnregisterSUNImage(void)
672{
673 (void) UnregisterMagickInfo("RAS");
674 (void) UnregisterMagickInfo("SUN");
675}
676
677/*
678%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
679% %
680% %
681% %
682% W r i t e S U N I m a g e %
683% %
684% %
685% %
686%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
687%
688% WriteSUNImage() writes an image in the SUN rasterfile format.
689%
690% The format of the WriteSUNImage method is:
691%
cristy3a37efd2011-08-28 20:31:03 +0000692% MagickBooleanType WriteSUNImage(const ImageInfo *image_info,
693% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000694%
695% A description of each parameter follows.
696%
697% o image_info: the image info.
698%
699% o image: The image.
700%
cristy3a37efd2011-08-28 20:31:03 +0000701% o exception: return any errors or warnings in this structure.
702%
cristy3ed852e2009-09-05 21:47:34 +0000703*/
cristy3a37efd2011-08-28 20:31:03 +0000704static MagickBooleanType WriteSUNImage(const ImageInfo *image_info,Image *image,
705 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000706{
707#define RMT_EQUAL_RGB 1
708#define RMT_NONE 0
709#define RMT_RAW 2
710#define RT_STANDARD 1
711#define RT_FORMAT_RGB 3
712
713 typedef struct _SUNInfo
714 {
715 unsigned int
716 magic,
717 width,
718 height,
719 depth,
720 length,
721 type,
722 maptype,
723 maplength;
724 } SUNInfo;
725
cristy3ed852e2009-09-05 21:47:34 +0000726 MagickBooleanType
727 status;
728
729 MagickOffsetType
730 scene;
731
732 MagickSizeType
733 number_pixels;
734
cristy4c08aed2011-07-01 19:47:50 +0000735 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000736 *p;
737
cristybb503372010-05-27 20:51:26 +0000738 register ssize_t
cristye13c3042011-03-03 01:30:05 +0000739 i,
cristy3ed852e2009-09-05 21:47:34 +0000740 x;
741
cristye13c3042011-03-03 01:30:05 +0000742 ssize_t
743 y;
cristy3ed852e2009-09-05 21:47:34 +0000744
745 SUNInfo
746 sun_info;
747
748 /*
749 Open output image file.
750 */
751 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000752 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000753 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000754 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000755 if (image->debug != MagickFalse)
756 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3a37efd2011-08-28 20:31:03 +0000757 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000758 assert(exception->signature == MagickCoreSignature);
cristy3a37efd2011-08-28 20:31:03 +0000759 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +0000760 if (status == MagickFalse)
761 return(status);
762 scene=0;
763 do
764 {
765 /*
766 Initialize SUN raster file header.
767 */
cristyaf8d3912014-02-21 14:50:33 +0000768 (void) TransformImageColorspace(image,sRGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000769 sun_info.magic=0x59a66a95;
770 if ((image->columns != (unsigned int) image->columns) ||
771 (image->rows != (unsigned int) image->rows))
772 ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit");
773 sun_info.width=(unsigned int) image->columns;
774 sun_info.height=(unsigned int) image->rows;
cristy22a6f212014-11-30 15:59:52 +0000775 sun_info.type=(unsigned int)
cristy3ed852e2009-09-05 21:47:34 +0000776 (image->storage_class == DirectClass ? RT_FORMAT_RGB : RT_STANDARD);
777 sun_info.maptype=RMT_NONE;
778 sun_info.maplength=0;
779 number_pixels=(MagickSizeType) image->columns*image->rows;
780 if ((4*number_pixels) != (size_t) (4*number_pixels))
781 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
782 if (image->storage_class == DirectClass)
783 {
784 /*
785 Full color SUN raster.
786 */
cristy17f11b02014-12-20 19:37:04 +0000787 sun_info.depth=(unsigned int) image->alpha_trait != UndefinedPixelTrait ?
cristydc2d3272013-02-12 14:00:44 +0000788 32U : 24U;
cristy17f11b02014-12-20 19:37:04 +0000789 sun_info.length=(unsigned int) ((image->alpha_trait != UndefinedPixelTrait ?
cristydc2d3272013-02-12 14:00:44 +0000790 4 : 3)*number_pixels);
cristyeaedf062010-05-29 22:36:02 +0000791 sun_info.length+=sun_info.length & 0x01 ? (unsigned int) image->rows :
792 0;
cristy3ed852e2009-09-05 21:47:34 +0000793 }
794 else
dirkf1d85482015-04-06 00:36:00 +0000795 if (SetImageMonochrome(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000796 {
797 /*
798 Monochrome SUN raster.
799 */
800 sun_info.depth=1;
801 sun_info.length=(unsigned int) (((image->columns+7) >> 3)*
802 image->rows);
cristyf9cca6a2010-06-04 23:49:28 +0000803 sun_info.length+=(unsigned int) (((image->columns/8)+(image->columns %
804 8 ? 1 : 0)) % 2 ? image->rows : 0);
cristy3ed852e2009-09-05 21:47:34 +0000805 }
806 else
807 {
808 /*
809 Colormapped SUN raster.
810 */
811 sun_info.depth=8;
812 sun_info.length=(unsigned int) number_pixels;
cristyf9cca6a2010-06-04 23:49:28 +0000813 sun_info.length+=(unsigned int) (image->columns & 0x01 ? image->rows :
814 0);
cristy3ed852e2009-09-05 21:47:34 +0000815 sun_info.maptype=RMT_EQUAL_RGB;
816 sun_info.maplength=(unsigned int) (3*image->colors);
817 }
818 /*
819 Write SUN header.
820 */
821 (void) WriteBlobMSBLong(image,sun_info.magic);
822 (void) WriteBlobMSBLong(image,sun_info.width);
823 (void) WriteBlobMSBLong(image,sun_info.height);
824 (void) WriteBlobMSBLong(image,sun_info.depth);
825 (void) WriteBlobMSBLong(image,sun_info.length);
826 (void) WriteBlobMSBLong(image,sun_info.type);
827 (void) WriteBlobMSBLong(image,sun_info.maptype);
828 (void) WriteBlobMSBLong(image,sun_info.maplength);
829 /*
830 Convert MIFF to SUN raster pixels.
831 */
832 x=0;
833 y=0;
834 if (image->storage_class == DirectClass)
835 {
836 register unsigned char
837 *q;
838
839 size_t
cristyacee8122009-11-19 02:04:10 +0000840 bytes_per_pixel,
cristy3ed852e2009-09-05 21:47:34 +0000841 length;
842
843 unsigned char
844 *pixels;
845
846 /*
847 Allocate memory for pixels.
848 */
cristyacee8122009-11-19 02:04:10 +0000849 bytes_per_pixel=3;
cristy17f11b02014-12-20 19:37:04 +0000850 if (image->alpha_trait != UndefinedPixelTrait)
cristyacee8122009-11-19 02:04:10 +0000851 bytes_per_pixel++;
cristy3ed852e2009-09-05 21:47:34 +0000852 length=image->columns;
853 pixels=(unsigned char *) AcquireQuantumMemory(length,4*sizeof(*pixels));
854 if (pixels == (unsigned char *) NULL)
855 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
856 /*
857 Convert DirectClass packet to SUN RGB pixel.
858 */
cristybb503372010-05-27 20:51:26 +0000859 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000860 {
cristy3a37efd2011-08-28 20:31:03 +0000861 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000862 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000863 break;
864 q=pixels;
cristybb503372010-05-27 20:51:26 +0000865 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000866 {
cristy17f11b02014-12-20 19:37:04 +0000867 if (image->alpha_trait != UndefinedPixelTrait)
cristy4c08aed2011-07-01 19:47:50 +0000868 *q++=ScaleQuantumToChar(GetPixelAlpha(image,p));
869 *q++=ScaleQuantumToChar(GetPixelRed(image,p));
870 *q++=ScaleQuantumToChar(GetPixelGreen(image,p));
871 *q++=ScaleQuantumToChar(GetPixelBlue(image,p));
cristyed231572011-07-14 02:18:59 +0000872 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000873 }
cristyacee8122009-11-19 02:04:10 +0000874 if (((bytes_per_pixel*image->columns) & 0x01) != 0)
875 *q++='\0'; /* pad scanline */
cristy3ed852e2009-09-05 21:47:34 +0000876 (void) WriteBlob(image,(size_t) (q-pixels),pixels);
877 if (image->previous == (Image *) NULL)
878 {
cristycee97112010-05-28 00:44:52 +0000879 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
880 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000881 if (status == MagickFalse)
882 break;
883 }
884 }
885 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
886 }
887 else
dirkf1d85482015-04-06 00:36:00 +0000888 if (SetImageMonochrome(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000889 {
890 register unsigned char
891 bit,
892 byte;
893
894 /*
895 Convert PseudoClass image to a SUN monochrome image.
896 */
cristy018f07f2011-09-04 21:15:19 +0000897 (void) SetImageType(image,BilevelType,exception);
cristybb503372010-05-27 20:51:26 +0000898 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000899 {
cristy3a37efd2011-08-28 20:31:03 +0000900 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000901 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000902 break;
cristy3ed852e2009-09-05 21:47:34 +0000903 bit=0;
904 byte=0;
cristybb503372010-05-27 20:51:26 +0000905 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000906 {
907 byte<<=1;
cristyd0323222013-04-07 16:13:21 +0000908 if (GetPixelLuma(image,p) < (QuantumRange/2.0))
cristy3ed852e2009-09-05 21:47:34 +0000909 byte|=0x01;
910 bit++;
911 if (bit == 8)
912 {
913 (void) WriteBlobByte(image,byte);
914 bit=0;
915 byte=0;
916 }
cristyed231572011-07-14 02:18:59 +0000917 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000918 }
919 if (bit != 0)
920 (void) WriteBlobByte(image,(unsigned char) (byte << (8-bit)));
921 if ((((image->columns/8)+
922 (image->columns % 8 ? 1 : 0)) % 2) != 0)
923 (void) WriteBlobByte(image,0); /* pad scanline */
924 if (image->previous == (Image *) NULL)
925 {
cristycee97112010-05-28 00:44:52 +0000926 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
927 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000928 if (status == MagickFalse)
929 break;
930 }
931 }
932 }
933 else
934 {
935 /*
936 Dump colormap to file.
937 */
cristybb503372010-05-27 20:51:26 +0000938 for (i=0; i < (ssize_t) image->colors; i++)
cristyc6da28e2011-04-28 01:41:35 +0000939 (void) WriteBlobByte(image,ScaleQuantumToChar(
cristy22a6f212014-11-30 15:59:52 +0000940 ClampToQuantum(image->colormap[i].red)));
cristybb503372010-05-27 20:51:26 +0000941 for (i=0; i < (ssize_t) image->colors; i++)
cristyc6da28e2011-04-28 01:41:35 +0000942 (void) WriteBlobByte(image,ScaleQuantumToChar(
cristy22a6f212014-11-30 15:59:52 +0000943 ClampToQuantum(image->colormap[i].green)));
cristybb503372010-05-27 20:51:26 +0000944 for (i=0; i < (ssize_t) image->colors; i++)
cristyc6da28e2011-04-28 01:41:35 +0000945 (void) WriteBlobByte(image,ScaleQuantumToChar(
cristy22a6f212014-11-30 15:59:52 +0000946 ClampToQuantum(image->colormap[i].blue)));
cristy3ed852e2009-09-05 21:47:34 +0000947 /*
948 Convert PseudoClass packet to SUN colormapped pixel.
949 */
cristybb503372010-05-27 20:51:26 +0000950 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000951 {
cristy3a37efd2011-08-28 20:31:03 +0000952 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000953 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000954 break;
cristybb503372010-05-27 20:51:26 +0000955 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000956 {
cristyc6da28e2011-04-28 01:41:35 +0000957 (void) WriteBlobByte(image,(unsigned char)
cristy4c08aed2011-07-01 19:47:50 +0000958 GetPixelIndex(image,p));
cristyed231572011-07-14 02:18:59 +0000959 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000960 }
cristyacee8122009-11-19 02:04:10 +0000961 if (image->columns & 0x01)
cristy3ed852e2009-09-05 21:47:34 +0000962 (void) WriteBlobByte(image,0); /* pad scanline */
963 if (image->previous == (Image *) NULL)
964 {
cristycee97112010-05-28 00:44:52 +0000965 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
cristyc6da28e2011-04-28 01:41:35 +0000966 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000967 if (status == MagickFalse)
968 break;
969 }
970 }
971 }
972 if (GetNextImageInList(image) == (Image *) NULL)
973 break;
974 image=SyncNextImageInList(image);
975 status=SetImageProgress(image,SaveImagesTag,scene++,
976 GetImageListLength(image));
977 if (status == MagickFalse)
978 break;
979 } while (image_info->adjoin != MagickFalse);
980 (void) CloseBlob(image);
981 return(MagickTrue);
982}