]> granicus.if.org Git - imagemagick/blob - coders/xcf.c
(no commit message)
[imagemagick] / coders / xcf.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %                            X   X   CCCC  FFFFF                              %
7 %                             X X   C      F                                  %
8 %                              X    C      FFF                                %
9 %                             X X   C      F                                  %
10 %                            X   X   CCCC  F                                  %
11 %                                                                             %
12 %                                                                             %
13 %                        Read GIMP XCF Image Format                           %
14 %                                                                             %
15 %                              Software Design                                %
16 %                              Leonard Rosenthol                              %
17 %                               November 2001                                 %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2012 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/blob.h"
44 #include "MagickCore/blob-private.h"
45 #include "MagickCore/cache.h"
46 #include "MagickCore/color.h"
47 #include "MagickCore/composite.h"
48 #include "MagickCore/exception.h"
49 #include "MagickCore/exception-private.h"
50 #include "MagickCore/image.h"
51 #include "MagickCore/image-private.h"
52 #include "MagickCore/list.h"
53 #include "MagickCore/magick.h"
54 #include "MagickCore/memory_.h"
55 #include "MagickCore/pixel.h"
56 #include "MagickCore/pixel-accessor.h"
57 #include "MagickCore/quantize.h"
58 #include "MagickCore/quantum-private.h"
59 #include "MagickCore/static.h"
60 #include "MagickCore/string_.h"
61 #include "MagickCore/module.h"
62 \f
63 /*
64   Typedef declarations.
65 */
66 typedef enum
67 {
68   GIMP_RGB,
69   GIMP_GRAY,
70   GIMP_INDEXED
71 } GimpImageBaseType;
72
73 typedef enum
74 {
75   PROP_END                   =  0,
76   PROP_COLORMAP              =  1,
77   PROP_ACTIVE_LAYER          =  2,
78   PROP_ACTIVE_CHANNEL        =  3,
79   PROP_SELECTION             =  4,
80   PROP_FLOATING_SELECTION    =  5,
81   PROP_OPACITY               =  6,
82   PROP_MODE                  =  7,
83   PROP_VISIBLE               =  8,
84   PROP_LINKED                =  9,
85   PROP_PRESERVE_TRANSPARENCY = 10,
86   PROP_APPLY_MASK            = 11,
87   PROP_EDIT_MASK             = 12,
88   PROP_SHOW_MASK             = 13,
89   PROP_SHOW_MASKED           = 14,
90   PROP_OFFSETS               = 15,
91   PROP_COLOR                 = 16,
92   PROP_COMPRESSION           = 17,
93   PROP_GUIDES                = 18,
94   PROP_RESOLUTION            = 19,
95   PROP_TATTOO                = 20,
96   PROP_PARASITES             = 21,
97   PROP_UNIT                  = 22,
98   PROP_PATHS                 = 23,
99   PROP_USER_UNIT             = 24
100 } PropType;
101
102 typedef enum
103 {
104   COMPRESS_NONE              =  0,
105   COMPRESS_RLE               =  1,
106   COMPRESS_ZLIB              =  2,  /* unused */
107   COMPRESS_FRACTAL           =  3   /* unused */
108 } XcfCompressionType;
109
110 typedef struct
111 {
112   size_t
113     width,
114     height,
115     image_type,
116     bytes_per_pixel;
117
118   int
119     compression;
120
121   size_t
122     file_size;
123
124   size_t
125     number_layers;
126 } XCFDocInfo;
127
128 typedef struct
129 {
130   char
131     name[1024];
132
133   unsigned int
134     active;
135
136   size_t
137     width,
138     height,
139     type,
140     alpha,
141     visible,
142     linked,
143     preserve_trans,
144     apply_mask,
145     show_mask,
146     edit_mask,
147     floating_offset;
148
149   ssize_t
150     offset_x,
151     offset_y;
152
153   size_t
154     mode,
155     tattoo;
156
157   Image
158     *image;
159 } XCFLayerInfo;
160
161 #define TILE_WIDTH   64
162 #define TILE_HEIGHT  64
163
164 typedef struct
165 {
166   unsigned char
167     red,
168     green,
169     blue,
170     alpha;
171 } XCFPixelInfo;
172 \f
173 /*
174 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
175 %                                                                             %
176 %                                                                             %
177 %                                                                             %
178 %   I s X C F                                                                 %
179 %                                                                             %
180 %                                                                             %
181 %                                                                             %
182 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
183 %
184 %  IsXCF() returns MagickTrue if the image format type, identified by the
185 %  magick string, is XCF (GIMP native format).
186 %
187 %  The format of the IsXCF method is:
188 %
189 %      MagickBooleanType IsXCF(const unsigned char *magick,const size_t length)
190 %
191 %  A description of each parameter follows:
192 %
193 %    o magick: compare image format pattern against these bytes.
194 %
195 %    o length: Specifies the length of the magick string.
196 %
197 %
198 */
199 static MagickBooleanType IsXCF(const unsigned char *magick,const size_t length)
200 {
201   if (length < 8)
202     return(MagickFalse);
203   if (LocaleNCompare((char *) magick,"gimp xcf",8) == 0)
204     return(MagickTrue);
205   return(MagickFalse);
206 }
207 \f
208 typedef enum
209 {
210   GIMP_NORMAL_MODE,
211   GIMP_DISSOLVE_MODE,
212   GIMP_BEHIND_MODE,
213   GIMP_MULTIPLY_MODE,
214   GIMP_SCREEN_MODE,
215   GIMP_OVERLAY_MODE,
216   GIMP_DIFFERENCE_MODE,
217   GIMP_ADDITION_MODE,
218   GIMP_SUBTRACT_MODE,
219   GIMP_DARKEN_ONLY_MODE,
220   GIMP_LIGHTEN_ONLY_MODE,
221   GIMP_HUE_MODE,
222   GIMP_SATURATION_MODE,
223   GIMP_COLOR_MODE,
224   GIMP_VALUE_MODE,
225   GIMP_DIVIDE_MODE,
226   GIMP_DODGE_MODE,
227   GIMP_BURN_MODE,
228   GIMP_HARDLIGHT_MODE
229 } GimpLayerModeEffects;
230
231 /*
232   Simple utility routine to convert between PSD blending modes and
233   ImageMagick compositing operators
234 */
235 static CompositeOperator GIMPBlendModeToCompositeOperator(
236   size_t blendMode)
237 {
238   switch ( blendMode )
239   {
240     case GIMP_NORMAL_MODE:    return( OverCompositeOp );
241     case GIMP_DISSOLVE_MODE:  return( DissolveCompositeOp );
242     case GIMP_MULTIPLY_MODE:  return( MultiplyCompositeOp );
243     case GIMP_SCREEN_MODE:    return( ScreenCompositeOp );
244     case GIMP_OVERLAY_MODE:    return( OverlayCompositeOp );
245     case GIMP_DIFFERENCE_MODE:  return( DifferenceCompositeOp );
246     case GIMP_ADDITION_MODE:  return( ModulusAddCompositeOp );
247     case GIMP_SUBTRACT_MODE:  return( ModulusSubtractCompositeOp );
248     case GIMP_DARKEN_ONLY_MODE:  return( DarkenCompositeOp );
249     case GIMP_LIGHTEN_ONLY_MODE:return( LightenCompositeOp );
250     case GIMP_HUE_MODE:      return( HueCompositeOp );
251     case GIMP_SATURATION_MODE:  return( SaturateCompositeOp );
252     case GIMP_COLOR_MODE:    return( ColorizeCompositeOp );
253     case GIMP_DODGE_MODE:    return( ColorDodgeCompositeOp );
254     case GIMP_BURN_MODE:    return( ColorBurnCompositeOp );
255     case GIMP_HARDLIGHT_MODE:  return( HardLightCompositeOp );
256     case GIMP_DIVIDE_MODE:    return( DivideDstCompositeOp );
257     /* these are the ones we don't support...yet */
258     case GIMP_BEHIND_MODE:    return( OverCompositeOp );
259     case GIMP_VALUE_MODE:    return( OverCompositeOp );
260     default:
261       return(OverCompositeOp);
262   }
263 }
264 \f
265 /*
266 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
267 %                                                                             %
268 %                                                                             %
269 %                                                                             %
270 +   R e a d B l o b S t r i n g W i t h L o n g S i z e                       %
271 %                                                                             %
272 %                                                                             %
273 %                                                                             %
274 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
275 %
276 %  ReadBlobStringWithLongSize reads characters from a blob or file
277 %  starting with a ssize_t length byte and then characters to that length
278 %
279 %  The format of the ReadBlobStringWithLongSize method is:
280 %
281 %      char *ReadBlobStringWithLongSize(Image *image,char *string)
282 %
283 %  A description of each parameter follows:
284 %
285 %    o image: the image.
286 %
287 %    o string: the address of a character buffer.
288 %
289 */
290
291 static inline size_t MagickMin(const size_t x,const size_t y)
292 {
293   if (x < y)
294     return(x);
295   return(y);
296 }
297
298 static char *ReadBlobStringWithLongSize(Image *image,char *string,size_t max,
299   ExceptionInfo *exception)
300 {
301   int
302     c;
303
304   MagickOffsetType
305     offset;
306
307   register ssize_t
308     i;
309
310   size_t
311     length;
312
313   assert(image != (Image *) NULL);
314   assert(image->signature == MagickSignature);
315   assert(max != 0);
316   if (image->debug != MagickFalse)
317     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
318   length=ReadBlobMSBLong(image);
319   for (i=0; i < (ssize_t) MagickMin(length,max-1); i++)
320   {
321     c=ReadBlobByte(image);
322     if (c == EOF)
323       return((char *) NULL);
324     string[i]=(char) c;
325   }
326   string[i]='\0';
327   offset=SeekBlob(image,(MagickOffsetType) (length-i),SEEK_CUR);
328   if (offset < 0)
329     (void) ThrowMagickException(exception,GetMagickModule(),
330       CorruptImageError,"ImproperImageHeader","`%s'",image->filename);
331   return(string);
332 }
333
334 static MagickBooleanType load_tile(Image *image,Image *tile_image,
335   XCFDocInfo *inDocInfo,XCFLayerInfo *inLayerInfo,size_t data_length,
336   ExceptionInfo *exception)
337 {
338   ssize_t
339     y;
340
341   register ssize_t
342     x;
343
344   register Quantum
345     *q;
346
347   ssize_t
348     count;
349
350   unsigned char
351     *graydata;
352
353   XCFPixelInfo
354     *xcfdata,
355     *xcfodata;
356
357   xcfdata=(XCFPixelInfo *) AcquireQuantumMemory(data_length,sizeof(*xcfdata));
358   if (xcfdata == (XCFPixelInfo *) NULL)
359     ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
360       image->filename);
361   xcfodata=xcfdata;
362   graydata=(unsigned char *) xcfdata;  /* used by gray and indexed */
363   count=ReadBlob(image,data_length,(unsigned char *) xcfdata);
364   if (count != (ssize_t) data_length)
365     ThrowBinaryException(CorruptImageError,"NotEnoughPixelData",
366       image->filename);
367   for (y=0; y < (ssize_t) tile_image->rows; y++)
368   {
369     q=GetAuthenticPixels(tile_image,0,y,tile_image->columns,1,exception);
370     if (q == (Quantum *) NULL)
371       break;
372     if (inDocInfo->image_type == GIMP_GRAY)
373       {
374         for (x=0; x < (ssize_t) tile_image->columns; x++)
375         {
376           SetPixelGray(tile_image,ScaleCharToQuantum(*graydata),q);
377           SetPixelAlpha(tile_image,ScaleCharToQuantum((unsigned char)
378             inLayerInfo->alpha),q);
379           graydata++;
380           q+=GetPixelChannels(tile_image);
381         }
382       }
383     else
384       if (inDocInfo->image_type == GIMP_RGB)
385         {
386           for (x=0; x < (ssize_t) tile_image->columns; x++)
387           {
388             SetPixelRed(tile_image,ScaleCharToQuantum(xcfdata->red),q);
389             SetPixelGreen(tile_image,ScaleCharToQuantum(xcfdata->green),q);
390             SetPixelBlue(tile_image,ScaleCharToQuantum(xcfdata->blue),q);
391             SetPixelAlpha(tile_image,xcfdata->alpha == 255U ? TransparentAlpha :
392               ScaleCharToQuantum((unsigned char) inLayerInfo->alpha),q);
393             xcfdata++;
394             q+=GetPixelChannels(tile_image);
395           }
396         }
397      if (SyncAuthenticPixels(tile_image,exception) == MagickFalse)
398        break;
399   }
400   xcfodata=(XCFPixelInfo *) RelinquishMagickMemory(xcfodata);
401   return MagickTrue;
402 }
403
404 static MagickBooleanType load_tile_rle(Image *image,Image *tile_image,
405   XCFDocInfo *inDocInfo,XCFLayerInfo *inLayerInfo,size_t data_length,
406   ExceptionInfo *exception)
407 {
408   MagickOffsetType
409     size;
410
411   Quantum
412     alpha;
413
414   register Quantum
415     *q;
416
417   size_t
418     length;
419
420   ssize_t
421     bytes_per_pixel,
422     count,
423     i,
424     j;
425
426   unsigned char
427     data,
428     pixel,
429     *xcfdata,
430     *xcfodata,
431     *xcfdatalimit;
432
433   bytes_per_pixel=(ssize_t) inDocInfo->bytes_per_pixel;
434   xcfdata=(unsigned char *) AcquireQuantumMemory(data_length,sizeof(*xcfdata));
435   if (xcfdata == (unsigned char *) NULL)
436     ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
437       image->filename);
438   xcfodata=xcfdata;
439   count=ReadBlob(image, (size_t) data_length, xcfdata);
440   xcfdatalimit = xcfodata+count-1;
441   alpha=ScaleCharToQuantum((unsigned char) inLayerInfo->alpha);
442   for (i=0; i < (ssize_t) bytes_per_pixel; i++)
443   {
444     q=GetAuthenticPixels(tile_image,0,0,tile_image->columns,tile_image->rows,
445       exception);
446     if (q == (Quantum *) NULL)
447       continue;
448     size=(MagickOffsetType) tile_image->rows*tile_image->columns;
449     while (size > 0)
450     {
451       if (xcfdata > xcfdatalimit)
452         goto bogus_rle;
453       pixel=(*xcfdata++);
454       length=(size_t) pixel;
455       if (length >= 128)
456         {
457           length=255-(length-1);
458           if (length == 128)
459             {
460               if (xcfdata >= xcfdatalimit)
461                 goto bogus_rle;
462               length=(size_t) ((*xcfdata << 8) + xcfdata[1]);
463               xcfdata+=2;
464             }
465             size-=length;
466             if (size < 0)
467               goto bogus_rle;
468             if (&xcfdata[length-1] > xcfdatalimit)
469               goto bogus_rle;
470             while (length-- > 0)
471             {
472               data=(*xcfdata++);
473               switch (i)
474               {
475                 case 0:
476                 {
477                   if (inDocInfo->image_type != GIMP_GRAY)
478                     {
479                       SetPixelRed(tile_image,ScaleCharToQuantum(data),q);
480                       SetPixelGreen(tile_image,ScaleCharToQuantum(data),q);
481                       SetPixelBlue(tile_image,ScaleCharToQuantum(data),q);
482                       SetPixelAlpha(tile_image,data == 255U ? alpha :
483                         ScaleCharToQuantum(data),q);
484                     }
485                   else
486                     {
487                       SetPixelGray(tile_image,ScaleCharToQuantum(data),q);
488                       SetPixelAlpha(tile_image,data == 255U ? alpha :
489                         ScaleCharToQuantum(data),q);
490                     }
491                   break;
492                 }
493                 case 1:
494                 {
495                   SetPixelGreen(tile_image,ScaleCharToQuantum(data),q);
496                   break;
497                 }
498                 case 2:
499                 {
500                   SetPixelBlue(tile_image,ScaleCharToQuantum(data),q);
501                   break;
502                 }
503                 case 3:
504                 {
505                   SetPixelAlpha(tile_image,data == 255U ? alpha :
506                     ScaleCharToQuantum(data),q);
507                   break;
508                 }
509               }
510               q+=GetPixelChannels(tile_image);
511             }
512           }
513         else
514           {
515             length+=1;
516             if (length == 128)
517               {
518                 if (xcfdata >= xcfdatalimit)
519                   goto bogus_rle;
520                 length=(size_t) ((*xcfdata << 8) + xcfdata[1]);
521                 xcfdata+=2;
522               }
523             size-=length;
524             if (size < 0)
525               goto bogus_rle;
526             if (xcfdata > xcfdatalimit)
527               goto bogus_rle;
528             pixel=(*xcfdata++);
529             for (j=0; j < (ssize_t) length; j++)
530             {
531               data=pixel;
532               switch (i)
533               {
534                 case 0:
535                 {
536                   if (inDocInfo->image_type != GIMP_GRAY)
537                     {
538                       SetPixelRed(tile_image,ScaleCharToQuantum(data),q);
539                       SetPixelGreen(tile_image,ScaleCharToQuantum(data),q);
540                       SetPixelBlue(tile_image,ScaleCharToQuantum(data),q);
541                       SetPixelAlpha(tile_image,data == 255U ? alpha :
542                         ScaleCharToQuantum(data),q);
543                     }
544                   else
545                     {
546                       SetPixelGray(tile_image,ScaleCharToQuantum(data),q);
547                       SetPixelAlpha(tile_image,data == 255U ? alpha :
548                         ScaleCharToQuantum(data),q);
549                     }
550                   break;
551                 }
552                 case 1:
553                 {
554                   SetPixelGreen(tile_image,ScaleCharToQuantum(data),q);
555                   break;
556                 }
557                 case 2:
558                 {
559                   SetPixelBlue(tile_image,ScaleCharToQuantum(data),q);
560                   break;
561                 }
562                 case 3:
563                 {
564                   SetPixelAlpha(tile_image,data == 255U ? alpha :
565                     ScaleCharToQuantum(data),q);
566                   break;
567                 }
568               }
569               q+=GetPixelChannels(tile_image);
570             }
571           }
572       }
573       if (SyncAuthenticPixels(tile_image,exception) == MagickFalse)
574         break;
575     }
576   xcfodata=(unsigned char *) RelinquishMagickMemory(xcfodata);
577   return(MagickTrue);
578
579   bogus_rle:
580     if (xcfodata != (unsigned char *) NULL)
581       xcfodata=(unsigned char *) RelinquishMagickMemory(xcfodata);
582   return(MagickFalse);
583 }
584
585 static MagickBooleanType load_level(Image *image,XCFDocInfo *inDocInfo,
586   XCFLayerInfo *inLayerInfo,ExceptionInfo *exception)
587 {
588   int
589     destLeft = 0,
590     destTop = 0;
591
592   Image*
593     tile_image;
594
595   MagickBooleanType
596     status;
597
598   MagickOffsetType
599     saved_pos,
600     offset,
601     offset2;
602
603   register ssize_t
604     i;
605
606   size_t
607     width,
608     height,
609     ntiles,
610     ntile_rows,
611     ntile_cols,
612     tile_image_width,
613     tile_image_height;
614
615   /* start reading the data */
616   width=ReadBlobMSBLong(image);
617   height=ReadBlobMSBLong(image);
618
619   /* read in the first tile offset.
620    *  if it is '0', then this tile level is empty
621    *  and we can simply return.
622    */
623   offset=(MagickOffsetType) ReadBlobMSBLong(image);
624   if (offset == 0)
625     return(MagickTrue);
626   /* Initialise the reference for the in-memory tile-compression
627    */
628   ntile_rows=(height+TILE_HEIGHT-1)/TILE_HEIGHT;
629   ntile_cols=(width+TILE_WIDTH-1)/TILE_WIDTH;
630   ntiles=ntile_rows*ntile_cols;
631   for (i = 0; i < (ssize_t) ntiles; i++)
632   {
633     status=MagickFalse;
634     if (offset == 0)
635       ThrowBinaryException(CorruptImageError,"NotEnoughTiles",image->filename);
636     /* save the current position as it is where the
637      *  next tile offset is stored.
638      */
639     saved_pos=TellBlob(image);
640     /* read in the offset of the next tile so we can calculate the amount
641        of data needed for this tile*/
642     offset2=(MagickOffsetType)ReadBlobMSBLong(image);
643     /* if the offset is 0 then we need to read in the maximum possible
644        allowing for negative compression */
645     if (offset2 == 0)
646       offset2=(MagickOffsetType) (offset + TILE_WIDTH * TILE_WIDTH * 4* 1.5);
647     /* seek to the tile offset */
648     offset=SeekBlob(image, offset, SEEK_SET);
649
650       /*
651         Allocate the image for the tile.  NOTE: the last tile in a row or
652         column may not be a full tile!
653       */
654       tile_image_width=(size_t) (destLeft == (int) ntile_cols-1 ?
655         (int) width % TILE_WIDTH : TILE_WIDTH);
656       if (tile_image_width == 0)
657         tile_image_width=TILE_WIDTH;
658       tile_image_height = (size_t) (destTop == (int) ntile_rows-1 ?
659         (int) height % TILE_HEIGHT : TILE_HEIGHT);
660       if (tile_image_height == 0)
661         tile_image_height=TILE_HEIGHT;
662       tile_image=CloneImage(inLayerInfo->image,tile_image_width,
663         tile_image_height,MagickTrue,exception);
664
665       /* read in the tile */
666       switch (inDocInfo->compression)
667       {
668         case COMPRESS_NONE:
669           if (load_tile(image,tile_image,inDocInfo,inLayerInfo,(size_t) (offset2-offset),exception) == 0)
670             status=MagickTrue;
671           break;
672         case COMPRESS_RLE:
673           if (load_tile_rle (image,tile_image,inDocInfo,inLayerInfo,
674               (int) (offset2-offset),exception) == 0)
675             status=MagickTrue;
676           break;
677         case COMPRESS_ZLIB:
678           ThrowBinaryException(CoderError,"ZipCompressNotSupported",
679             image->filename)
680         case COMPRESS_FRACTAL:
681           ThrowBinaryException(CoderError,"FractalCompressNotSupported",
682             image->filename)
683       }
684
685       /* composite the tile onto the layer's image, and then destroy it */
686       (void) CompositeImage(inLayerInfo->image,tile_image,CopyCompositeOp,
687         MagickTrue,destLeft * TILE_WIDTH,destTop*TILE_HEIGHT,exception);
688       tile_image=DestroyImage(tile_image);
689
690       /* adjust tile position */
691       destLeft++;
692       if (destLeft >= (int) ntile_cols)
693         {
694           destLeft = 0;
695           destTop++;
696         }
697       if (status != MagickFalse)
698         return(MagickFalse);
699       /* restore the saved position so we'll be ready to
700        *  read the next offset.
701        */
702       offset=SeekBlob(image, saved_pos, SEEK_SET);
703       /* read in the offset of the next tile */
704       offset=(MagickOffsetType) ReadBlobMSBLong(image);
705     }
706   if (offset != 0)
707     ThrowBinaryException(CorruptImageError,"CorruptImage",image->filename)
708   return(MagickTrue);
709 }
710
711 static MagickBooleanType load_hierarchy(Image *image,XCFDocInfo *inDocInfo,
712    XCFLayerInfo *inLayer, ExceptionInfo *exception)
713 {
714   MagickOffsetType
715     saved_pos,
716     offset,
717     junk;
718
719   size_t
720     width,
721     height,
722     bytes_per_pixel;
723
724   width=ReadBlobMSBLong(image);
725   (void) width;
726   height=ReadBlobMSBLong(image);
727   (void) height;
728   bytes_per_pixel=inDocInfo->bytes_per_pixel=ReadBlobMSBLong(image);
729   (void) bytes_per_pixel;
730
731   /* load in the levels...we make sure that the number of levels
732    *  calculated when the TileManager was created is the same
733    *  as the number of levels found in the file.
734    */
735   offset=(MagickOffsetType) ReadBlobMSBLong(image);  /* top level */
736
737   /* discard offsets for layers below first, if any.
738    */
739   do
740   {
741     junk=(MagickOffsetType) ReadBlobMSBLong(image);
742   }
743   while (junk != 0);
744
745   /* save the current position as it is where the
746    *  next level offset is stored.
747    */
748   saved_pos=TellBlob(image);
749
750   /* seek to the level offset */
751   offset=SeekBlob(image, offset, SEEK_SET);
752
753   /* read in the level */
754   if (load_level (image, inDocInfo, inLayer, exception) == 0)
755     return(MagickFalse);
756   /* restore the saved position so we'll be ready to
757    *  read the next offset.
758    */
759   offset=SeekBlob(image, saved_pos, SEEK_SET);
760   return(MagickTrue);
761 }
762
763 static MagickBooleanType ReadOneLayer(const ImageInfo *image_info,Image* image,
764   XCFDocInfo* inDocInfo,XCFLayerInfo *outLayer,const ssize_t layer,
765   ExceptionInfo *exception )
766 {
767   MagickOffsetType
768     offset;
769
770   unsigned int
771     foundPropEnd = 0;
772
773   size_t
774     hierarchy_offset,
775     layer_mask_offset;
776
777   /* clear the block! */
778   (void) ResetMagickMemory( outLayer, 0, sizeof( XCFLayerInfo ) );
779   /* read in the layer width, height, type and name */
780   outLayer->width = ReadBlobMSBLong(image);
781   outLayer->height = ReadBlobMSBLong(image);
782   outLayer->type = ReadBlobMSBLong(image);
783   (void) ReadBlobStringWithLongSize(image, outLayer->name,
784     sizeof(outLayer->name),exception);
785   /* read the layer properties! */
786   foundPropEnd = 0;
787   while ( (foundPropEnd == MagickFalse) && (EOFBlob(image) == MagickFalse) ) {
788   PropType    prop_type = (PropType) ReadBlobMSBLong(image);
789   size_t  prop_size = ReadBlobMSBLong(image);
790     switch (prop_type)
791     {
792     case PROP_END:
793       foundPropEnd = 1;
794       break;
795     case PROP_ACTIVE_LAYER:
796       outLayer->active = 1;
797       break;
798     case PROP_FLOATING_SELECTION:
799       outLayer->floating_offset = ReadBlobMSBLong(image);
800       break;
801     case PROP_OPACITY:
802       outLayer->alpha = ReadBlobMSBLong(image);
803       break;
804     case PROP_VISIBLE:
805       outLayer->visible = ReadBlobMSBLong(image);
806       break;
807     case PROP_LINKED:
808       outLayer->linked = ReadBlobMSBLong(image);
809       break;
810     case PROP_PRESERVE_TRANSPARENCY:
811       outLayer->preserve_trans = ReadBlobMSBLong(image);
812       break;
813     case PROP_APPLY_MASK:
814       outLayer->apply_mask = ReadBlobMSBLong(image);
815       break;
816     case PROP_EDIT_MASK:
817       outLayer->edit_mask = ReadBlobMSBLong(image);
818       break;
819     case PROP_SHOW_MASK:
820       outLayer->show_mask = ReadBlobMSBLong(image);
821       break;
822     case PROP_OFFSETS:
823       outLayer->offset_x = (int) ReadBlobMSBLong(image);
824       outLayer->offset_y = (int) ReadBlobMSBLong(image);
825       break;
826     case PROP_MODE:
827       outLayer->mode = ReadBlobMSBLong(image);
828       break;
829     case PROP_TATTOO:
830       outLayer->preserve_trans = ReadBlobMSBLong(image);
831       break;
832      case PROP_PARASITES:
833      {
834        if (DiscardBlobBytes(image,prop_size) == MagickFalse)
835          ThrowFileException(exception,CorruptImageError,
836            "UnexpectedEndOfFile",image->filename);
837
838         /*
839        ssize_t base = info->cp;
840        GimpParasite *p;
841        while (info->cp - base < prop_size)
842        {
843        p = xcf_load_parasite(info);
844        gimp_drawable_parasite_attach(GIMP_DRAWABLE(layer), p);
845        gimp_parasite_free(p);
846        }
847        if (info->cp - base != prop_size)
848        g_message ("Error detected while loading a layer's parasites");
849        */
850      }
851      break;
852     default:
853       /* g_message ("unexpected/unknown layer property: %d (skipping)",
854          prop_type); */
855
856       {
857       int buf[16];
858       ssize_t amount;
859
860       /* read over it... */
861       while ((prop_size > 0) && (EOFBlob(image) == MagickFalse))
862         {
863         amount = (ssize_t) MagickMin(16, prop_size);
864         amount = ReadBlob(image, (size_t) amount, (unsigned char *) &buf);
865         if (!amount)
866           ThrowBinaryException(CorruptImageError,"CorruptImage",
867             image->filename);
868         prop_size -= (size_t) MagickMin(16, (size_t) amount);
869         }
870       }
871       break;
872     }
873   }
874
875   if (foundPropEnd == MagickFalse)
876     return(MagickFalse);
877   /* allocate the image for this layer */
878   if (image_info->number_scenes != 0)
879     {
880       ssize_t
881         scene;
882
883       scene=inDocInfo->number_layers-layer-1;
884       if (scene > (ssize_t) (image_info->scene+image_info->number_scenes-1))
885         {
886           outLayer->image=CloneImage(image,0,0,MagickTrue,exception);
887           if (outLayer->image == (Image *) NULL)
888             return(MagickFalse);
889           outLayer->image->page.x=outLayer->offset_x;
890           outLayer->image->page.y=outLayer->offset_y;
891           outLayer->image->page.width=outLayer->width;
892           outLayer->image->page.height=outLayer->height;
893           return(MagickTrue);
894         }
895     }
896   outLayer->image=CloneImage(image,outLayer->width, outLayer->height,MagickTrue,
897     exception);
898   if (outLayer->image == (Image *) NULL)
899     return(MagickFalse);
900   /* clear the image based on the layer opacity */
901   outLayer->image->background_color.alpha=
902     ScaleCharToQuantum((unsigned char) outLayer->alpha);
903   (void) SetImageBackgroundColor(outLayer->image,exception);
904
905   outLayer->image->page.x=outLayer->offset_x;
906   outLayer->image->page.y=outLayer->offset_y;
907   outLayer->image->page.width=outLayer->width;
908   outLayer->image->page.height=outLayer->height;
909   /* set the compositing mode */
910   outLayer->image->compose = GIMPBlendModeToCompositeOperator( outLayer->mode );
911   if ( outLayer->visible == MagickFalse )
912     {
913       /* BOGUS: should really be separate member var! */
914       outLayer->image->compose = NoCompositeOp;
915     }
916
917   /* read the hierarchy and layer mask offsets */
918   hierarchy_offset = ReadBlobMSBLong(image);
919   layer_mask_offset = ReadBlobMSBLong(image);
920
921   /* read in the hierarchy */
922   offset=SeekBlob(image, (MagickOffsetType) hierarchy_offset, SEEK_SET);
923   if (offset < 0)
924     (void) ThrowMagickException(exception,GetMagickModule(),
925       CorruptImageError,"InvalidImageHeader","`%s'",image->filename);
926   if (load_hierarchy (image, inDocInfo, outLayer, exception) == 0)
927     return(MagickFalse);
928
929   /* read in the layer mask */
930   if (layer_mask_offset != 0)
931     {
932       offset=SeekBlob(image, (MagickOffsetType) layer_mask_offset, SEEK_SET);
933
934 #if 0  /* BOGUS: support layer masks! */
935       layer_mask = xcf_load_layer_mask (info, gimage);
936       if (layer_mask == 0)
937   goto error;
938
939       /* set the offsets of the layer_mask */
940       GIMP_DRAWABLE (layer_mask)->offset_x = GIMP_DRAWABLE (layer)->offset_x;
941       GIMP_DRAWABLE (layer_mask)->offset_y = GIMP_DRAWABLE (layer)->offset_y;
942
943       gimp_layer_add_mask (layer, layer_mask, MagickFalse);
944
945       layer->mask->apply_mask = apply_mask;
946       layer->mask->edit_mask  = edit_mask;
947       layer->mask->show_mask  = show_mask;
948 #endif
949   }
950
951   /* attach the floating selection... */
952 #if 0  /* BOGUS: we may need to read this, even if we don't support it! */
953   if (add_floating_sel)
954     {
955       GimpLayer *floating_sel;
956
957       floating_sel = info->floating_sel;
958       floating_sel_attach (floating_sel, GIMP_DRAWABLE (layer));
959     }
960 #endif
961
962   return MagickTrue;
963 }
964 \f
965 /*
966 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
967 %                                                                             %
968 %                                                                             %
969 %                                                                             %
970 %   R e a d X C F I m a g e                                                   %
971 %                                                                             %
972 %                                                                             %
973 %                                                                             %
974 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
975 %
976 %  ReadXCFImage() reads a GIMP (GNU Image Manipulation Program) image
977 %  file and returns it.  It allocates the memory necessary for the new Image
978 %  structure and returns a pointer to the new image.
979 %
980 %  The format of the ReadXCFImage method is:
981 %
982 %      image=ReadXCFImage(image_info)
983 %
984 %  A description of each parameter follows:
985 %
986 %    o image_info: the image info.
987 %
988 %    o exception: return any errors or warnings in this structure.
989 %
990 */
991 static Image *ReadXCFImage(const ImageInfo *image_info,ExceptionInfo *exception)
992 {
993   char
994     magick[14];
995
996   Image
997     *image;
998
999   int
1000     foundPropEnd = 0;
1001
1002   MagickBooleanType
1003     status;
1004
1005   MagickOffsetType
1006     offset;
1007
1008   register ssize_t
1009     i;
1010
1011   size_t
1012     image_type,
1013     length;
1014
1015   ssize_t
1016     count;
1017
1018   XCFDocInfo
1019     doc_info;
1020
1021   /*
1022     Open image file.
1023   */
1024   assert(image_info != (const ImageInfo *) NULL);
1025   assert(image_info->signature == MagickSignature);
1026   if (image_info->debug != MagickFalse)
1027     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
1028       image_info->filename);
1029   assert(exception != (ExceptionInfo *) NULL);
1030   assert(exception->signature == MagickSignature);
1031   image=AcquireImage(image_info,exception);
1032   status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
1033   if (status == MagickFalse)
1034     {
1035       image=DestroyImageList(image);
1036       return((Image *) NULL);
1037     }
1038   count=ReadBlob(image,14,(unsigned char *) magick);
1039   if ((count == 0) ||
1040       (LocaleNCompare((char *) magick,"gimp xcf",8) != 0))
1041     ThrowReaderException(CorruptImageError,"ImproperImageHeader");
1042   (void) ResetMagickMemory(&doc_info,0,sizeof(XCFDocInfo));
1043   doc_info.width=ReadBlobMSBLong(image);
1044   doc_info.height=ReadBlobMSBLong(image);
1045   if ((doc_info.width > 262144) || (doc_info.height > 262144))
1046     ThrowReaderException(CorruptImageError,"ImproperImageHeader");
1047   doc_info.image_type=ReadBlobMSBLong(image);
1048   /*
1049     Initialize image attributes.
1050   */
1051   image->columns=doc_info.width;
1052   image->rows=doc_info.height;
1053   image_type=doc_info.image_type;
1054   doc_info.file_size=GetBlobSize(image);
1055   image->compression=NoCompression;
1056   image->depth=8;
1057   if (image_type == GIMP_RGB)
1058     SetImageColorspace(image,sRGBColorspace,exception);
1059   else
1060     if (image_type == GIMP_GRAY)
1061       SetImageColorspace(image,GRAYColorspace,exception);
1062     else
1063       if (image_type == GIMP_INDEXED)
1064         ThrowReaderException(CoderError,"ColormapTypeNotSupported");
1065   (void) SetImageBackgroundColor(image,exception);
1066   image->alpha_trait=BlendPixelTrait;
1067   /*
1068     Read properties.
1069   */
1070   while ((foundPropEnd == MagickFalse) && (EOFBlob(image) == MagickFalse))
1071   {
1072     PropType prop_type = (PropType) ReadBlobMSBLong(image);
1073     size_t prop_size = ReadBlobMSBLong(image);
1074
1075     switch (prop_type)
1076     {
1077       case PROP_END:
1078         foundPropEnd=1;
1079         break;
1080       case PROP_COLORMAP:
1081       {
1082         /* Cannot rely on prop_size here--the value is set incorrectly
1083            by some Gimp versions.
1084         */
1085         size_t num_colours = ReadBlobMSBLong(image);
1086         if (DiscardBlobBytes(image,3*num_colours) == MagickFalse)
1087           ThrowFileException(exception,CorruptImageError,
1088             "UnexpectedEndOfFile",image->filename);
1089     /*
1090       if (info->file_version == 0)
1091       {
1092         gint i;
1093
1094         g_message (_("XCF warning: version 0 of XCF file format\n"
1095            "did not save indexed colormaps correctly.\n"
1096            "Substituting grayscale map."));
1097         info->cp +=
1098           xcf_read_int32 (info->fp, (guint32*) &gimage->num_cols, 1);
1099         gimage->cmap = g_new (guchar, gimage->num_cols*3);
1100         xcf_seek_pos (info, info->cp + gimage->num_cols);
1101         for (i = 0; i<gimage->num_cols; i++)
1102           {
1103             gimage->cmap[i*3+0] = i;
1104             gimage->cmap[i*3+1] = i;
1105             gimage->cmap[i*3+2] = i;
1106           }
1107       }
1108       else
1109       {
1110         info->cp +=
1111           xcf_read_int32 (info->fp, (guint32*) &gimage->num_cols, 1);
1112         gimage->cmap = g_new (guchar, gimage->num_cols*3);
1113         info->cp +=
1114           xcf_read_int8 (info->fp,
1115                    (guint8*) gimage->cmap, gimage->num_cols*3);
1116       }
1117      */
1118         break;
1119       }
1120       case PROP_COMPRESSION:
1121       {
1122         doc_info.compression = ReadBlobByte(image);
1123         if ((doc_info.compression != COMPRESS_NONE) &&
1124             (doc_info.compression != COMPRESS_RLE) &&
1125             (doc_info.compression != COMPRESS_ZLIB) &&
1126             (doc_info.compression != COMPRESS_FRACTAL))
1127           ThrowReaderException(CorruptImageError,"UnrecognizedImageCompression");
1128       }
1129       break;
1130
1131       case PROP_GUIDES:
1132       {
1133          /* just skip it - we don't care about guides */
1134         if (DiscardBlobBytes(image,prop_size) == MagickFalse)
1135           ThrowFileException(exception,CorruptImageError,
1136             "UnexpectedEndOfFile",image->filename);
1137       }
1138       break;
1139
1140     case PROP_RESOLUTION:
1141       {
1142         /* float xres = (float) */ (void) ReadBlobMSBLong(image);
1143         /* float yres = (float) */ (void) ReadBlobMSBLong(image);
1144
1145         /*
1146         if (xres < GIMP_MIN_RESOLUTION || xres > GIMP_MAX_RESOLUTION ||
1147             yres < GIMP_MIN_RESOLUTION || yres > GIMP_MAX_RESOLUTION)
1148         {
1149         g_message ("Warning, resolution out of range in XCF file");
1150         xres = gimage->gimp->config->default_xresolution;
1151         yres = gimage->gimp->config->default_yresolution;
1152         }
1153         */
1154
1155
1156         /* BOGUS: we don't write these yet because we aren't
1157               reading them properly yet :(
1158               image->resolution.x = xres;
1159               image->resolution.y = yres;
1160         */
1161       }
1162       break;
1163
1164     case PROP_TATTOO:
1165       {
1166         /* we need to read it, even if we ignore it */
1167         /*size_t  tattoo_state = */ (void) ReadBlobMSBLong(image);
1168       }
1169       break;
1170
1171     case PROP_PARASITES:
1172       {
1173         /* BOGUS: we may need these for IPTC stuff */
1174         if (DiscardBlobBytes(image,prop_size) == MagickFalse)
1175           ThrowFileException(exception,CorruptImageError,
1176             "UnexpectedEndOfFile",image->filename);
1177         /*
1178       gssize_t         base = info->cp;
1179       GimpParasite *p;
1180
1181       while (info->cp - base < prop_size)
1182         {
1183           p = xcf_load_parasite (info);
1184           gimp_image_parasite_attach (gimage, p);
1185           gimp_parasite_free (p);
1186         }
1187       if (info->cp - base != prop_size)
1188         g_message ("Error detected while loading an image's parasites");
1189       */
1190           }
1191       break;
1192
1193     case PROP_UNIT:
1194       {
1195         /* BOGUS: ignore for now... */
1196       /*size_t unit =  */ (void) ReadBlobMSBLong(image);
1197       }
1198       break;
1199
1200     case PROP_PATHS:
1201       {
1202       /* BOGUS: just skip it for now */
1203         if (DiscardBlobBytes(image,prop_size) == MagickFalse)
1204           ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
1205             image->filename);
1206
1207         /*
1208       PathList *paths = xcf_load_bzpaths (gimage, info);
1209       gimp_image_set_paths (gimage, paths);
1210       */
1211       }
1212       break;
1213
1214     case PROP_USER_UNIT:
1215       {
1216         char  unit_string[1000];
1217         /*BOGUS: ignored for now */
1218         /*float  factor = (float) */ (void) ReadBlobMSBLong(image);
1219         /* size_t digits =  */ (void) ReadBlobMSBLong(image);
1220         for (i=0; i<5; i++)
1221          (void) ReadBlobStringWithLongSize(image, unit_string,
1222            sizeof(unit_string),exception);
1223       }
1224      break;
1225
1226       default:
1227       {
1228         int buf[16];
1229         ssize_t amount;
1230
1231       /* read over it... */
1232       while ((prop_size > 0) && (EOFBlob(image) == MagickFalse))
1233       {
1234         amount=(ssize_t) MagickMin(16, prop_size);
1235         amount=(ssize_t) ReadBlob(image,(size_t) amount,(unsigned char *) &buf);
1236         if (!amount)
1237           ThrowReaderException(CorruptImageError,"CorruptImage");
1238         prop_size -= (size_t) MagickMin(16,(size_t) amount);
1239       }
1240     }
1241     break;
1242   }
1243   }
1244   if (foundPropEnd == MagickFalse)
1245     ThrowReaderException(CorruptImageError,"ImproperImageHeader");
1246
1247   if ((image_info->ping != MagickFalse) && (image_info->number_scenes != 0))
1248     {
1249       ; /* do nothing, were just pinging! */
1250     }
1251   else
1252     {
1253       int
1254         current_layer = 0,
1255         foundAllLayers = MagickFalse,
1256         number_layers = 0;
1257
1258       MagickOffsetType
1259         oldPos=TellBlob(image);
1260
1261       XCFLayerInfo
1262         *layer_info;
1263
1264       /* 
1265         the read pointer
1266       */
1267       do
1268       {
1269         ssize_t offset = (int) ReadBlobMSBLong(image);
1270         if (offset == 0)
1271           foundAllLayers=MagickTrue;
1272         else
1273           number_layers++;
1274         if (EOFBlob(image) != MagickFalse)
1275           {
1276             ThrowFileException(exception,CorruptImageError,
1277               "UnexpectedEndOfFile",image->filename);
1278             break;
1279           }
1280     } while (foundAllLayers == MagickFalse);
1281     doc_info.number_layers=number_layers;
1282     offset=SeekBlob(image,oldPos,SEEK_SET); /* restore the position! */
1283     if (offset < 0)
1284       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
1285     /* allocate our array of layer info blocks */
1286     length=(size_t) number_layers;
1287     layer_info=(XCFLayerInfo *) AcquireQuantumMemory(length,
1288       sizeof(*layer_info));
1289     if (layer_info == (XCFLayerInfo *) NULL)
1290       ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
1291     (void) ResetMagickMemory(layer_info,0,number_layers*sizeof(XCFLayerInfo));
1292     for ( ; ; )
1293     {
1294       MagickBooleanType
1295         layer_ok;
1296
1297       MagickOffsetType
1298         offset,
1299         saved_pos;
1300
1301       /* read in the offset of the next layer */
1302       offset=(MagickOffsetType) ReadBlobMSBLong(image);
1303       /* if the offset is 0 then we are at the end
1304       *  of the layer list.
1305       */
1306       if (offset == 0)
1307         break;
1308       /* save the current position as it is where the
1309       *  next layer offset is stored.
1310       */
1311       saved_pos=TellBlob(image);
1312       /* seek to the layer offset */
1313       offset=SeekBlob(image,offset,SEEK_SET);
1314       /* read in the layer */
1315       layer_ok=ReadOneLayer(image_info,image,&doc_info,
1316         &layer_info[current_layer],current_layer,exception);
1317       if (layer_ok == MagickFalse)
1318         {
1319           int j;
1320
1321           for (j=0; j < current_layer; j++)
1322             layer_info[j].image=DestroyImage(layer_info[j].image);
1323           layer_info=(XCFLayerInfo *) RelinquishMagickMemory(layer_info);
1324           ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
1325         }
1326       /* restore the saved position so we'll be ready to
1327       *  read the next offset.
1328       */
1329       offset=SeekBlob(image, saved_pos, SEEK_SET);
1330       current_layer++;
1331     }
1332     if (number_layers == 1)
1333       {
1334         /*
1335           Composite the layer data onto the main image, dispose the layer.
1336         */
1337         (void) CompositeImage(image,layer_info[0].image,OverCompositeOp,
1338           MagickTrue,layer_info[0].offset_x,layer_info[0].offset_y,exception);
1339         layer_info[0].image =DestroyImage( layer_info[0].image);
1340       }
1341     else
1342       {
1343 #if 0
1344         {
1345         /* NOTE: XCF layers are REVERSED from composite order! */
1346         signed int  j;
1347         for (j=number_layers-1; j>=0; j--) {
1348           /* BOGUS: need to consider layer blending modes!! */
1349
1350           if ( layer_info[j].visible ) { /* only visible ones, please! */
1351             CompositeImage(image, OverCompositeOp, layer_info[j].image,
1352                      layer_info[j].offset_x, layer_info[j].offset_y );
1353              layer_info[j].image =DestroyImage( layer_info[j].image );
1354
1355             /* If we do this, we'll get REAL gray images! */
1356             if ( image_type == GIMP_GRAY ) {
1357               QuantizeInfo  qi;
1358               GetQuantizeInfo(&qi);
1359               qi.colorspace = GRAYColorspace;
1360               QuantizeImage( &qi, layer_info[j].image );
1361             }
1362           }
1363         }
1364       }
1365 #else
1366       {
1367         /* NOTE: XCF layers are REVERSED from composite order! */
1368         ssize_t  j;
1369
1370         /* first we copy the last layer on top of the main image */
1371         (void) CompositeImage(image,layer_info[number_layers-1].image,
1372           CopyCompositeOp,MagickTrue,layer_info[number_layers-1].offset_x,
1373           layer_info[number_layers-1].offset_y,exception);
1374           layer_info[number_layers-1].image=DestroyImage(
1375             layer_info[number_layers-1].image);
1376
1377         /* now reverse the order of the layers as they are put
1378            into subimages
1379         */
1380         for (j=(ssize_t) number_layers-2; j >= 0; j--)
1381           AppendImageToList(&image,layer_info[j].image);
1382       }
1383 #endif
1384     }
1385
1386     layer_info=(XCFLayerInfo *) RelinquishMagickMemory(layer_info);
1387
1388 #if 0  /* BOGUS: do we need the channels?? */
1389     while (MagickTrue)
1390     {
1391       /* read in the offset of the next channel */
1392       info->cp += xcf_read_int32 (info->fp, &offset, 1);
1393
1394       /* if the offset is 0 then we are at the end
1395       *  of the channel list.
1396       */
1397       if (offset == 0)
1398         break;
1399
1400       /* save the current position as it is where the
1401       *  next channel offset is stored.
1402       */
1403       saved_pos = info->cp;
1404
1405       /* seek to the channel offset */
1406       xcf_seek_pos (info, offset);
1407
1408       /* read in the layer */
1409       channel = xcf_load_channel (info, gimage);
1410       if (channel == 0)
1411         goto error;
1412
1413       num_successful_elements++;
1414
1415       /* add the channel to the image if its not the selection */
1416       if (channel != gimage->selection_mask)
1417         gimp_image_add_channel (gimage, channel, -1);
1418
1419       /* restore the saved position so we'll be ready to
1420       *  read the next offset.
1421       */
1422       xcf_seek_pos (info, saved_pos);
1423     }
1424 #endif
1425   }
1426
1427   (void) CloseBlob(image);
1428   if (image_type == GIMP_GRAY)
1429     image->type=GrayscaleType;
1430   return(GetFirstImageInList(image));
1431 }
1432 \f
1433 /*
1434 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1435 %                                                                             %
1436 %                                                                             %
1437 %                                                                             %
1438 %   R e g i s t e r X C F I m a g e                                           %
1439 %                                                                             %
1440 %                                                                             %
1441 %                                                                             %
1442 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1443 %
1444 %  RegisterXCFImage() adds attributes for the XCF image format to
1445 %  the list of supported formats.  The attributes include the image format
1446 %  tag, a method to read and/or write the format, whether the format
1447 %  supports the saving of more than one frame to the same file or blob,
1448 %  whether the format supports native in-memory I/O, and a brief
1449 %  description of the format.
1450 %
1451 %  The format of the RegisterXCFImage method is:
1452 %
1453 %      size_t RegisterXCFImage(void)
1454 %
1455 */
1456 ModuleExport size_t RegisterXCFImage(void)
1457 {
1458   MagickInfo
1459     *entry;
1460
1461   entry=SetMagickInfo("XCF");
1462   entry->decoder=(DecodeImageHandler *) ReadXCFImage;
1463   entry->magick=(IsImageFormatHandler *) IsXCF;
1464   entry->description=ConstantString("GIMP image");
1465   entry->module=ConstantString("XCF");
1466   entry->seekable_stream=MagickTrue;
1467   (void) RegisterMagickInfo(entry);
1468   return(MagickImageCoderSignature);
1469 }
1470 \f
1471 /*
1472 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1473 %                                                                             %
1474 %                                                                             %
1475 %                                                                             %
1476 %   U n r e g i s t e r X C F I m a g e                                       %
1477 %                                                                             %
1478 %                                                                             %
1479 %                                                                             %
1480 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1481 %
1482 %  UnregisterXCFImage() removes format registrations made by the
1483 %  XCF module from the list of supported formats.
1484 %
1485 %  The format of the UnregisterXCFImage method is:
1486 %
1487 %      UnregisterXCFImage(void)
1488 %
1489 */
1490 ModuleExport void UnregisterXCFImage(void)
1491 {
1492   (void) UnregisterMagickInfo("XCF");
1493 }