]> granicus.if.org Git - imagemagick/blob - coders/icon.c
(no commit message)
[imagemagick] / coders / icon.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %                        IIIII   CCCC   OOO   N   N                           %
7 %                          I    C      O   O  NN  N                           %
8 %                          I    C      O   O  N N N                           %
9 %                          I    C      O   O  N  NN                           %
10 %                        IIIII   CCCC   OOO   N   N                           %
11 %                                                                             %
12 %                                                                             %
13 %                   Read Microsoft Windows Icon Format                        %
14 %                                                                             %
15 %                              Software Design                                %
16 %                                   Cristy                                    %
17 %                                 July 1992                                   %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2015 ImageMagick Studio LLC, a non-profit organization      %
21 %  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 \f
39 /*
40   Include declarations.
41 */
42 #include "MagickCore/studio.h"
43 #include "MagickCore/artifact.h"
44 #include "MagickCore/blob.h"
45 #include "MagickCore/blob-private.h"
46 #include "MagickCore/cache.h"
47 #include "MagickCore/colormap.h"
48 #include "MagickCore/colorspace.h"
49 #include "MagickCore/colorspace-private.h"
50 #include "MagickCore/exception.h"
51 #include "MagickCore/exception-private.h"
52 #include "MagickCore/image.h"
53 #include "MagickCore/image-private.h"
54 #include "MagickCore/list.h"
55 #include "MagickCore/log.h"
56 #include "MagickCore/magick.h"
57 #include "MagickCore/memory_.h"
58 #include "MagickCore/monitor.h"
59 #include "MagickCore/monitor-private.h"
60 #include "MagickCore/nt-base-private.h"
61 #include "MagickCore/option.h"
62 #include "MagickCore/pixel-accessor.h"
63 #include "MagickCore/quantize.h"
64 #include "MagickCore/quantum-private.h"
65 #include "MagickCore/static.h"
66 #include "MagickCore/string_.h"
67 #include "MagickCore/module.h"
68 \f
69 /*
70   Define declarations.
71 */
72 #if !defined(MAGICKCORE_WINDOWS_SUPPORT) || defined(__MINGW32__) || defined(__MINGW64__)
73 #define BI_RGB  0
74 #define BI_RLE8  1
75 #define BI_BITFIELDS  3
76 #endif
77 #define MaxIcons  1024
78 \f
79 /*
80   Typedef declarations.
81 */
82 typedef struct _IconEntry
83 {
84   unsigned char
85     width,
86     height,
87     colors,
88     reserved;
89
90   unsigned short int
91     planes,
92     bits_per_pixel;
93
94   size_t
95     size,
96     offset;
97 } IconEntry;
98
99 typedef struct _IconFile
100 {
101   short
102     reserved,
103     resource_type,
104     count;
105
106   IconEntry
107     directory[MaxIcons];
108 } IconFile;
109
110 typedef struct _IconInfo
111 {
112   size_t
113     file_size,
114     ba_offset,
115     offset_bits,
116     size;
117
118   ssize_t
119     width,
120     height;
121
122   unsigned short
123     planes,
124     bits_per_pixel;
125
126   size_t
127     compression,
128     image_size,
129     x_pixels,
130     y_pixels,
131     number_colors,
132     red_mask,
133     green_mask,
134     blue_mask,
135     alpha_mask,
136     colors_important;
137
138   ssize_t
139     colorspace;
140 } IconInfo;
141 \f
142 /*
143   Forward declaractions.
144 */
145 static Image
146   *AutoResizeImage(const Image *,const char *,MagickOffsetType *,
147     ExceptionInfo *);
148
149 static MagickBooleanType
150   WriteICONImage(const ImageInfo *,Image *,ExceptionInfo *);
151
152 Image *AutoResizeImage(const Image *image,const char *option,
153   MagickOffsetType *count,ExceptionInfo *exception)
154 {
155   #define MAX_SIZES 16
156
157   char
158     *q;
159
160   const char
161     *p;
162
163   Image
164     *resized,
165     *images;
166
167   register ssize_t
168     i;
169
170   size_t
171     sizes[MAX_SIZES]={256,192,128,96,64,48,40,32,24,16};
172
173   images=NULL;
174   *count=0;
175   i=0;
176   p=option;
177   while (*p != '\0' && i < MAX_SIZES)
178   {
179     size_t
180       size;
181
182     while ((isspace((int) ((unsigned char) *p)) != 0))
183       p++;
184
185     size=(size_t)strtol(p,&q,10);
186     if (p == q || size < 16 || size > 256)
187         return((Image *) NULL);
188
189     p=q;
190     sizes[i++]=size;
191
192     while ((isspace((int) ((unsigned char) *p)) != 0) || (*p == ','))
193       p++;
194   }
195
196   if (i==0)
197     i=10;
198   *count=i;
199   for (i=0; i < *count; i++)
200   {
201     resized=ResizeImage(image,sizes[i],sizes[i],image->filter,exception);
202     if (resized == (Image *) NULL)
203       return(DestroyImageList(images));
204
205     if (images == (Image *) NULL)
206       images=resized;
207     else
208       AppendImageToList(&images,resized);
209   }
210   return(images);
211 }
212 \f
213 /*
214 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
215 %                                                                             %
216 %                                                                             %
217 %                                                                             %
218 %   R e a d I C O N I m a g e                                                 %
219 %                                                                             %
220 %                                                                             %
221 %                                                                             %
222 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
223 %
224 %  ReadICONImage() reads a Microsoft icon image file and returns it.  It
225 %  allocates the memory necessary for the new Image structure and returns a
226 %  pointer to the new image.
227 %
228 %  The format of the ReadICONImage method is:
229 %
230 %      Image *ReadICONImage(const ImageInfo *image_info,
231 %        ExceptionInfo *exception)
232 %
233 %  A description of each parameter follows:
234 %
235 %    o image_info: the image info.
236 %
237 %    o exception: return any errors or warnings in this structure.
238 %
239 */
240 static Image *ReadICONImage(const ImageInfo *image_info,
241   ExceptionInfo *exception)
242 {
243   IconFile
244     icon_file;
245
246   IconInfo
247     icon_info;
248
249   Image
250     *image;
251
252   MagickBooleanType
253     status;
254
255   register ssize_t
256     i,
257     x;
258
259   register Quantum
260     *q;
261
262   register unsigned char
263     *p;
264
265   size_t
266     bit,
267     byte,
268     bytes_per_line,
269     one,
270     scanline_pad;
271
272   ssize_t
273     count,
274     offset,
275     y;
276
277   /*
278     Open image file.
279   */
280   assert(image_info != (const ImageInfo *) NULL);
281   assert(image_info->signature == MagickSignature);
282   (void) LogMagickEvent(CoderEvent,GetMagickModule(),"%s",image_info->filename);
283   assert(exception != (ExceptionInfo *) NULL);
284   assert(exception->signature == MagickSignature);
285   image=AcquireImage(image_info,exception);
286   status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
287   if (status == MagickFalse)
288     {
289       image=DestroyImageList(image);
290       return((Image *) NULL);
291     }
292   icon_file.reserved=(short) ReadBlobLSBShort(image);
293   icon_file.resource_type=(short) ReadBlobLSBShort(image);
294   icon_file.count=(short) ReadBlobLSBShort(image);
295   if ((icon_file.reserved != 0) ||
296       ((icon_file.resource_type != 1) && (icon_file.resource_type != 2)) ||
297       (icon_file.count > MaxIcons))
298     ThrowReaderException(CorruptImageError,"ImproperImageHeader");
299   for (i=0; i < icon_file.count; i++)
300   {
301     icon_file.directory[i].width=(unsigned char) ReadBlobByte(image);
302     icon_file.directory[i].height=(unsigned char) ReadBlobByte(image);
303     icon_file.directory[i].colors=(unsigned char) ReadBlobByte(image);
304     icon_file.directory[i].reserved=(unsigned char) ReadBlobByte(image);
305     icon_file.directory[i].planes=(unsigned short) ReadBlobLSBShort(image);
306     icon_file.directory[i].bits_per_pixel=(unsigned short)
307       ReadBlobLSBShort(image);
308     icon_file.directory[i].size=ReadBlobLSBLong(image);
309     icon_file.directory[i].offset=ReadBlobLSBLong(image);
310     if (EOFBlob(image) != MagickFalse)
311       {
312         ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
313           image->filename);
314         break;
315       }
316   }
317   one=1;
318   for (i=0; i < icon_file.count; i++)
319   {
320     /*
321       Verify Icon identifier.
322     */
323     offset=(ssize_t) SeekBlob(image,(MagickOffsetType)
324       icon_file.directory[i].offset,SEEK_SET);
325     if (offset < 0)
326       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
327     icon_info.size=ReadBlobLSBLong(image);
328     icon_info.width=(unsigned char) ((int) ReadBlobLSBLong(image));
329     icon_info.height=(unsigned char) ((int) ReadBlobLSBLong(image)/2);
330     icon_info.planes=ReadBlobLSBShort(image);
331     icon_info.bits_per_pixel=ReadBlobLSBShort(image);
332     if (EOFBlob(image) != MagickFalse)
333       {
334         ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
335           image->filename);
336         break;
337       }
338     if (((icon_info.planes == 18505) && (icon_info.bits_per_pixel == 21060)) || 
339         (icon_info.size == 0x474e5089))
340       {
341         Image
342           *icon_image;
343
344         ImageInfo
345           *read_info;
346
347         size_t
348           length;
349
350         unsigned char
351           *png;
352
353         /*
354           Icon image encoded as a compressed PNG image.
355         */
356         length=icon_file.directory[i].size;
357         png=(unsigned char *) AcquireQuantumMemory(length+16,sizeof(*png));
358         if (png == (unsigned char *) NULL)
359           ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
360         (void) CopyMagickMemory(png,"\211PNG\r\n\032\n\000\000\000\015",12);
361         png[12]=(unsigned char) icon_info.planes;
362         png[13]=(unsigned char) (icon_info.planes >> 8);
363         png[14]=(unsigned char) icon_info.bits_per_pixel;
364         png[15]=(unsigned char) (icon_info.bits_per_pixel >> 8);
365         count=ReadBlob(image,length-16,png+16);
366         icon_image=(Image *) NULL;
367         if (count > 0)
368           {
369             read_info=CloneImageInfo(image_info);
370             (void) CopyMagickString(read_info->magick,"PNG",MaxTextExtent);
371             icon_image=BlobToImage(read_info,png,length+16,exception);
372             read_info=DestroyImageInfo(read_info);
373           }
374         png=(unsigned char *) RelinquishMagickMemory(png);
375         if (icon_image == (Image *) NULL)
376           {
377             if (count != (ssize_t) (length-16))
378               ThrowReaderException(CorruptImageError,
379                 "InsufficientImageDataInFile");
380             image=DestroyImageList(image);
381             return((Image *) NULL);
382           }
383         DestroyBlob(icon_image);
384         icon_image->blob=ReferenceBlob(image->blob);
385         ReplaceImageInList(&image,icon_image);
386       }
387     else
388       {
389         if (icon_info.bits_per_pixel > 32)
390           ThrowReaderException(CorruptImageError,"ImproperImageHeader");
391         icon_info.compression=ReadBlobLSBLong(image);
392         icon_info.image_size=ReadBlobLSBLong(image);
393         icon_info.x_pixels=ReadBlobLSBLong(image);
394         icon_info.y_pixels=ReadBlobLSBLong(image);
395         icon_info.number_colors=ReadBlobLSBLong(image);
396         icon_info.colors_important=ReadBlobLSBLong(image);
397         image->alpha_trait=BlendPixelTrait;
398         image->columns=(size_t) icon_file.directory[i].width;
399         if ((ssize_t) image->columns > icon_info.width)
400           image->columns=(size_t) icon_info.width;
401         if (image->columns == 0)
402           image->columns=256;
403         image->rows=(size_t) icon_file.directory[i].height;
404         if ((ssize_t) image->rows > icon_info.height)
405           image->rows=(size_t) icon_info.height;
406         if (image->rows == 0)
407           image->rows=256;
408         image->depth=icon_info.bits_per_pixel;
409         if (image->debug != MagickFalse)
410           {
411             (void) LogMagickEvent(CoderEvent,GetMagickModule(),
412               " scene    = %.20g",(double) i);
413             (void) LogMagickEvent(CoderEvent,GetMagickModule(),
414               "   size   = %.20g",(double) icon_info.size);
415             (void) LogMagickEvent(CoderEvent,GetMagickModule(),
416               "   width  = %.20g",(double) icon_file.directory[i].width);
417             (void) LogMagickEvent(CoderEvent,GetMagickModule(),
418               "   height = %.20g",(double) icon_file.directory[i].height);
419             (void) LogMagickEvent(CoderEvent,GetMagickModule(),
420               "   colors = %.20g",(double ) icon_info.number_colors);
421             (void) LogMagickEvent(CoderEvent,GetMagickModule(),
422               "   planes = %.20g",(double) icon_info.planes);
423             (void) LogMagickEvent(CoderEvent,GetMagickModule(),
424               "   bpp    = %.20g",(double) icon_info.bits_per_pixel);
425           }
426       if ((icon_info.number_colors != 0) || (icon_info.bits_per_pixel <= 16U))
427         {
428           image->storage_class=PseudoClass;
429           image->colors=icon_info.number_colors;
430           if (image->colors == 0)
431             image->colors=one << icon_info.bits_per_pixel;
432         }
433       if (image->storage_class == PseudoClass)
434         {
435           register ssize_t
436             i;
437
438           unsigned char
439             *icon_colormap;
440
441           /*
442             Read Icon raster colormap.
443           */
444           if (AcquireImageColormap(image,image->colors,exception) ==
445               MagickFalse)
446             ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
447           icon_colormap=(unsigned char *) AcquireQuantumMemory((size_t)
448             image->colors,4UL*sizeof(*icon_colormap));
449           if (icon_colormap == (unsigned char *) NULL)
450             ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
451           count=ReadBlob(image,(size_t) (4*image->colors),icon_colormap);
452           if (count != (ssize_t) (4*image->colors))
453             ThrowReaderException(CorruptImageError,
454               "InsufficientImageDataInFile");
455           p=icon_colormap;
456           for (i=0; i < (ssize_t) image->colors; i++)
457           {
458             image->colormap[i].blue=(Quantum) ScaleCharToQuantum(*p++);
459             image->colormap[i].green=(Quantum) ScaleCharToQuantum(*p++);
460             image->colormap[i].red=(Quantum) ScaleCharToQuantum(*p++);
461             p++;
462           }
463           icon_colormap=(unsigned char *) RelinquishMagickMemory(icon_colormap);
464         }
465         /*
466           Convert Icon raster image to pixel packets.
467         */
468         if ((image_info->ping != MagickFalse) &&
469             (image_info->number_scenes != 0))
470           if (image->scene >= (image_info->scene+image_info->number_scenes-1))
471             break;
472         status=SetImageExtent(image,image->columns,image->rows,exception);
473         if (status == MagickFalse)
474           return(DestroyImageList(image));
475         bytes_per_line=(((image->columns*icon_info.bits_per_pixel)+31) &
476           ~31) >> 3;
477         (void) bytes_per_line;
478         scanline_pad=((((image->columns*icon_info.bits_per_pixel)+31) & ~31)-
479           (image->columns*icon_info.bits_per_pixel)) >> 3;
480         switch (icon_info.bits_per_pixel)
481         {
482           case 1:
483           {
484             /*
485               Convert bitmap scanline.
486             */
487             for (y=(ssize_t) image->rows-1; y >= 0; y--)
488             {
489               q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
490               if (q == (Quantum *) NULL)
491                 break;
492               for (x=0; x < (ssize_t) (image->columns-7); x+=8)
493               {
494                 byte=(size_t) ReadBlobByte(image);
495                 for (bit=0; bit < 8; bit++)
496                 {
497                   SetPixelIndex(image,((byte & (0x80 >> bit)) != 0 ? 0x01 :
498                     0x00),q);
499                   q+=GetPixelChannels(image);
500                 }
501               }
502               if ((image->columns % 8) != 0)
503                 {
504                   byte=(size_t) ReadBlobByte(image);
505                   for (bit=0; bit < (image->columns % 8); bit++)
506                   {
507                     SetPixelIndex(image,((byte & (0x80 >> bit)) != 0 ? 0x01 :
508                       0x00),q);
509                     q+=GetPixelChannels(image);
510                   }
511                 }
512               for (x=0; x < (ssize_t) scanline_pad; x++)
513                 (void) ReadBlobByte(image);
514               if (SyncAuthenticPixels(image,exception) == MagickFalse)
515                 break;
516               if (image->previous == (Image *) NULL)
517                 {
518                   status=SetImageProgress(image,LoadImageTag,image->rows-y-1,
519                     image->rows);
520                   if (status == MagickFalse)
521                     break;
522                 }
523             }
524             break;
525           }
526           case 4:
527           {
528             /*
529               Read 4-bit Icon scanline.
530             */
531             for (y=(ssize_t) image->rows-1; y >= 0; y--)
532             {
533               q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
534               if (q == (Quantum *) NULL)
535                 break;
536               for (x=0; x < ((ssize_t) image->columns-1); x+=2)
537               {
538                 byte=(size_t) ReadBlobByte(image);
539                 SetPixelIndex(image,((byte >> 4) & 0xf),q);
540                 q+=GetPixelChannels(image);
541                 SetPixelIndex(image,((byte) & 0xf),q);
542                 q+=GetPixelChannels(image);
543               }
544               if ((image->columns % 2) != 0)
545                 {
546                   byte=(size_t) ReadBlobByte(image);
547                   SetPixelIndex(image,((byte >> 4) & 0xf),q);
548                   q+=GetPixelChannels(image);
549                 }
550               for (x=0; x < (ssize_t) scanline_pad; x++)
551                 (void) ReadBlobByte(image);
552               if (SyncAuthenticPixels(image,exception) == MagickFalse)
553                 break;
554               if (image->previous == (Image *) NULL)
555                 {
556                   status=SetImageProgress(image,LoadImageTag,image->rows-y-1,
557                     image->rows);
558                   if (status == MagickFalse)
559                     break;
560                 }
561             }
562             break;
563           }
564           case 8:
565           {
566             /*
567               Convert PseudoColor scanline.
568             */
569             for (y=(ssize_t) image->rows-1; y >= 0; y--)
570             {
571               q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
572               if (q == (Quantum *) NULL)
573                 break;
574               for (x=0; x < (ssize_t) image->columns; x++)
575               {
576                 byte=(size_t) ReadBlobByte(image);
577                 SetPixelIndex(image,byte,q);
578                 q+=GetPixelChannels(image);
579               }
580               for (x=0; x < (ssize_t) scanline_pad; x++)
581                 (void) ReadBlobByte(image);
582               if (SyncAuthenticPixels(image,exception) == MagickFalse)
583                 break;
584               if (image->previous == (Image *) NULL)
585                 {
586                   status=SetImageProgress(image,LoadImageTag,image->rows-y-1,
587                     image->rows);
588                   if (status == MagickFalse)
589                     break;
590                 }
591             }
592             break;
593           }
594           case 16:
595           {
596             /*
597               Convert PseudoColor scanline.
598             */
599             for (y=(ssize_t) image->rows-1; y >= 0; y--)
600             {
601               q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
602               if (q == (Quantum *) NULL)
603                 break;
604               for (x=0; x < (ssize_t) image->columns; x++)
605               {
606                 byte=(size_t) ReadBlobByte(image);
607                 byte|=(size_t) (ReadBlobByte(image) << 8);
608                 SetPixelIndex(image,byte,q);
609                 q+=GetPixelChannels(image);
610               }
611               for (x=0; x < (ssize_t) scanline_pad; x++)
612                 (void) ReadBlobByte(image);
613               if (SyncAuthenticPixels(image,exception) == MagickFalse)
614                 break;
615               if (image->previous == (Image *) NULL)
616                 {
617                   status=SetImageProgress(image,LoadImageTag,image->rows-y-1,
618                     image->rows);
619                   if (status == MagickFalse)
620                     break;
621                 }
622             }
623             break;
624           }
625           case 24:
626           case 32:
627           {
628             /*
629               Convert DirectColor scanline.
630             */
631             for (y=(ssize_t) image->rows-1; y >= 0; y--)
632             {
633               q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
634               if (q == (Quantum *) NULL)
635                 break;
636               for (x=0; x < (ssize_t) image->columns; x++)
637               {
638                 SetPixelBlue(image,ScaleCharToQuantum((unsigned char)
639                   ReadBlobByte(image)),q);
640                 SetPixelGreen(image,ScaleCharToQuantum((unsigned char)
641                   ReadBlobByte(image)),q);
642                 SetPixelRed(image,ScaleCharToQuantum((unsigned char)
643                   ReadBlobByte(image)),q);
644                 if (icon_info.bits_per_pixel == 32)
645                   SetPixelAlpha(image,ScaleCharToQuantum((unsigned char)
646                     ReadBlobByte(image)),q);
647                 q+=GetPixelChannels(image);
648               }
649               if (icon_info.bits_per_pixel == 24)
650                 for (x=0; x < (ssize_t) scanline_pad; x++)
651                   (void) ReadBlobByte(image);
652               if (SyncAuthenticPixels(image,exception) == MagickFalse)
653                 break;
654               if (image->previous == (Image *) NULL)
655                 {
656                   status=SetImageProgress(image,LoadImageTag,image->rows-y-1,
657                     image->rows);
658                   if (status == MagickFalse)
659                     break;
660                 }
661             }
662             break;
663           }
664           default:
665             ThrowReaderException(CorruptImageError,"ImproperImageHeader");
666         }
667         if (image_info->ping == MagickFalse)
668           (void) SyncImage(image,exception);
669         if (icon_info.bits_per_pixel != 32)
670           {
671             /*
672               Read the ICON alpha mask.
673             */
674             image->storage_class=DirectClass;
675             for (y=(ssize_t) image->rows-1; y >= 0; y--)
676             {
677               q=GetAuthenticPixels(image,0,y,image->columns,1,exception);
678               if (q == (Quantum *) NULL)
679                 break;
680               for (x=0; x < ((ssize_t) image->columns-7); x+=8)
681               {
682                 byte=(size_t) ReadBlobByte(image);
683                 for (bit=0; bit < 8; bit++)
684                 {
685                   SetPixelAlpha(image,(((byte & (0x80 >> bit)) != 0) ?
686                     TransparentAlpha : OpaqueAlpha),q);
687                   q+=GetPixelChannels(image);
688                 }
689               }
690               if ((image->columns % 8) != 0)
691                 {
692                   byte=(size_t) ReadBlobByte(image);
693                   for (bit=0; bit < (image->columns % 8); bit++)
694                   {
695                     SetPixelAlpha(image,(((byte & (0x80 >> bit)) != 0) ?
696                       TransparentAlpha : OpaqueAlpha),q);
697                     q+=GetPixelChannels(image);
698                   }
699                 }
700               if ((image->columns % 32) != 0)
701                 for (x=0; x < (ssize_t) ((32-(image->columns % 32))/8); x++)
702                   (void) ReadBlobByte(image);
703               if (SyncAuthenticPixels(image,exception) == MagickFalse)
704                 break;
705             }
706           }
707         if (EOFBlob(image) != MagickFalse)
708           {
709             ThrowFileException(exception,CorruptImageError,
710               "UnexpectedEndOfFile",image->filename);
711             break;
712           }
713       }
714     /*
715       Proceed to next image.
716     */
717     if (image_info->number_scenes != 0)
718       if (image->scene >= (image_info->scene+image_info->number_scenes-1))
719         break;
720     if (i < (ssize_t) (icon_file.count-1))
721       {
722         /*
723           Allocate next image structure.
724         */
725         AcquireNextImage(image_info,image,exception);
726         if (GetNextImageInList(image) == (Image *) NULL)
727           {
728             image=DestroyImageList(image);
729             return((Image *) NULL);
730           }
731         image=SyncNextImageInList(image);
732         status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
733           GetBlobSize(image));
734         if (status == MagickFalse)
735           break;
736       }
737   }
738   (void) CloseBlob(image);
739   return(GetFirstImageInList(image));
740 }
741 \f
742 /*
743 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
744 %                                                                             %
745 %                                                                             %
746 %                                                                             %
747 %   R e g i s t e r I C O N I m a g e                                         %
748 %                                                                             %
749 %                                                                             %
750 %                                                                             %
751 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
752 %
753 %  RegisterICONImage() adds attributes for the Icon image format to
754 %  the list of supported formats.  The attributes include the image format
755 %  tag, a method to read and/or write the format, whether the format
756 %  supports the saving of more than one frame to the same file or blob,
757 %  whether the format supports native in-memory I/O, and a brief
758 %  description of the format.
759 %
760 %  The format of the RegisterICONImage method is:
761 %
762 %      size_t RegisterICONImage(void)
763 %
764 */
765 ModuleExport size_t RegisterICONImage(void)
766 {
767   MagickInfo
768     *entry;
769
770   entry=SetMagickInfo("CUR");
771   entry->decoder=(DecodeImageHandler *) ReadICONImage;
772   entry->encoder=(EncodeImageHandler *) WriteICONImage;
773   entry->adjoin=MagickFalse;
774   entry->seekable_stream=MagickTrue;
775   entry->description=ConstantString("Microsoft icon");
776   entry->module=ConstantString("CUR");
777   (void) RegisterMagickInfo(entry);
778   entry=SetMagickInfo("ICO");
779   entry->decoder=(DecodeImageHandler *) ReadICONImage;
780   entry->encoder=(EncodeImageHandler *) WriteICONImage;
781   entry->adjoin=MagickTrue;
782   entry->seekable_stream=MagickTrue;
783   entry->description=ConstantString("Microsoft icon");
784   entry->module=ConstantString("ICON");
785   (void) RegisterMagickInfo(entry);
786   entry=SetMagickInfo("ICON");
787   entry->decoder=(DecodeImageHandler *) ReadICONImage;
788   entry->encoder=(EncodeImageHandler *) WriteICONImage;
789   entry->adjoin=MagickFalse;
790   entry->seekable_stream=MagickTrue;
791   entry->description=ConstantString("Microsoft icon");
792   entry->module=ConstantString("ICON");
793   (void) RegisterMagickInfo(entry);
794   return(MagickImageCoderSignature);
795 }
796 \f
797 /*
798 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
799 %                                                                             %
800 %                                                                             %
801 %                                                                             %
802 %   U n r e g i s t e r I C O N I m a g e                                     %
803 %                                                                             %
804 %                                                                             %
805 %                                                                             %
806 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
807 %
808 %  UnregisterICONImage() removes format registrations made by the
809 %  ICON module from the list of supported formats.
810 %
811 %  The format of the UnregisterICONImage method is:
812 %
813 %      UnregisterICONImage(void)
814 %
815 */
816 ModuleExport void UnregisterICONImage(void)
817 {
818   (void) UnregisterMagickInfo("CUR");
819   (void) UnregisterMagickInfo("ICO");
820   (void) UnregisterMagickInfo("ICON");
821 }
822 \f
823 /*
824 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
825 %                                                                             %
826 %                                                                             %
827 %                                                                             %
828 %   W r i t e I C O N I m a g e                                               %
829 %                                                                             %
830 %                                                                             %
831 %                                                                             %
832 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
833 %
834 %  WriteICONImage() writes an image in Microsoft Windows bitmap encoded
835 %  image format, version 3 for Windows or (if the image has a matte channel)
836 %  version 4.
837 %
838 %  It encodes any subimage as a compressed PNG image ("BI_PNG)", only when its
839 %  dimensions are 256x256 and image->compression is undefined or is defined as
840 %  ZipCompression.
841 %
842 %  The format of the WriteICONImage method is:
843 %
844 %      MagickBooleanType WriteICONImage(const ImageInfo *image_info,
845 %        Image *image,ExceptionInfo *exception)
846 %
847 %  A description of each parameter follows.
848 %
849 %    o image_info: the image info.
850 %
851 %    o image:  The image.
852 %
853 %    o exception: return any errors or warnings in this structure.
854 %
855 */
856 static MagickBooleanType WriteICONImage(const ImageInfo *image_info,
857   Image *image,ExceptionInfo *exception)
858 {
859   const char
860     *option;
861
862   IconFile
863     icon_file;
864
865   IconInfo
866     icon_info;
867
868   Image
869     *images,
870     *next;
871   
872   MagickBooleanType
873     status;
874
875   MagickOffsetType
876     offset,
877     scene;
878
879   register const Quantum
880     *p;
881
882   register ssize_t
883     i,
884     x;
885
886   register unsigned char
887     *q;
888
889   size_t
890     bytes_per_line,
891     scanline_pad;
892
893   ssize_t
894     y;
895
896   unsigned char
897     bit,
898     byte,
899     *pixels;
900
901   /*
902     Open output image file.
903   */
904   assert(image_info != (const ImageInfo *) NULL);
905   assert(image_info->signature == MagickSignature);
906   assert(image != (Image *) NULL);
907   assert(image->signature == MagickSignature);
908     (void) LogMagickEvent(CoderEvent,GetMagickModule(),"%s",image->filename);
909   assert(exception != (ExceptionInfo *) NULL);
910   assert(exception->signature == MagickSignature);
911   status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
912   if (status == MagickFalse)
913     return(status);
914   images=(Image *) NULL;
915   option=GetImageOption(image_info,"icon:auto-resize");
916   if (option != (const char *) NULL)
917     {
918       images=AutoResizeImage(image,option,&scene,exception);
919       if (images == (Image *) NULL)
920         ThrowWriterException(ImageError,"InvalidDimensions");
921     }
922   else
923     {
924       scene=0;
925       next=image;
926       do
927       {
928         if ((image->columns > 256L) || (image->rows > 256L))
929           ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit");
930         scene++;
931         next=SyncNextImageInList(next);
932       } while ((next != (Image *) NULL) && (image_info->adjoin != MagickFalse));
933     }
934   /*
935     Dump out a ICON header template to be properly initialized later.
936   */
937   (void) WriteBlobLSBShort(image,0);
938   (void) WriteBlobLSBShort(image,1);
939   (void) WriteBlobLSBShort(image,(unsigned char) scene);
940   (void) ResetMagickMemory(&icon_file,0,sizeof(icon_file));
941   (void) ResetMagickMemory(&icon_info,0,sizeof(icon_info));
942   scene=0;
943   next=(images != (Image *) NULL) ? images : image;
944   do
945   {
946     (void) WriteBlobByte(image,icon_file.directory[scene].width);
947     (void) WriteBlobByte(image,icon_file.directory[scene].height);
948     (void) WriteBlobByte(image,icon_file.directory[scene].colors);
949     (void) WriteBlobByte(image,icon_file.directory[scene].reserved);
950     (void) WriteBlobLSBShort(image,icon_file.directory[scene].planes);
951     (void) WriteBlobLSBShort(image,icon_file.directory[scene].bits_per_pixel);
952     (void) WriteBlobLSBLong(image,(unsigned int)
953       icon_file.directory[scene].size);
954     (void) WriteBlobLSBLong(image,(unsigned int)
955       icon_file.directory[scene].offset);
956     scene++;
957     next=SyncNextImageInList(next);
958   } while ((next != (Image *) NULL) && (image_info->adjoin != MagickFalse));
959   scene=0;
960   next=(images != (Image *) NULL) ? images : image;
961   do
962   {
963     if ((next->columns > 255L) && (next->rows > 255L) &&
964         ((next->compression == UndefinedCompression) ||
965         (next->compression == ZipCompression)))
966       {
967         Image
968           *write_image;
969
970         ImageInfo
971           *write_info;
972
973         size_t
974           length;
975
976         unsigned char
977           *png;
978
979         write_image=CloneImage(next,0,0,MagickTrue,exception);
980         if (write_image == (Image *) NULL)
981           {
982             images=DestroyImageList(images);
983             return(MagickFalse);
984           }
985         write_info=CloneImageInfo(image_info);
986         (void) CopyMagickString(write_info->filename,"PNG:",MaxTextExtent);
987
988         /* Don't write any ancillary chunks except for gAMA */
989         (void) SetImageArtifact(write_image,"png:include-chunk","none,gama");
990
991         /* Only write PNG32 formatted PNG (32-bit RGBA), 8 bits per channel */
992         (void) SetImageArtifact(write_image,"png:format","png32");
993
994         png=(unsigned char *) ImageToBlob(write_info,write_image,&length,
995           exception);
996         write_image=DestroyImage(write_image);
997         write_info=DestroyImageInfo(write_info);
998         if (png == (unsigned char *) NULL)
999           {
1000             images=DestroyImageList(images);
1001             return(MagickFalse);
1002           }
1003         icon_file.directory[scene].width=0;
1004         icon_file.directory[scene].height=0;
1005         icon_file.directory[scene].colors=0;
1006         icon_file.directory[scene].reserved=0;
1007         icon_file.directory[scene].planes=1;
1008         icon_file.directory[scene].bits_per_pixel=32;
1009         icon_file.directory[scene].size=(size_t) length;
1010         icon_file.directory[scene].offset=(size_t) TellBlob(image);
1011         (void) WriteBlob(image,(size_t) length,png);
1012         png=(unsigned char *) RelinquishMagickMemory(png);
1013       }
1014     else
1015       {
1016         /*
1017           Initialize ICON raster file header.
1018         */
1019         (void) TransformImageColorspace(next,sRGBColorspace,exception);
1020         icon_info.file_size=14+12+28;
1021         icon_info.offset_bits=icon_info.file_size;
1022         icon_info.compression=BI_RGB;
1023         if ((next->storage_class != DirectClass) && (next->colors > 256))
1024           (void) SetImageStorageClass(next,DirectClass,exception);
1025         if (next->storage_class == DirectClass)
1026           {
1027             /*
1028               Full color ICON raster.
1029             */
1030             icon_info.number_colors=0;
1031             icon_info.bits_per_pixel=32;
1032             icon_info.compression=(size_t) BI_RGB;
1033           }
1034         else
1035           {
1036             size_t
1037               one;
1038
1039             /*
1040               Colormapped ICON raster.
1041             */
1042             icon_info.bits_per_pixel=8;
1043             if (next->colors <= 256)
1044               icon_info.bits_per_pixel=8;
1045             if (next->colors <= 16)
1046               icon_info.bits_per_pixel=4;
1047             if (next->colors <= 2)
1048               icon_info.bits_per_pixel=1;
1049             one=1;
1050             icon_info.number_colors=one << icon_info.bits_per_pixel;
1051             if (icon_info.number_colors < next->colors)
1052               {
1053                 (void) SetImageStorageClass(next,DirectClass,exception);
1054                 icon_info.number_colors=0;
1055                 icon_info.bits_per_pixel=(unsigned short) 24;
1056                 icon_info.compression=(size_t) BI_RGB;
1057               }
1058             else
1059               {
1060                 size_t
1061                   one;
1062
1063                 one=1;
1064                 icon_info.file_size+=3*(one << icon_info.bits_per_pixel);
1065                 icon_info.offset_bits+=3*(one << icon_info.bits_per_pixel);
1066                 icon_info.file_size+=(one << icon_info.bits_per_pixel);
1067                 icon_info.offset_bits+=(one << icon_info.bits_per_pixel);
1068               }
1069           }
1070         bytes_per_line=(((next->columns*icon_info.bits_per_pixel)+31) &
1071           ~31) >> 3;
1072         icon_info.ba_offset=0;
1073         icon_info.width=(ssize_t) next->columns;
1074         icon_info.height=(ssize_t) next->rows;
1075         icon_info.planes=1;
1076         icon_info.image_size=bytes_per_line*next->rows;
1077         icon_info.size=40;
1078         icon_info.size+=(4*icon_info.number_colors);
1079         icon_info.size+=icon_info.image_size;
1080         icon_info.size+=(((icon_info.width+31) & ~31) >> 3)*icon_info.height;
1081         icon_info.file_size+=icon_info.image_size;
1082         icon_info.x_pixels=0;
1083         icon_info.y_pixels=0;
1084         switch (next->units)
1085         {
1086           case UndefinedResolution:
1087           case PixelsPerInchResolution:
1088           {
1089             icon_info.x_pixels=(size_t) (100.0*next->resolution.x/2.54);
1090             icon_info.y_pixels=(size_t) (100.0*next->resolution.y/2.54);
1091             break;
1092           }
1093           case PixelsPerCentimeterResolution:
1094           {
1095             icon_info.x_pixels=(size_t) (100.0*next->resolution.x);
1096             icon_info.y_pixels=(size_t) (100.0*next->resolution.y);
1097             break;
1098           }
1099         }
1100         icon_info.colors_important=icon_info.number_colors;
1101         /*
1102           Convert MIFF to ICON raster pixels.
1103         */
1104         pixels=(unsigned char *) AcquireQuantumMemory((size_t)
1105           icon_info.image_size,sizeof(*pixels));
1106         if (pixels == (unsigned char *) NULL)
1107           {
1108             images=DestroyImageList(images);
1109             ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
1110           }
1111         (void) ResetMagickMemory(pixels,0,(size_t) icon_info.image_size);
1112         switch (icon_info.bits_per_pixel)
1113         {
1114           case 1:
1115           {
1116             size_t
1117               bit,
1118               byte;
1119
1120             /*
1121               Convert PseudoClass image to a ICON monochrome image.
1122             */
1123             for (y=0; y < (ssize_t) next->rows; y++)
1124             {
1125               p=GetVirtualPixels(next,0,y,next->columns,1,exception);
1126               if (p == (const Quantum *) NULL)
1127                 break;
1128               q=pixels+(next->rows-y-1)*bytes_per_line;
1129               bit=0;
1130               byte=0;
1131               for (x=0; x < (ssize_t) next->columns; x++)
1132               {
1133                 byte<<=1;
1134                 byte|=GetPixelIndex(next,p) != 0 ? 0x01 : 0x00;
1135                 bit++;
1136                 if (bit == 8)
1137                   {
1138                     *q++=(unsigned char) byte;
1139                     bit=0;
1140                     byte=0;
1141                   }
1142                 p+=GetPixelChannels(image);
1143               }
1144               if (bit != 0)
1145                 *q++=(unsigned char) (byte << (8-bit));
1146               if (next->previous == (Image *) NULL)
1147                 {
1148                   status=SetImageProgress(next,SaveImageTag,y,next->rows);
1149                   if (status == MagickFalse)
1150                     break;
1151                 }
1152             }
1153             break;
1154           }
1155           case 4:
1156           {
1157             size_t
1158               nibble,
1159               byte;
1160
1161             /*
1162               Convert PseudoClass image to a ICON monochrome image.
1163             */
1164             for (y=0; y < (ssize_t) next->rows; y++)
1165             {
1166               p=GetVirtualPixels(next,0,y,next->columns,1,exception);
1167               if (p == (const Quantum *) NULL)
1168                 break;
1169               q=pixels+(next->rows-y-1)*bytes_per_line;
1170               nibble=0;
1171               byte=0;
1172               for (x=0; x < (ssize_t) next->columns; x++)
1173               {
1174                 byte<<=4;
1175                 byte|=((size_t) GetPixelIndex(next,p) & 0x0f);
1176                 nibble++;
1177                 if (nibble == 2)
1178                   {
1179                     *q++=(unsigned char) byte;
1180                     nibble=0;
1181                     byte=0;
1182                   }
1183                 p+=GetPixelChannels(image);
1184               }
1185               if (nibble != 0)
1186                 *q++=(unsigned char) (byte << 4);
1187               if (next->previous == (Image *) NULL)
1188                 {
1189                   status=SetImageProgress(next,SaveImageTag,y,next->rows);
1190                   if (status == MagickFalse)
1191                     break;
1192                 }
1193             }
1194             break;
1195           }
1196           case 8:
1197           {
1198             /*
1199               Convert PseudoClass packet to ICON pixel.
1200             */
1201             for (y=0; y < (ssize_t) next->rows; y++)
1202             {
1203               p=GetVirtualPixels(next,0,y,next->columns,1,exception);
1204               if (p == (const Quantum *) NULL)
1205                 break;
1206               q=pixels+(next->rows-y-1)*bytes_per_line;
1207               for (x=0; x < (ssize_t) next->columns; x++)
1208               {
1209                 *q++=(unsigned char) GetPixelIndex(next,p);
1210                 p+=GetPixelChannels(image);
1211               }
1212               if (next->previous == (Image *) NULL)
1213                 {
1214                   status=SetImageProgress(next,SaveImageTag,y,next->rows);
1215                   if (status == MagickFalse)
1216                     break;
1217                 }
1218             }
1219             break;
1220           }
1221           case 24:
1222           case 32:
1223           {
1224             /*
1225               Convert DirectClass packet to ICON BGR888 or BGRA8888 pixel.
1226             */
1227             for (y=0; y < (ssize_t) next->rows; y++)
1228             {
1229               p=GetVirtualPixels(next,0,y,next->columns,1,exception);
1230               if (p == (const Quantum *) NULL)
1231                 break;
1232               q=pixels+(next->rows-y-1)*bytes_per_line;
1233               for (x=0; x < (ssize_t) next->columns; x++)
1234               {
1235                 *q++=ScaleQuantumToChar(GetPixelBlue(next,p));
1236                 *q++=ScaleQuantumToChar(GetPixelGreen(next,p));
1237                 *q++=ScaleQuantumToChar(GetPixelRed(next,p));
1238                 if (next->alpha_trait == UndefinedPixelTrait)
1239                   *q++=ScaleQuantumToChar(QuantumRange);
1240                 else
1241                   *q++=ScaleQuantumToChar(GetPixelAlpha(next,p));
1242                 p+=GetPixelChannels(next);
1243               }
1244               if (icon_info.bits_per_pixel == 24)
1245                 for (x=3L*(ssize_t) next->columns; x < (ssize_t) bytes_per_line; x++)
1246                   *q++=0x00;
1247               if (next->previous == (Image *) NULL)
1248                 {
1249                   status=SetImageProgress(next,SaveImageTag,y,next->rows);
1250                   if (status == MagickFalse)
1251                     break;
1252                 }
1253             }
1254             break;
1255           }
1256         }
1257         /*
1258           Write 40-byte version 3+ bitmap header.
1259         */
1260         icon_file.directory[scene].width=(unsigned char) icon_info.width;
1261         icon_file.directory[scene].height=(unsigned char) icon_info.height;
1262         icon_file.directory[scene].colors=(unsigned char)
1263           icon_info.number_colors;
1264         icon_file.directory[scene].reserved=0;
1265         icon_file.directory[scene].planes=icon_info.planes;
1266         icon_file.directory[scene].bits_per_pixel=icon_info.bits_per_pixel;
1267         icon_file.directory[scene].size=icon_info.size;
1268         icon_file.directory[scene].offset=(size_t) TellBlob(image);
1269         (void) WriteBlobLSBLong(image,(unsigned int) 40);
1270         (void) WriteBlobLSBLong(image,(unsigned int) icon_info.width);
1271         (void) WriteBlobLSBLong(image,(unsigned int) icon_info.height*2);
1272         (void) WriteBlobLSBShort(image,icon_info.planes);
1273         (void) WriteBlobLSBShort(image,icon_info.bits_per_pixel);
1274         (void) WriteBlobLSBLong(image,(unsigned int) icon_info.compression);
1275         (void) WriteBlobLSBLong(image,(unsigned int) icon_info.image_size);
1276         (void) WriteBlobLSBLong(image,(unsigned int) icon_info.x_pixels);
1277         (void) WriteBlobLSBLong(image,(unsigned int) icon_info.y_pixels);
1278         (void) WriteBlobLSBLong(image,(unsigned int) icon_info.number_colors);
1279         (void) WriteBlobLSBLong(image,(unsigned int) icon_info.colors_important);
1280         if (next->storage_class == PseudoClass)
1281           {
1282             unsigned char
1283               *icon_colormap;
1284
1285             /*
1286               Dump colormap to file.
1287             */
1288             icon_colormap=(unsigned char *) AcquireQuantumMemory((size_t)
1289               (1UL << icon_info.bits_per_pixel),4UL*sizeof(*icon_colormap));
1290             if (icon_colormap == (unsigned char *) NULL)
1291               {
1292                 images=DestroyImageList(images);
1293                 ThrowWriterException(ResourceLimitError,
1294                   "MemoryAllocationFailed");
1295               }
1296             q=icon_colormap;
1297             for (i=0; i < (ssize_t) next->colors; i++)
1298             {
1299               *q++=ScaleQuantumToChar(next->colormap[i].blue);
1300               *q++=ScaleQuantumToChar(next->colormap[i].green);
1301               *q++=ScaleQuantumToChar(next->colormap[i].red);
1302               *q++=(unsigned char) 0x0;
1303             }
1304             for ( ; i < (ssize_t) (1UL << icon_info.bits_per_pixel); i++)
1305             {
1306               *q++=(unsigned char) 0x00;
1307               *q++=(unsigned char) 0x00;
1308               *q++=(unsigned char) 0x00;
1309               *q++=(unsigned char) 0x00;
1310             }
1311             (void) WriteBlob(image,(size_t) (4UL*(1UL <<
1312               icon_info.bits_per_pixel)),icon_colormap);
1313             icon_colormap=(unsigned char *) RelinquishMagickMemory(
1314               icon_colormap);
1315           }
1316         (void) WriteBlob(image,(size_t) icon_info.image_size,pixels);
1317         pixels=(unsigned char *) RelinquishMagickMemory(pixels);
1318         /*
1319           Write matte mask.
1320         */
1321         scanline_pad=(((next->columns+31) & ~31)-next->columns) >> 3;
1322         for (y=((ssize_t) next->rows - 1); y >= 0; y--)
1323         {
1324           p=GetVirtualPixels(next,0,y,next->columns,1,exception);
1325           if (p == (const Quantum *) NULL)
1326             break;
1327           bit=0;
1328           byte=0;
1329           for (x=0; x < (ssize_t) next->columns; x++)
1330           {
1331             byte<<=1;
1332             if ((next->alpha_trait != UndefinedPixelTrait) &&
1333                 (GetPixelAlpha(next,p) == (Quantum) TransparentAlpha))
1334               byte|=0x01;
1335             bit++;
1336             if (bit == 8)
1337               {
1338                 (void) WriteBlobByte(image,(unsigned char) byte);
1339                 bit=0;
1340                 byte=0;
1341               }
1342             p+=GetPixelChannels(next);
1343           }
1344           if (bit != 0)
1345             (void) WriteBlobByte(image,(unsigned char) (byte << (8-bit)));
1346           for (i=0; i < (ssize_t) scanline_pad; i++)
1347             (void) WriteBlobByte(image,(unsigned char) 0);
1348         }
1349       }
1350     if (GetNextImageInList(next) == (Image *) NULL)
1351       break;
1352     status=SetImageProgress(next,SaveImagesTag,scene++,
1353       GetImageListLength(next));
1354     if (status == MagickFalse)
1355       break;
1356     next=SyncNextImageInList(next);
1357   } while ((next != (Image *) NULL) && (image_info->adjoin != MagickFalse));
1358   offset=SeekBlob(image,0,SEEK_SET);
1359   (void) offset;
1360   (void) WriteBlobLSBShort(image,0);
1361   (void) WriteBlobLSBShort(image,1);
1362   (void) WriteBlobLSBShort(image,(unsigned short) (scene+1));
1363   scene=0;
1364   next=(images != (Image *) NULL) ? images : image;
1365   do
1366   {
1367     (void) WriteBlobByte(image,icon_file.directory[scene].width);
1368     (void) WriteBlobByte(image,icon_file.directory[scene].height);
1369     (void) WriteBlobByte(image,icon_file.directory[scene].colors);
1370     (void) WriteBlobByte(image,icon_file.directory[scene].reserved);
1371     (void) WriteBlobLSBShort(image,icon_file.directory[scene].planes);
1372     (void) WriteBlobLSBShort(image,icon_file.directory[scene].bits_per_pixel);
1373     (void) WriteBlobLSBLong(image,(unsigned int)
1374       icon_file.directory[scene].size);
1375     (void) WriteBlobLSBLong(image,(unsigned int)
1376       icon_file.directory[scene].offset);
1377     scene++;
1378     next=SyncNextImageInList(next);
1379   } while ((next != (Image *) NULL) && (image_info->adjoin != MagickFalse));
1380   (void) CloseBlob(image);
1381   images=DestroyImageList(images);
1382   return(MagickTrue);
1383 }