2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13 % Read/Write Sun Rasterfile Image Format %
20 % Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization %
21 % dedicated to making software imaging solutions freely available. %
23 % You may not use this file except in compliance with the License. You may %
24 % obtain a copy of the License at %
26 % http://www.imagemagick.org/script/license.php %
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. %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
42 #include "magick/studio.h"
43 #include "magick/blob.h"
44 #include "magick/blob-private.h"
45 #include "magick/cache.h"
46 #include "magick/color.h"
47 #include "magick/color-private.h"
48 #include "magick/colormap.h"
49 #include "magick/colorspace.h"
50 #include "magick/exception.h"
51 #include "magick/exception-private.h"
52 #include "magick/image.h"
53 #include "magick/image-private.h"
54 #include "magick/list.h"
55 #include "magick/magick.h"
56 #include "magick/memory_.h"
57 #include "magick/monitor.h"
58 #include "magick/monitor-private.h"
59 #include "magick/quantum-private.h"
60 #include "magick/static.h"
61 #include "magick/string_.h"
62 #include "magick/module.h"
67 static MagickBooleanType
68 WriteSUNImage(const ImageInfo *,Image *);
71 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
81 % IsSUN() returns MagickTrue if the image format type, identified by the
82 % magick string, is SUN.
84 % The format of the IsSUN method is:
86 % MagickBooleanType IsSUN(const unsigned char *magick,const size_t length)
88 % A description of each parameter follows:
90 % o magick: compare image format pattern against these bytes.
92 % o length: Specifies the length of the magick string.
95 static MagickBooleanType IsSUN(const unsigned char *magick,const size_t length)
99 if (memcmp(magick,"\131\246\152\225",4) == 0)
105 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
109 % D e c o d e I m a g e %
113 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
115 % DecodeImage unpacks the packed image pixels into runlength-encoded pixel
118 % The format of the DecodeImage method is:
120 % MagickBooleanType DecodeImage(const unsigned char *compressed_pixels,
121 % const size_t length,unsigned char *pixels)
123 % A description of each parameter follows:
125 % o compressed_pixels: The address of a byte (8 bits) array of compressed
128 % o length: An integer value that is the total number of bytes of the
129 % source image (as just read by ReadBlob)
131 % o pixels: The address of a byte (8 bits) array of pixel data created by
132 % the uncompression process. The number of bytes in this array
133 % must be at least equal to the number columns times the number of rows
134 % of the source pixels.
137 static MagickBooleanType DecodeImage(const unsigned char *compressed_pixels,
138 const size_t length,unsigned char *pixels,size_t maxpixels)
140 register const unsigned char
144 register unsigned char
153 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
154 assert(compressed_pixels != (unsigned char *) NULL);
155 assert(pixels != (unsigned char *) NULL);
159 while (((size_t) (p-compressed_pixels) < length) && (q < l))
167 Runlength-encoded packet: <count><byte>
169 count=(ssize_t) (*p++);
172 while ((count >= 0) && (q < l))
183 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
187 % R e a d S U N I m a g e %
191 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
193 % ReadSUNImage() reads a SUN image file and returns it. It allocates
194 % the memory necessary for the new Image structure and returns a pointer to
197 % The format of the ReadSUNImage method is:
199 % Image *ReadSUNImage(const ImageInfo *image_info,ExceptionInfo *exception)
201 % A description of each parameter follows:
203 % o image_info: the image info.
205 % o exception: return any errors or warnings in this structure.
208 static Image *ReadSUNImage(const ImageInfo *image_info,ExceptionInfo *exception)
210 #define RMT_EQUAL_RGB 1
213 #define RT_STANDARD 1
215 #define RT_FORMAT_RGB 3
217 typedef struct _SUNInfo
252 register unsigned char
275 assert(image_info != (const ImageInfo *) NULL);
276 assert(image_info->signature == MagickSignature);
277 if (image_info->debug != MagickFalse)
278 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
279 image_info->filename);
280 assert(exception != (ExceptionInfo *) NULL);
281 assert(exception->signature == MagickSignature);
282 image=AcquireImage(image_info);
283 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
284 if (status == MagickFalse)
286 image=DestroyImageList(image);
287 return((Image *) NULL);
290 Read SUN raster header.
292 (void) ResetMagickMemory(&sun_info,0,sizeof(sun_info));
293 sun_info.magic=ReadBlobMSBLong(image);
297 Verify SUN identifier.
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);
308 image->columns=sun_info.width;
309 image->rows=sun_info.height;
310 if ((sun_info.depth == 0) || (sun_info.depth > 32))
311 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
312 image->depth=sun_info.depth <= 8 ? sun_info.depth :
313 MAGICKCORE_QUANTUM_DEPTH;
314 if (sun_info.depth < 24)
319 image->storage_class=PseudoClass;
320 image->colors=sun_info.maplength;
322 if (sun_info.maptype == RMT_NONE)
323 image->colors=one << sun_info.depth;
324 if (sun_info.maptype == RMT_EQUAL_RGB)
325 image->colors=sun_info.maplength/3;
327 switch (sun_info.maptype)
331 if (sun_info.depth < 24)
334 Create linear color ramp.
336 if (AcquireImageColormap(image,image->colors) == MagickFalse)
337 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
347 Read SUN raster colormap.
349 if (AcquireImageColormap(image,image->colors) == MagickFalse)
350 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
351 sun_colormap=(unsigned char *) AcquireQuantumMemory(image->colors,
352 sizeof(*sun_colormap));
353 if (sun_colormap == (unsigned char *) NULL)
354 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
355 count=ReadBlob(image,image->colors,sun_colormap);
356 for (i=0; i < (ssize_t) image->colors; i++)
357 image->colormap[i].red=ScaleCharToQuantum(sun_colormap[i]);
358 count=ReadBlob(image,image->colors,sun_colormap);
359 for (i=0; i < (ssize_t) image->colors; i++)
360 image->colormap[i].green=ScaleCharToQuantum(sun_colormap[i]);
361 count=ReadBlob(image,image->colors,sun_colormap);
362 for (i=0; i < (ssize_t) image->colors; i++)
363 image->colormap[i].blue=ScaleCharToQuantum(sun_colormap[i]);
364 sun_colormap=(unsigned char *) RelinquishMagickMemory(sun_colormap);
373 Read SUN raster colormap.
375 sun_colormap=(unsigned char *) AcquireQuantumMemory(sun_info.maplength,
376 sizeof(*sun_colormap));
377 if (sun_colormap == (unsigned char *) NULL)
378 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
379 count=ReadBlob(image,sun_info.maplength,sun_colormap);
380 sun_colormap=(unsigned char *) RelinquishMagickMemory(sun_colormap);
384 ThrowReaderException(CoderError,"ColormapTypeNotSupported");
386 image->matte=sun_info.depth == 32 ? MagickTrue : MagickFalse;
387 image->columns=sun_info.width;
388 image->rows=sun_info.height;
389 if (image_info->ping != MagickFalse)
391 (void) CloseBlob(image);
392 return(GetFirstImageInList(image));
394 if ((sun_info.length*sizeof(*sun_data))/sizeof(*sun_data) !=
395 sun_info.length || !sun_info.length)
396 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
397 number_pixels=(MagickSizeType) image->columns*image->rows;
398 if ((sun_info.depth >= 8) &&
399 ((number_pixels*((sun_info.depth+7)/8)) > sun_info.length))
400 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
401 sun_data=(unsigned char *) AcquireQuantumMemory((size_t) sun_info.length,
403 if (sun_data == (unsigned char *) NULL)
404 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
405 count=(ssize_t) ReadBlob(image,sun_info.length,sun_data);
406 if ((count == 0) && (sun_info.type != RT_ENCODED))
407 ThrowReaderException(CorruptImageError,"UnableToReadImageData");
410 if (sun_info.type == RT_ENCODED)
416 Read run-length encoded raster pixels.
418 height=sun_info.height;
419 bytes_per_line=sun_info.width*sun_info.depth;
420 if ((height == 0) || (sun_info.width == 0) || (sun_info.depth == 0) ||
421 ((bytes_per_line/sun_info.depth) != sun_info.width))
422 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
425 if ((bytes_per_line >> 1) != (sun_info.width*sun_info.depth+15))
426 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
428 sun_pixels=(unsigned char *) AcquireQuantumMemory(height,
429 bytes_per_line*sizeof(*sun_pixels));
430 if (sun_pixels == (unsigned char *) NULL)
431 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
432 (void) DecodeImage(sun_data,sun_info.length,sun_pixels,
433 bytes_per_line*height);
434 sun_data=(unsigned char *) RelinquishMagickMemory(sun_data);
437 Convert SUN raster image to pixel packets.
440 if (sun_info.depth == 1)
441 for (y=0; y < (ssize_t) image->rows; y++)
443 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
444 if (q == (PixelPacket *) NULL)
446 indexes=GetAuthenticIndexQueue(image);
447 for (x=0; x < ((ssize_t) image->columns-7); x+=8)
449 for (bit=7; bit >= 0; bit--)
450 SetIndexPixelComponent(indexes+x+7-bit,((*p) & (0x01 << bit) ?
454 if ((image->columns % 8) != 0)
456 for (bit=7; bit >= (ssize_t) (8-(image->columns % 8)); bit--)
457 SetIndexPixelComponent(indexes+x+7-bit,(*p) & (0x01 << bit) ?
461 if ((((image->columns/8)+(image->columns % 8 ? 1 : 0)) % 2) != 0)
463 if (SyncAuthenticPixels(image,exception) == MagickFalse)
465 if (image->previous == (Image *) NULL)
467 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
469 if (status == MagickFalse)
474 if (image->storage_class == PseudoClass)
476 length=image->rows*(image->columns+image->columns % 2);
477 if (((sun_info.type == RT_ENCODED) &&
478 (length > (bytes_per_line*image->rows))) ||
479 ((sun_info.type != RT_ENCODED) && (length > sun_info.length)))
480 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
481 for (y=0; y < (ssize_t) image->rows; y++)
483 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
484 if (q == (PixelPacket *) NULL)
486 indexes=GetAuthenticIndexQueue(image);
487 for (x=0; x < (ssize_t) image->columns; x++)
488 SetIndexPixelComponent(indexes+x,*p++);
489 if ((image->columns % 2) != 0)
491 if (SyncAuthenticPixels(image,exception) == MagickFalse)
493 if (image->previous == (Image *) NULL)
495 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
497 if (status == MagickFalse)
508 if (image->matte != MagickFalse)
510 length=image->rows*((bytes_per_line*image->columns)+
512 if (((sun_info.type == RT_ENCODED) &&
513 (length > (bytes_per_line*image->rows))) ||
514 ((sun_info.type != RT_ENCODED) && (length > sun_info.length)))
515 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
516 for (y=0; y < (ssize_t) image->rows; y++)
518 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
519 if (q == (PixelPacket *) NULL)
521 for (x=0; x < (ssize_t) image->columns; x++)
523 if (image->matte != MagickFalse)
524 SetOpacityPixelComponent(q,(QuantumRange-
525 ScaleCharToQuantum(*p++)));
526 if (sun_info.type == RT_STANDARD)
528 SetBluePixelComponent(q,ScaleCharToQuantum(*p++));
529 SetGreenPixelComponent(q,ScaleCharToQuantum(*p++));
530 SetRedPixelComponent(q,ScaleCharToQuantum(*p++));
534 SetRedPixelComponent(q,ScaleCharToQuantum(*p++));
535 SetGreenPixelComponent(q,ScaleCharToQuantum(*p++));
536 SetBluePixelComponent(q,ScaleCharToQuantum(*p++));
538 if (image->colors != 0)
540 SetRedPixelComponent(q,image->colormap[(ssize_t)
542 SetGreenPixelComponent(q,image->colormap[(ssize_t)
544 SetBluePixelComponent(q,image->colormap[(ssize_t)
549 if (((bytes_per_pixel*image->columns) % 2) != 0)
551 if (SyncAuthenticPixels(image,exception) == MagickFalse)
553 if (image->previous == (Image *) NULL)
555 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
557 if (status == MagickFalse)
562 if (image->storage_class == PseudoClass)
563 (void) SyncImage(image);
564 sun_pixels=(unsigned char *) RelinquishMagickMemory(sun_pixels);
565 if (EOFBlob(image) != MagickFalse)
567 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
572 Proceed to next image.
574 if (image_info->number_scenes != 0)
575 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
577 sun_info.magic=ReadBlobMSBLong(image);
578 if (sun_info.magic == 0x59a66a95)
581 Allocate next image structure.
583 AcquireNextImage(image_info,image);
584 if (GetNextImageInList(image) == (Image *) NULL)
586 image=DestroyImageList(image);
587 return((Image *) NULL);
589 image=SyncNextImageInList(image);
590 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
592 if (status == MagickFalse)
595 } while (sun_info.magic == 0x59a66a95);
596 (void) CloseBlob(image);
597 return(GetFirstImageInList(image));
601 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
605 % R e g i s t e r S U N I m a g e %
609 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
611 % RegisterSUNImage() adds attributes for the SUN image format to
612 % the list of supported formats. The attributes include the image format
613 % tag, a method to read and/or write the format, whether the format
614 % supports the saving of more than one frame to the same file or blob,
615 % whether the format supports native in-memory I/O, and a brief
616 % description of the format.
618 % The format of the RegisterSUNImage method is:
620 % size_t RegisterSUNImage(void)
623 ModuleExport size_t RegisterSUNImage(void)
628 entry=SetMagickInfo("RAS");
629 entry->decoder=(DecodeImageHandler *) ReadSUNImage;
630 entry->encoder=(EncodeImageHandler *) WriteSUNImage;
631 entry->magick=(IsImageFormatHandler *) IsSUN;
632 entry->description=ConstantString("SUN Rasterfile");
633 entry->module=ConstantString("SUN");
634 (void) RegisterMagickInfo(entry);
635 entry=SetMagickInfo("SUN");
636 entry->decoder=(DecodeImageHandler *) ReadSUNImage;
637 entry->encoder=(EncodeImageHandler *) WriteSUNImage;
638 entry->description=ConstantString("SUN Rasterfile");
639 entry->module=ConstantString("SUN");
640 (void) RegisterMagickInfo(entry);
641 return(MagickImageCoderSignature);
645 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
649 % U n r e g i s t e r S U N I m a g e %
653 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
655 % UnregisterSUNImage() removes format registrations made by the
656 % SUN module from the list of supported formats.
658 % The format of the UnregisterSUNImage method is:
660 % UnregisterSUNImage(void)
663 ModuleExport void UnregisterSUNImage(void)
665 (void) UnregisterMagickInfo("RAS");
666 (void) UnregisterMagickInfo("SUN");
670 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
674 % W r i t e S U N I m a g e %
678 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
680 % WriteSUNImage() writes an image in the SUN rasterfile format.
682 % The format of the WriteSUNImage method is:
684 % MagickBooleanType WriteSUNImage(const ImageInfo *image_info,Image *image)
686 % A description of each parameter follows.
688 % o image_info: the image info.
690 % o image: The image.
693 static MagickBooleanType WriteSUNImage(const ImageInfo *image_info,Image *image)
695 #define RMT_EQUAL_RGB 1
698 #define RT_STANDARD 1
699 #define RT_FORMAT_RGB 3
701 typedef struct _SUNInfo
723 register const IndexPacket
726 register const PixelPacket
740 Open output image file.
742 assert(image_info != (const ImageInfo *) NULL);
743 assert(image_info->signature == MagickSignature);
744 assert(image != (Image *) NULL);
745 assert(image->signature == MagickSignature);
746 if (image->debug != MagickFalse)
747 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
748 status=OpenBlob(image_info,image,WriteBinaryBlobMode,&image->exception);
749 if (status == MagickFalse)
755 Initialize SUN raster file header.
757 if (image->colorspace != RGBColorspace)
758 (void) TransformImageColorspace(image,RGBColorspace);
759 sun_info.magic=0x59a66a95;
760 if ((image->columns != (unsigned int) image->columns) ||
761 (image->rows != (unsigned int) image->rows))
762 ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit");
763 sun_info.width=(unsigned int) image->columns;
764 sun_info.height=(unsigned int) image->rows;
765 sun_info.type=(unsigned int)
766 (image->storage_class == DirectClass ? RT_FORMAT_RGB : RT_STANDARD);
767 sun_info.maptype=RMT_NONE;
768 sun_info.maplength=0;
769 number_pixels=(MagickSizeType) image->columns*image->rows;
770 if ((4*number_pixels) != (size_t) (4*number_pixels))
771 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
772 if (image->storage_class == DirectClass)
775 Full color SUN raster.
777 sun_info.depth=(unsigned int) image->matte ? 32U : 24U;
778 sun_info.length=(unsigned int) ((image->matte ? 4 : 3)*number_pixels);
779 sun_info.length+=sun_info.length & 0x01 ? (unsigned int) image->rows :
783 if (IsMonochromeImage(image,&image->exception))
786 Monochrome SUN raster.
789 sun_info.length=(unsigned int) (((image->columns+7) >> 3)*
791 sun_info.length+=(unsigned int) (((image->columns/8)+(image->columns %
792 8 ? 1 : 0)) % 2 ? image->rows : 0);
797 Colormapped SUN raster.
800 sun_info.length=(unsigned int) number_pixels;
801 sun_info.length+=(unsigned int) (image->columns & 0x01 ? image->rows :
803 sun_info.maptype=RMT_EQUAL_RGB;
804 sun_info.maplength=(unsigned int) (3*image->colors);
809 (void) WriteBlobMSBLong(image,sun_info.magic);
810 (void) WriteBlobMSBLong(image,sun_info.width);
811 (void) WriteBlobMSBLong(image,sun_info.height);
812 (void) WriteBlobMSBLong(image,sun_info.depth);
813 (void) WriteBlobMSBLong(image,sun_info.length);
814 (void) WriteBlobMSBLong(image,sun_info.type);
815 (void) WriteBlobMSBLong(image,sun_info.maptype);
816 (void) WriteBlobMSBLong(image,sun_info.maplength);
818 Convert MIFF to SUN raster pixels.
822 if (image->storage_class == DirectClass)
824 register unsigned char
835 Allocate memory for pixels.
838 if (image->matte != MagickFalse)
840 length=image->columns;
841 pixels=(unsigned char *) AcquireQuantumMemory(length,4*sizeof(*pixels));
842 if (pixels == (unsigned char *) NULL)
843 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
845 Convert DirectClass packet to SUN RGB pixel.
847 for (y=0; y < (ssize_t) image->rows; y++)
849 p=GetVirtualPixels(image,0,y,image->columns,1,&image->exception);
850 if (p == (const PixelPacket *) NULL)
853 for (x=0; x < (ssize_t) image->columns; x++)
855 if (image->matte != MagickFalse)
856 *q++=ScaleQuantumToChar(GetAlphaPixelComponent(p));
857 *q++=ScaleQuantumToChar(GetRedPixelComponent(p));
858 *q++=ScaleQuantumToChar(GetGreenPixelComponent(p));
859 *q++=ScaleQuantumToChar(GetBluePixelComponent(p));
862 if (((bytes_per_pixel*image->columns) & 0x01) != 0)
863 *q++='\0'; /* pad scanline */
864 (void) WriteBlob(image,(size_t) (q-pixels),pixels);
865 if (image->previous == (Image *) NULL)
867 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
869 if (status == MagickFalse)
873 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
876 if (IsMonochromeImage(image,&image->exception))
878 register unsigned char
883 Convert PseudoClass image to a SUN monochrome image.
885 (void) SetImageType(image,BilevelType);
886 for (y=0; y < (ssize_t) image->rows; y++)
888 p=GetVirtualPixels(image,0,y,image->columns,1,&image->exception);
889 if (p == (const PixelPacket *) NULL)
891 indexes=GetVirtualIndexQueue(image);
894 for (x=0; x < (ssize_t) image->columns; x++)
897 if (PixelIntensity(p) < (MagickRealType) (QuantumRange/2.0))
902 (void) WriteBlobByte(image,byte);
909 (void) WriteBlobByte(image,(unsigned char) (byte << (8-bit)));
910 if ((((image->columns/8)+
911 (image->columns % 8 ? 1 : 0)) % 2) != 0)
912 (void) WriteBlobByte(image,0); /* pad scanline */
913 if (image->previous == (Image *) NULL)
915 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
917 if (status == MagickFalse)
925 Dump colormap to file.
927 for (i=0; i < (ssize_t) image->colors; i++)
928 (void) WriteBlobByte(image,ScaleQuantumToChar(
929 image->colormap[i].red));
930 for (i=0; i < (ssize_t) image->colors; i++)
931 (void) WriteBlobByte(image,ScaleQuantumToChar(
932 image->colormap[i].green));
933 for (i=0; i < (ssize_t) image->colors; i++)
934 (void) WriteBlobByte(image,ScaleQuantumToChar(
935 image->colormap[i].blue));
937 Convert PseudoClass packet to SUN colormapped pixel.
939 for (y=0; y < (ssize_t) image->rows; y++)
941 p=GetVirtualPixels(image,0,y,image->columns,1,&image->exception);
942 if (p == (const PixelPacket *) NULL)
944 indexes=GetVirtualIndexQueue(image);
945 for (x=0; x < (ssize_t) image->columns; x++)
947 (void) WriteBlobByte(image,(unsigned char)
948 GetIndexPixelComponent(indexes+x));
951 if (image->columns & 0x01)
952 (void) WriteBlobByte(image,0); /* pad scanline */
953 if (image->previous == (Image *) NULL)
955 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
957 if (status == MagickFalse)
962 if (GetNextImageInList(image) == (Image *) NULL)
964 image=SyncNextImageInList(image);
965 status=SetImageProgress(image,SaveImagesTag,scene++,
966 GetImageListLength(image));
967 if (status == MagickFalse)
969 } while (image_info->adjoin != MagickFalse);
970 (void) CloseBlob(image);