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