]> granicus.if.org Git - imagemagick/blob - coders/mat.c
(no commit message)
[imagemagick] / coders / mat.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                  M   M   AAA   TTTTT  L       AAA   BBBB                    %
6 %                  MM MM  A   A    T    L      A   A  B   B                   %
7 %                  M M M  AAAAA    T    L      AAAAA  BBBB                    %
8 %                  M   M  A   A    T    L      A   A  B   B                   %
9 %                  M   M  A   A    T    LLLLL  A   A  BBBB                    %
10 %                                                                             %
11 %                                                                             %
12 %                        Read MATLAB Image Format                             %
13 %                                                                             %
14 %                              Software Design                                %
15 %                              Jaroslav Fojtik                                %
16 %                                2001-2008                                    %
17 %                                                                             %
18 %                                                                             %
19 %  Permission is hereby granted, free of charge, to any person obtaining a    %
20 %  copy of this software and associated documentation files ("ImageMagick"),  %
21 %  to deal in ImageMagick without restriction, including without limitation   %
22 %  the rights to use, copy, modify, merge, publish, distribute, sublicense,   %
23 %  and/or sell copies of ImageMagick, and to permit persons to whom the       %
24 %  ImageMagick is furnished to do so, subject to the following conditions:    %
25 %                                                                             %
26 %  The above copyright notice and this permission notice shall be included in %
27 %  all copies or substantial portions of ImageMagick.                         %
28 %                                                                             %
29 %  The software is provided "as is", without warranty of any kind, express or %
30 %  implied, including but not limited to the warranties of merchantability,   %
31 %  fitness for a particular purpose and noninfringement.  In no event shall   %
32 %  ImageMagick Studio be liable for any claim, damages or other liability,    %
33 %  whether in an action of contract, tort or otherwise, arising from, out of  %
34 %  or in connection with ImageMagick or the use or other dealings in          %
35 %  ImageMagick.                                                               %
36 %                                                                             %
37 %  Except as contained in this notice, the name of the ImageMagick Studio     %
38 %  shall not be used in advertising or otherwise to promote the sale, use or  %
39 %  other dealings in ImageMagick without prior written authorization from the %
40 %  ImageMagick Studio.                                                        %
41 %                                                                             %
42 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43 %
44 %
45 */
46 \f
47 /*
48   Include declarations.
49 */
50 #include "MagickCore/studio.h"
51 #include "MagickCore/attribute.h"
52 #include "MagickCore/blob.h"
53 #include "MagickCore/blob-private.h"
54 #include "MagickCore/cache.h"
55 #include "MagickCore/color-private.h"
56 #include "MagickCore/colormap.h"
57 #include "MagickCore/colorspace-private.h"
58 #include "MagickCore/distort.h"
59 #include "MagickCore/exception.h"
60 #include "MagickCore/exception-private.h"
61 #include "MagickCore/image.h"
62 #include "MagickCore/image-private.h"
63 #include "MagickCore/list.h"
64 #include "MagickCore/magick.h"
65 #include "MagickCore/memory_.h"
66 #include "MagickCore/monitor.h"
67 #include "MagickCore/monitor-private.h"
68 #include "MagickCore/pixel-accessor.h"
69 #include "MagickCore/quantum-private.h"
70 #include "MagickCore/option.h"
71 #include "MagickCore/pixel.h"
72 #include "MagickCore/resource_.h"
73 #include "MagickCore/static.h"
74 #include "MagickCore/string_.h"
75 #include "MagickCore/module.h"
76 #include "MagickCore/transform.h"
77 #include "MagickCore/utility-private.h"
78 #if defined(MAGICKCORE_ZLIB_DELEGATE)
79  #include "zlib.h"
80 #endif
81 \f
82 /*
83   Forward declaration.
84 */
85 static MagickBooleanType
86   WriteMATImage(const ImageInfo *,Image *,ExceptionInfo *);
87
88
89 /* Auto coloring method, sorry this creates some artefact inside data
90 MinReal+j*MaxComplex = red  MaxReal+j*MaxComplex = black
91 MinReal+j*0 = white          MaxReal+j*0 = black
92 MinReal+j*MinComplex = blue  MaxReal+j*MinComplex = black
93 */
94
95 typedef struct
96 {
97   char identific[124];
98   unsigned short Version;
99   char EndianIndicator[2];
100   unsigned long DataType;
101   unsigned long ObjectSize;
102   unsigned long unknown1;
103   unsigned long unknown2;
104
105   unsigned short unknown5;
106   unsigned char StructureFlag;
107   unsigned char StructureClass;
108   unsigned long unknown3;
109   unsigned long unknown4;
110   unsigned long DimFlag;
111
112   unsigned long SizeX;
113   unsigned long SizeY;
114   unsigned short Flag1;
115   unsigned short NameFlag;
116 }
117 MATHeader;
118
119 static const char *MonthsTab[12]={"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
120 static const char *DayOfWTab[7]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
121 static const char *OsDesc=
122 #ifdef __WIN32__
123     "PCWIN";
124 #else
125  #ifdef __APPLE__
126     "MAC";
127  #else
128     "LNX86";
129  #endif
130 #endif
131
132 typedef enum
133   {
134     miINT8 = 1,      /* 8 bit signed */
135     miUINT8,      /* 8 bit unsigned */
136     miINT16,      /* 16 bit signed */
137     miUINT16,      /* 16 bit unsigned */
138     miINT32,      /* 32 bit signed */
139     miUINT32,      /* 32 bit unsigned */
140     miSINGLE,      /* IEEE 754 single precision float */
141     miRESERVE1,
142     miDOUBLE,      /* IEEE 754 double precision float */
143     miRESERVE2,
144     miRESERVE3,
145     miINT64,      /* 64 bit signed */
146     miUINT64,      /* 64 bit unsigned */
147     miMATRIX,            /* MATLAB array */
148     miCOMPRESSED,          /* Compressed Data */
149     miUTF8,            /* Unicode UTF-8 Encoded Character Data */
150     miUTF16,            /* Unicode UTF-16 Encoded Character Data */
151     miUTF32      /* Unicode UTF-32 Encoded Character Data */
152   } mat5_data_type;
153
154 typedef enum
155   {
156     mxCELL_CLASS=1,    /* cell array */
157     mxSTRUCT_CLASS,    /* structure */
158     mxOBJECT_CLASS,    /* object */
159     mxCHAR_CLASS,    /* character array */
160     mxSPARSE_CLASS,    /* sparse array */
161     mxDOUBLE_CLASS,    /* double precision array */
162     mxSINGLE_CLASS,    /* single precision floating point */
163     mxINT8_CLASS,    /* 8 bit signed integer */
164     mxUINT8_CLASS,    /* 8 bit unsigned integer */
165     mxINT16_CLASS,    /* 16 bit signed integer */
166     mxUINT16_CLASS,    /* 16 bit unsigned integer */
167     mxINT32_CLASS,    /* 32 bit signed integer */
168     mxUINT32_CLASS,    /* 32 bit unsigned integer */
169     mxINT64_CLASS,    /* 64 bit signed integer */
170     mxUINT64_CLASS,    /* 64 bit unsigned integer */
171     mxFUNCTION_CLASS            /* Function handle */
172   } arrayclasstype;
173
174 #define FLAG_COMPLEX 0x8
175 #define FLAG_GLOBAL  0x4
176 #define FLAG_LOGICAL 0x2
177
178 static const QuantumType z2qtype[4] = {GrayQuantum, BlueQuantum, GreenQuantum, RedQuantum};
179
180
181 static void InsertComplexDoubleRow(Image *image,double *p,int y,double MinVal,
182   double MaxVal,ExceptionInfo *exception)
183 {
184
185   double f;
186   int x;
187   register Quantum *q;
188
189   if (MinVal == 0)
190     MinVal = -1;
191   if (MaxVal == 0)
192     MaxVal = 1;
193
194   q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
195   if (q == (Quantum *) NULL)
196     return;
197   for (x = 0; x < (ssize_t) image->columns; x++)
198   {
199     if (*p > 0)
200     {
201       f = (*p / MaxVal) * (QuantumRange-GetPixelRed(image,q));
202       if (f + GetPixelRed(image,q) > QuantumRange)
203         SetPixelRed(image,QuantumRange,q);
204       else
205         SetPixelRed(image,GetPixelRed(image,q)+(int) f,q);
206       if ((int) f / 2.0 > GetPixelGreen(image,q))
207         {
208           SetPixelGreen(image,0,q);
209           SetPixelBlue(image,0,q);
210         }
211       else
212         {
213           SetPixelBlue(image,GetPixelBlue(image,q)-(int) (f/2.0),q);
214           SetPixelGreen(image,GetPixelBlue(image,q),q);
215         }
216     }
217     if (*p < 0)
218     {
219       f = (*p / MaxVal) * (QuantumRange-GetPixelBlue(image,q));
220       if (f+GetPixelBlue(image,q) > QuantumRange)
221         SetPixelBlue(image,QuantumRange,q);
222       else
223         SetPixelBlue(image,GetPixelBlue(image,q)+(int) f,q);
224       if ((int) f / 2.0 > GetPixelGreen(image,q))
225         {
226           SetPixelRed(image,0,q);
227           SetPixelGreen(image,0,q);
228         }
229       else
230         {
231           SetPixelRed(image,GetPixelRed(image,q)-(int) (f/2.0),q);
232           SetPixelGreen(image,GetPixelRed(image,q),q);
233         }
234     }
235     p++;
236     q+=GetPixelChannels(image);
237   }
238   if (!SyncAuthenticPixels(image,exception))
239     return;
240   return;
241 }
242
243
244 static void InsertComplexFloatRow(Image *image,float *p,int y,double MinVal,
245   double MaxVal,ExceptionInfo *exception)
246 {
247   double f;
248   int x;
249   register Quantum *q;
250
251   if (MinVal == 0)
252     MinVal = -1;
253   if (MaxVal == 0)
254     MaxVal = 1;
255
256   q = QueueAuthenticPixels(image, 0, y, image->columns, 1,exception);
257   if (q == (Quantum *) NULL)
258     return;
259   for (x = 0; x < (ssize_t) image->columns; x++)
260   {
261     if (*p > 0)
262     {
263       f = (*p / MaxVal) * (QuantumRange-GetPixelRed(image,q));
264       if (f+GetPixelRed(image,q) > QuantumRange)
265         SetPixelRed(image,QuantumRange,q);
266       else
267         SetPixelRed(image,GetPixelRed(image,q)+(int) f,q);
268       if ((int) f / 2.0 > GetPixelGreen(image,q))
269         {
270           SetPixelGreen(image,0,q);
271           SetPixelBlue(image,0,q);
272         }
273       else
274         {
275           SetPixelBlue(image,GetPixelBlue(image,q)-(int) (f/2.0),q);
276           SetPixelGreen(image,GetPixelBlue(image,q),q);
277         }
278     }
279     if (*p < 0)
280     {
281       f = (*p / MaxVal) * (QuantumRange - GetPixelBlue(image,q));
282       if (f + GetPixelBlue(image,q) > QuantumRange)
283         SetPixelBlue(image,QuantumRange,q);
284       else
285         SetPixelBlue(image,GetPixelBlue(image,q)+
286           (int) f,q);
287       if ((int) f / 2.0 > GetPixelGreen(image,q))
288         {
289           SetPixelGreen(image,0,q);
290           SetPixelRed(image,0,q);
291         }
292       else
293         {
294           SetPixelRed(image,GetPixelRed(image,q)-(int) (f/2.0),q);
295           SetPixelGreen(image,GetPixelRed(image,q),q);
296         }
297     }
298     p++;
299     q++;
300   }
301   if (!SyncAuthenticPixels(image,exception))
302     return;
303   return;
304 }
305
306
307 /************** READERS ******************/
308
309 /* This function reads one block of floats*/
310 static void ReadBlobFloatsLSB(Image * image, size_t len, float *data)
311 {
312   while (len >= 4)
313   {
314     *data++ = ReadBlobFloat(image);
315     len -= sizeof(float);
316   }
317   if (len > 0)
318     (void) SeekBlob(image, len, SEEK_CUR);
319 }
320
321 static void ReadBlobFloatsMSB(Image * image, size_t len, float *data)
322 {
323   while (len >= 4)
324   {
325     *data++ = ReadBlobFloat(image);
326     len -= sizeof(float);
327   }
328   if (len > 0)
329     (void) SeekBlob(image, len, SEEK_CUR);
330 }
331
332 /* This function reads one block of doubles*/
333 static void ReadBlobDoublesLSB(Image * image, size_t len, double *data)
334 {
335   while (len >= 8)
336   {
337     *data++ = ReadBlobDouble(image);
338     len -= sizeof(double);
339   }
340   if (len > 0)
341     (void) SeekBlob(image, len, SEEK_CUR);
342 }
343
344 static void ReadBlobDoublesMSB(Image * image, size_t len, double *data)
345 {
346   while (len >= 8)
347   {
348     *data++ = ReadBlobDouble(image);
349     len -= sizeof(double);
350   }
351   if (len > 0)
352     (void) SeekBlob(image, len, SEEK_CUR);
353 }
354
355 /* Calculate minimum and maximum from a given block of data */
356 static void CalcMinMax(Image *image, int endian_indicator, int SizeX, int SizeY, size_t CellType, unsigned ldblk, void *BImgBuff, double *Min, double *Max)
357 {
358 MagickOffsetType filepos;
359 int i, x;
360 void (*ReadBlobDoublesXXX)(Image * image, size_t len, double *data);
361 void (*ReadBlobFloatsXXX)(Image * image, size_t len, float *data);
362 double *dblrow;
363 float *fltrow;
364
365   if (endian_indicator == LSBEndian)
366   {    
367     ReadBlobDoublesXXX = ReadBlobDoublesLSB;
368     ReadBlobFloatsXXX = ReadBlobFloatsLSB;   
369   } 
370   else    /* MI */
371   {    
372     ReadBlobDoublesXXX = ReadBlobDoublesMSB;
373     ReadBlobFloatsXXX = ReadBlobFloatsMSB;   
374   }
375
376   filepos = TellBlob(image);     /* Please note that file seeking occurs only in the case of doubles */
377   for (i = 0; i < SizeY; i++)
378   {
379     if (CellType==miDOUBLE)
380     {
381       ReadBlobDoublesXXX(image, ldblk, (double *)BImgBuff);
382       dblrow = (double *)BImgBuff;
383       if (i == 0)
384       {
385         *Min = *Max = *dblrow;
386       }
387       for (x = 0; x < SizeX; x++)
388       {
389         if (*Min > *dblrow)
390           *Min = *dblrow;
391         if (*Max < *dblrow)
392           *Max = *dblrow;
393         dblrow++;
394       }
395     }
396     if (CellType==miSINGLE)
397     {
398       ReadBlobFloatsXXX(image, ldblk, (float *)BImgBuff);
399       fltrow = (float *)BImgBuff;
400       if (i == 0)
401       {
402         *Min = *Max = *fltrow;
403       }
404     for (x = 0; x < (ssize_t) SizeX; x++)
405       {
406         if (*Min > *fltrow)
407           *Min = *fltrow;
408         if (*Max < *fltrow)
409           *Max = *fltrow;
410         fltrow++;
411       }
412     }
413   }
414   (void) SeekBlob(image, filepos, SEEK_SET);
415 }
416
417
418 static void FixSignedValues(const Image *image,Quantum *q, int y)
419 {
420   while(y-->0)
421   {
422      /* Please note that negative values will overflow
423         Q=8; QuantumRange=255: <0;127> + 127+1 = <128; 255> 
424            <-1;-128> + 127+1 = <0; 127> */
425     SetPixelRed(image,GetPixelRed(image,q)+QuantumRange/2+1,q);
426     SetPixelGreen(image,GetPixelGreen(image,q)+QuantumRange/2+1,q);
427     SetPixelBlue(image,GetPixelBlue(image,q)+QuantumRange/2+1,q);
428     q++;
429   }
430 }
431
432
433 /** Fix whole row of logical/binary data. It means pack it. */
434 static void FixLogical(unsigned char *Buff,int ldblk)
435 {
436 unsigned char mask=128;
437 unsigned char *BuffL = Buff;
438 unsigned char val = 0;
439
440   while(ldblk-->0)
441   {
442     if(*Buff++ != 0)
443       val |= mask;    
444
445     mask >>= 1;
446     if(mask==0)
447     {
448       *BuffL++ = val;
449       val = 0;
450       mask = 128;
451     }   
452       
453   }
454   *BuffL = val;
455 }
456
457 #if defined(MAGICKCORE_ZLIB_DELEGATE)
458 static voidpf AcquireZIPMemory(voidpf context,unsigned int items,
459   unsigned int size)
460 {
461   (void) context;
462   return((voidpf) AcquireQuantumMemory(items,size));
463 }
464
465 static void RelinquishZIPMemory(voidpf context,voidpf memory)
466 {
467   (void) context;
468   memory=RelinquishMagickMemory(memory);
469 }
470 #endif
471
472 #if defined(MAGICKCORE_ZLIB_DELEGATE)
473 /** This procedure decompreses an image block for a new MATLAB format. */
474 static Image *DecompressBlock(Image *orig, MagickOffsetType Size, ImageInfo *clone_info, ExceptionInfo *exception)
475 {
476
477 Image *image2;
478 void *CacheBlock, *DecompressBlock;
479 z_stream zip_info;
480 FILE *mat_file;
481 size_t magick_size;
482 size_t extent;
483 int file;
484
485 int status;
486
487   if(clone_info==NULL) return NULL;
488   if(clone_info->file)    /* Close file opened from previous transaction. */
489   {
490     fclose(clone_info->file);
491     clone_info->file = NULL;
492     (void) remove_utf8(clone_info->filename);
493   }
494
495   CacheBlock = AcquireQuantumMemory((size_t)((Size<16384)?Size:16384),sizeof(unsigned char *));
496   if(CacheBlock==NULL) return NULL;
497   DecompressBlock = AcquireQuantumMemory((size_t)(4096),sizeof(unsigned char *));
498   if(DecompressBlock==NULL) 
499   {
500     RelinquishMagickMemory(CacheBlock);    
501     return NULL;
502   }
503
504   mat_file=0;
505   file = AcquireUniqueFileResource(clone_info->filename);
506   if (file != -1)
507     mat_file = fdopen(file,"w");
508   if(!mat_file)
509   {
510     RelinquishMagickMemory(CacheBlock);
511     RelinquishMagickMemory(DecompressBlock);
512     (void) LogMagickEvent(CoderEvent,GetMagickModule(),"Gannot create file stream for PS image");
513     return NULL;
514   }
515
516   zip_info.zalloc=AcquireZIPMemory;
517   zip_info.zfree=RelinquishZIPMemory;
518   zip_info.opaque = (voidpf) NULL;
519   inflateInit(&zip_info);
520   /* zip_info.next_out = 8*4;*/
521
522   zip_info.avail_in = 0;
523   zip_info.total_out = 0;
524   while(Size>0 && !EOFBlob(orig))
525   {    
526     magick_size = ReadBlob(orig, (Size<16384)?Size:16384, (unsigned char *) CacheBlock);
527     zip_info.next_in = (Bytef *) CacheBlock;
528     zip_info.avail_in = (uInt) magick_size;    
529
530     while(zip_info.avail_in>0)
531     {
532       zip_info.avail_out = 4096;    
533       zip_info.next_out = (Bytef *) DecompressBlock;
534       status = inflate(&zip_info,Z_NO_FLUSH);      
535       extent=fwrite(DecompressBlock, 4096-zip_info.avail_out, 1, mat_file);
536       (void) extent;
537
538       if(status == Z_STREAM_END) goto DblBreak;
539     }
540
541     Size -= magick_size;
542   }
543 DblBreak:
544  
545   (void)fclose(mat_file);
546   RelinquishMagickMemory(CacheBlock);
547   RelinquishMagickMemory(DecompressBlock);
548
549   if((clone_info->file=fopen(clone_info->filename,"rb"))==NULL) goto UnlinkFile;
550   if( (image2 = AcquireImage(clone_info,exception))==NULL ) goto EraseFile;  
551   status = OpenBlob(clone_info,image2,ReadBinaryBlobMode,exception);
552   if (status == MagickFalse)
553   {
554     DeleteImageFromList(&image2);    
555 EraseFile:
556     fclose(clone_info->file);
557     clone_info->file = NULL;
558 UnlinkFile:
559     (void) remove_utf8(clone_info->filename);
560     return NULL; 
561   }
562
563   return image2;
564 }
565 #endif
566 \f
567 /*
568 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
569 %                                                                             %
570 %                                                                             %
571 %                                                                             %
572 %   R e a d M A T L A B i m a g e                                             %
573 %                                                                             %
574 %                                                                             %
575 %                                                                             %
576 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
577 %
578 %  ReadMATImage() reads an MAT X image file and returns it.  It
579 %  allocates the memory necessary for the new Image structure and returns a
580 %  pointer to the new image.
581 %
582 %  The format of the ReadMATImage method is:
583 %
584 %      Image *ReadMATImage(const ImageInfo *image_info,ExceptionInfo *exception)
585 %
586 %  A description of each parameter follows:
587 %
588 %    o image:  Method ReadMATImage returns a pointer to the image after
589 %      reading. A null image is returned if there is a memory shortage or if
590 %      the image cannot be read.
591 %
592 %    o image_info: Specifies a pointer to a ImageInfo structure.
593 %
594 %    o exception: return any errors or warnings in this structure.
595 %
596 */
597
598 static inline size_t MagickMin(const size_t x,const size_t y)
599 {
600   if (x < y)
601     return(x);
602   return(y);
603 }
604
605 static Image *ReadMATImage(const ImageInfo *image_info,ExceptionInfo *exception)
606 {
607   Image *image, *image2=NULL,
608    *rotated_image;
609   register Quantum *q;
610
611   unsigned int status;
612   MATHeader MATLAB_HDR;
613   size_t size;  
614   size_t CellType;
615   QuantumInfo *quantum_info;
616   ImageInfo *clone_info;
617   int i;
618   ssize_t ldblk;
619   unsigned char *BImgBuff = NULL;
620   double MinVal, MaxVal;
621   unsigned z, z2;
622   unsigned Frames;
623   int logging;
624   int sample_size;
625   MagickOffsetType filepos=0x80;
626   BlobInfo *blob;
627   size_t one;
628   
629   unsigned int (*ReadBlobXXXLong)(Image *image);
630   unsigned short (*ReadBlobXXXShort)(Image *image);
631   void (*ReadBlobDoublesXXX)(Image * image, size_t len, double *data);
632   void (*ReadBlobFloatsXXX)(Image * image, size_t len, float *data);
633
634
635   assert(image_info != (const ImageInfo *) NULL);
636   assert(image_info->signature == MagickSignature);
637   assert(exception != (ExceptionInfo *) NULL);
638   assert(exception->signature == MagickSignature);
639   logging = LogMagickEvent(CoderEvent,GetMagickModule(),"enter"); 
640
641   /*
642      Open image file.
643    */
644   image = AcquireImage(image_info,exception);
645
646   status = OpenBlob(image_info, image, ReadBinaryBlobMode, exception);
647   if (status == MagickFalse)
648     {
649       image=DestroyImageList(image);
650       return((Image *) NULL);
651     }
652   /*
653      Read MATLAB image.
654    */
655   clone_info=CloneImageInfo(image_info);
656   if(ReadBlob(image,124,(unsigned char *) &MATLAB_HDR.identific) != 124)
657     ThrowReaderException(CorruptImageError,"ImproperImageHeader");
658   MATLAB_HDR.Version = ReadBlobLSBShort(image);
659   if(ReadBlob(image,2,(unsigned char *) &MATLAB_HDR.EndianIndicator) != 2)
660     ThrowReaderException(CorruptImageError,"ImproperImageHeader");
661
662   if (logging) (void)LogMagickEvent(CoderEvent,GetMagickModule(),"  Endian %c%c",
663         MATLAB_HDR.EndianIndicator[0],MATLAB_HDR.EndianIndicator[1]);
664   if (!strncmp(MATLAB_HDR.EndianIndicator, "IM", 2))
665   {
666     ReadBlobXXXLong = ReadBlobLSBLong;
667     ReadBlobXXXShort = ReadBlobLSBShort;
668     ReadBlobDoublesXXX = ReadBlobDoublesLSB;
669     ReadBlobFloatsXXX = ReadBlobFloatsLSB;
670     image->endian = LSBEndian;
671   } 
672   else if (!strncmp(MATLAB_HDR.EndianIndicator, "MI", 2))
673   {
674     ReadBlobXXXLong = ReadBlobMSBLong;
675     ReadBlobXXXShort = ReadBlobMSBShort;
676     ReadBlobDoublesXXX = ReadBlobDoublesMSB;
677     ReadBlobFloatsXXX = ReadBlobFloatsMSB;
678     image->endian = MSBEndian;
679   }
680   else 
681     goto MATLAB_KO;    /* unsupported endian */
682
683   if (strncmp(MATLAB_HDR.identific, "MATLAB", 6))
684 MATLAB_KO: ThrowReaderException(CorruptImageError,"ImproperImageHeader");
685
686   filepos = TellBlob(image);
687   while(!EOFBlob(image)) /* object parser loop */
688   {
689     Frames = 1;
690     (void) SeekBlob(image,filepos,SEEK_SET);
691     /* printf("pos=%X\n",TellBlob(image)); */
692
693     MATLAB_HDR.DataType = ReadBlobXXXLong(image);
694     if(EOFBlob(image)) break;
695     MATLAB_HDR.ObjectSize = ReadBlobXXXLong(image);
696     if(EOFBlob(image)) break;
697     filepos += MATLAB_HDR.ObjectSize + 4 + 4;
698
699     image2 = image;
700 #if defined(MAGICKCORE_ZLIB_DELEGATE)
701     if(MATLAB_HDR.DataType == miCOMPRESSED)
702     {
703       image2 = DecompressBlock(image,MATLAB_HDR.ObjectSize,clone_info,exception);
704       if(image2==NULL) continue;
705       MATLAB_HDR.DataType = ReadBlobXXXLong(image2); /* replace compressed object type. */
706     }
707 #endif    
708
709     if(MATLAB_HDR.DataType!=miMATRIX) continue;  /* skip another objects. */
710  
711     MATLAB_HDR.unknown1 = ReadBlobXXXLong(image2);
712     MATLAB_HDR.unknown2 = ReadBlobXXXLong(image2);  
713
714     MATLAB_HDR.unknown5 = ReadBlobXXXLong(image2);
715     MATLAB_HDR.StructureClass = MATLAB_HDR.unknown5 & 0xFF;
716     MATLAB_HDR.StructureFlag = (MATLAB_HDR.unknown5>>8) & 0xFF;  
717
718     MATLAB_HDR.unknown3 = ReadBlobXXXLong(image2);
719     if(image!=image2)
720       MATLAB_HDR.unknown4 = ReadBlobXXXLong(image2);  /* ??? don't understand why ?? */
721     MATLAB_HDR.unknown4 = ReadBlobXXXLong(image2);
722     MATLAB_HDR.DimFlag = ReadBlobXXXLong(image2);
723     MATLAB_HDR.SizeX = ReadBlobXXXLong(image2);
724     MATLAB_HDR.SizeY = ReadBlobXXXLong(image2);  
725    
726
727     switch(MATLAB_HDR.DimFlag)
728     {     
729       case  8: z2=z=1; break;      /* 2D matrix*/
730       case 12: z2=z = ReadBlobXXXLong(image2);  /* 3D matrix RGB*/
731            (void) ReadBlobXXXLong(image2);
732          if(z!=3) ThrowReaderException(CoderError, "MultidimensionalMatricesAreNotSupported");
733          break;
734       case 16: z2=z = ReadBlobXXXLong(image2);  /* 4D matrix animation */
735          if(z!=3 && z!=1)
736             ThrowReaderException(CoderError, "MultidimensionalMatricesAreNotSupported");
737            Frames = ReadBlobXXXLong(image2);
738          break;
739       default: ThrowReaderException(CoderError, "MultidimensionalMatricesAreNotSupported");
740     }  
741
742     MATLAB_HDR.Flag1 = ReadBlobXXXShort(image2);
743     MATLAB_HDR.NameFlag = ReadBlobXXXShort(image2);
744
745     if (logging) (void)LogMagickEvent(CoderEvent,GetMagickModule(),
746           "MATLAB_HDR.StructureClass %d",MATLAB_HDR.StructureClass);
747     if (MATLAB_HDR.StructureClass != mxCHAR_CLASS && 
748         MATLAB_HDR.StructureClass != mxSINGLE_CLASS &&    /* float + complex float */
749         MATLAB_HDR.StructureClass != mxDOUBLE_CLASS &&    /* double + complex double */
750         MATLAB_HDR.StructureClass != mxINT8_CLASS &&
751         MATLAB_HDR.StructureClass != mxUINT8_CLASS &&    /* uint8 + uint8 3D */
752         MATLAB_HDR.StructureClass != mxINT16_CLASS &&
753         MATLAB_HDR.StructureClass != mxUINT16_CLASS &&    /* uint16 + uint16 3D */
754         MATLAB_HDR.StructureClass != mxINT32_CLASS &&
755         MATLAB_HDR.StructureClass != mxUINT32_CLASS &&    /* uint32 + uint32 3D */
756         MATLAB_HDR.StructureClass != mxINT64_CLASS &&
757         MATLAB_HDR.StructureClass != mxUINT64_CLASS)    /* uint64 + uint64 3D */
758       ThrowReaderException(CoderError,"UnsupportedCellTypeInTheMatrix");
759
760     switch (MATLAB_HDR.NameFlag)
761     {
762       case 0:
763         size = ReadBlobXXXLong(image2);  /* Object name string size */
764         size = 4 * (ssize_t) ((size + 3 + 1) / 4);
765         (void) SeekBlob(image2, size, SEEK_CUR);
766         break;
767       case 1:
768       case 2:
769       case 3:
770       case 4:
771         (void) ReadBlob(image2, 4, (unsigned char *) &size); /* Object name string */
772         break;
773       default:
774         goto MATLAB_KO;
775     }
776
777     CellType = ReadBlobXXXLong(image2);    /* Additional object type */
778     if (logging)
779       (void) LogMagickEvent(CoderEvent,GetMagickModule(),
780         "MATLAB_HDR.CellType: %.20g",(double) CellType);
781   
782     (void) ReadBlob(image2, 4, (unsigned char *) &size);     /* data size */
783
784     NEXT_FRAME:
785     switch (CellType)
786     {
787       case miINT8:
788       case miUINT8:
789         sample_size = 8;
790         if(MATLAB_HDR.StructureFlag & FLAG_LOGICAL) 
791           image->depth = 1;
792         else
793           image->depth = 8;         /* Byte type cell */
794         ldblk = (ssize_t) MATLAB_HDR.SizeX;      
795         break;
796       case miINT16:
797       case miUINT16:
798         sample_size = 16;
799         image->depth = 16;        /* Word type cell */
800         ldblk = (ssize_t) (2 * MATLAB_HDR.SizeX);
801         break;
802       case miINT32:
803       case miUINT32:
804         sample_size = 32;
805         image->depth = 32;        /* Dword type cell */
806         ldblk = (ssize_t) (4 * MATLAB_HDR.SizeX);      
807         break;
808       case miINT64:
809       case miUINT64:
810         sample_size = 64;
811         image->depth = 64;        /* Qword type cell */
812         ldblk = (ssize_t) (8 * MATLAB_HDR.SizeX);      
813         break;   
814       case miSINGLE:
815         sample_size = 32;
816         image->depth = 32;        /* double type cell */
817         (void) SetImageOption(clone_info,"quantum:format","floating-point");
818         if (MATLAB_HDR.StructureFlag & FLAG_COMPLEX)
819   {              /* complex float type cell */
820   }
821         ldblk = (ssize_t) (4 * MATLAB_HDR.SizeX);
822         break;
823       case miDOUBLE:
824         sample_size = 64; 
825         image->depth = 64;        /* double type cell */
826         (void) SetImageOption(clone_info,"quantum:format","floating-point");
827 DisableMSCWarning(4127)
828         if (sizeof(double) != 8)
829 RestoreMSCWarning
830           ThrowReaderException(CoderError, "IncompatibleSizeOfDouble");
831         if (MATLAB_HDR.StructureFlag & FLAG_COMPLEX)
832   {                         /* complex double type cell */        
833   }
834         ldblk = (ssize_t) (8 * MATLAB_HDR.SizeX);
835         break;
836       default:
837         ThrowReaderException(CoderError, "UnsupportedCellTypeInTheMatrix");
838     }
839     (void) sample_size;
840     image->columns = MATLAB_HDR.SizeX;
841     image->rows = MATLAB_HDR.SizeY;    
842     quantum_info=AcquireQuantumInfo(clone_info,image);
843     if (quantum_info == (QuantumInfo *) NULL)
844       ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
845     one=1;
846     image->colors = one << image->depth;
847     if (image->columns == 0 || image->rows == 0)
848       goto MATLAB_KO;
849     /* Image is gray when no complex flag is set and 2D Matrix */
850     if ((MATLAB_HDR.DimFlag == 8) &&
851         ((MATLAB_HDR.StructureFlag & FLAG_COMPLEX) == 0))
852       {
853         image->type=GrayscaleType;
854         SetImageColorspace(image,GRAYColorspace,exception);
855       }
856
857
858     /*
859       If ping is true, then only set image size and colors without
860       reading any image data.
861     */
862     if (image_info->ping)
863     {
864       size_t temp = image->columns;
865       image->columns = image->rows;
866       image->rows = temp;
867       goto done_reading; /* !!!!!! BAD  !!!! */
868     }  
869
870   /* ----- Load raster data ----- */
871     BImgBuff = (unsigned char *) AcquireQuantumMemory((size_t) (ldblk),sizeof(unsigned char));    /* Ldblk was set in the check phase */
872     if (BImgBuff == NULL)
873       ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
874
875     MinVal = 0;
876     MaxVal = 0;
877     if (CellType==miDOUBLE || CellType==miSINGLE)        /* Find Min and Max Values for floats */
878     {
879       CalcMinMax(image2, image_info->endian,  MATLAB_HDR.SizeX, MATLAB_HDR.SizeY, CellType, ldblk, BImgBuff, &quantum_info->minimum, &quantum_info->maximum);
880     }
881
882     /* Main loop for reading all scanlines */
883     if(z==1) z=0; /* read grey scanlines */
884     /* else read color scanlines */
885     do
886     {
887       for (i = 0; i < (ssize_t) MATLAB_HDR.SizeY; i++)
888       {
889         q=GetAuthenticPixels(image,0,MATLAB_HDR.SizeY-i-1,image->columns,1,exception);
890         if (q == (Quantum *) NULL)
891   {
892     if (logging) (void)LogMagickEvent(CoderEvent,GetMagickModule(),
893               "  MAT set image pixels returns unexpected NULL on a row %u.", (unsigned)(MATLAB_HDR.SizeY-i-1));
894     goto done_reading;    /* Skip image rotation, when cannot set image pixels    */
895   }
896         if(ReadBlob(image2,ldblk,(unsigned char *)BImgBuff) != (ssize_t) ldblk)
897   {
898     if (logging) (void)LogMagickEvent(CoderEvent,GetMagickModule(),
899              "  MAT cannot read scanrow %u from a file.", (unsigned)(MATLAB_HDR.SizeY-i-1));
900     goto ExitLoop;
901   }
902         if((CellType==miINT8 || CellType==miUINT8) && (MATLAB_HDR.StructureFlag & FLAG_LOGICAL))
903         {
904           FixLogical((unsigned char *)BImgBuff,ldblk);
905           if(ImportQuantumPixels(image,(CacheView *) NULL,quantum_info,z2qtype[z],BImgBuff,exception) <= 0)
906     {
907 ImportQuantumPixelsFailed:
908       if (logging) (void)LogMagickEvent(CoderEvent,GetMagickModule(),
909               "  MAT failed to ImportQuantumPixels for a row %u", (unsigned)(MATLAB_HDR.SizeY-i-1));
910       break;
911     }
912         }
913         else
914         {
915           if(ImportQuantumPixels(image,(CacheView *) NULL,quantum_info,z2qtype[z],BImgBuff,exception) <= 0)
916       goto ImportQuantumPixelsFailed;
917
918
919           if (z<=1 &&       /* fix only during a last pass z==0 || z==1 */
920           (CellType==miINT8 || CellType==miINT16 || CellType==miINT32 || CellType==miINT64))
921       FixSignedValues(image,q,MATLAB_HDR.SizeX);
922         }
923
924         if (!SyncAuthenticPixels(image,exception))
925   {
926     if (logging) (void)LogMagickEvent(CoderEvent,GetMagickModule(),
927             "  MAT failed to sync image pixels for a row %u", (unsigned)(MATLAB_HDR.SizeY-i-1));
928     goto ExitLoop;
929   }
930       }
931     } while(z-- >= 2);
932 ExitLoop:
933
934
935     /* Read complex part of numbers here */
936     if (MATLAB_HDR.StructureFlag & FLAG_COMPLEX)
937     {        /* Find Min and Max Values for complex parts of floats */
938       CellType = ReadBlobXXXLong(image2);    /* Additional object type */
939       i = ReadBlobXXXLong(image2);           /* size of a complex part - toss away*/
940
941       if (CellType==miDOUBLE || CellType==miSINGLE)
942       {
943         CalcMinMax(image2,  image_info->endian, MATLAB_HDR.SizeX, MATLAB_HDR.SizeY, CellType, ldblk, BImgBuff, &MinVal, &MaxVal);      
944       }
945
946       if (CellType==miDOUBLE)
947         for (i = 0; i < (ssize_t) MATLAB_HDR.SizeY; i++)
948   {
949           ReadBlobDoublesXXX(image2, ldblk, (double *)BImgBuff);
950           InsertComplexDoubleRow(image, (double *)BImgBuff, i, MinVal, MaxVal,
951             exception);
952   }
953
954       if (CellType==miSINGLE)
955         for (i = 0; i < (ssize_t) MATLAB_HDR.SizeY; i++)
956   {
957           ReadBlobFloatsXXX(image2, ldblk, (float *)BImgBuff);
958           InsertComplexFloatRow(image,(float *)BImgBuff,i,MinVal,MaxVal,
959             exception);
960   }    
961     }
962
963       /* Image is gray when no complex flag is set and 2D Matrix AGAIN!!! */
964     if ((MATLAB_HDR.DimFlag == 8) &&
965         ((MATLAB_HDR.StructureFlag & FLAG_COMPLEX) == 0))
966       image->type=GrayscaleType;
967     if (image->depth == 1)
968       image->type=BilevelType;
969
970     if(image2==image)
971         image2 = NULL;    /* Remove shadow copy to an image before rotation. */
972
973       /*  Rotate image. */
974     rotated_image = RotateImage(image, 90.0, exception);
975     if (rotated_image != (Image *) NULL)
976     {
977         /* Remove page offsets added by RotateImage */
978       rotated_image->page.x=0;
979       rotated_image->page.y=0;
980
981       blob = rotated_image->blob;
982       rotated_image->blob = image->blob;
983       rotated_image->colors = image->colors;
984       image->blob = blob;
985       AppendImageToList(&image,rotated_image);      
986       DeleteImageFromList(&image);      
987     }
988
989 done_reading:
990
991     if(image2!=NULL)
992       if(image2!=image)
993       {
994         DeleteImageFromList(&image2); 
995   if(clone_info)
996   {
997           if(clone_info->file)
998     {
999             fclose(clone_info->file);
1000             clone_info->file = NULL;
1001             (void) remove_utf8(clone_info->filename);
1002     }
1003         }    
1004       }
1005
1006       /* Allocate next image structure. */    
1007     AcquireNextImage(image_info,image,exception);
1008     if (image->next == (Image *) NULL) break;                
1009     image=SyncNextImageInList(image);
1010     image->columns=image->rows=0;
1011     image->colors=0;    
1012
1013       /* row scan buffer is no longer needed */
1014     RelinquishMagickMemory(BImgBuff);
1015     BImgBuff = NULL;
1016
1017     if(--Frames>0)
1018     {
1019       z = z2;
1020       if(image2==NULL) image2 = image;
1021       goto NEXT_FRAME;
1022     }
1023     if ((image2!=NULL) && (image2!=image))   /* Does shadow temporary decompressed image exist? */
1024       {
1025 /*  CloseBlob(image2); */
1026         DeleteImageFromList(&image2);
1027         if(clone_info)
1028         {
1029           if(clone_info->file)
1030           {
1031             fclose(clone_info->file);
1032             clone_info->file = NULL;
1033             (void) remove_utf8(clone_info->filename);
1034           }
1035         }
1036         }
1037   }
1038
1039   clone_info=DestroyImageInfo(clone_info);
1040   RelinquishMagickMemory(BImgBuff);
1041   CloseBlob(image);
1042
1043
1044   {
1045     Image *p;    
1046     ssize_t scene=0;
1047     
1048     /*
1049       Rewind list, removing any empty images while rewinding.
1050     */
1051     p=image;
1052     image=NULL;
1053     while (p != (Image *) NULL)
1054       {
1055         Image *tmp=p;
1056         if ((p->rows == 0) || (p->columns == 0)) {
1057           p=p->previous;
1058           DeleteImageFromList(&tmp);
1059         } else {
1060           image=p;
1061           p=p->previous;
1062         }
1063       }
1064     
1065     /*
1066       Fix scene numbers
1067     */
1068     for (p=image; p != (Image *) NULL; p=p->next)
1069       p->scene=scene++;
1070   }
1071
1072   if(clone_info != NULL)  /* cleanup garbage file from compression */
1073   {
1074     if(clone_info->file)
1075     {
1076       fclose(clone_info->file);
1077       clone_info->file = NULL;
1078       (void) remove_utf8(clone_info->filename);
1079     }
1080     DestroyImageInfo(clone_info);
1081     clone_info = NULL;
1082   }
1083   if (logging) (void)LogMagickEvent(CoderEvent,GetMagickModule(),"return");
1084   if(image==NULL)
1085     ThrowReaderException(CorruptImageError,"ImproperImageHeader");
1086   return (image);
1087 }
1088 \f
1089 /*
1090 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1091 %                                                                             %
1092 %                                                                             %
1093 %                                                                             %
1094 %   R e g i s t e r M A T I m a g e                                           %
1095 %                                                                             %
1096 %                                                                             %
1097 %                                                                             %
1098 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1099 %
1100 %  Method RegisterMATImage adds attributes for the MAT image format to
1101 %  the list of supported formats.  The attributes include the image format
1102 %  tag, a method to read and/or write the format, whether the format
1103 %  supports the saving of more than one frame to the same file or blob,
1104 %  whether the format supports native in-memory I/O, and a brief
1105 %  description of the format.
1106 %
1107 %  The format of the RegisterMATImage method is:
1108 %
1109 %      size_t RegisterMATImage(void)
1110 %
1111 */
1112 ModuleExport size_t RegisterMATImage(void)
1113 {
1114   MagickInfo
1115     *entry;
1116
1117   entry=SetMagickInfo("MAT");
1118   entry->decoder=(DecodeImageHandler *) ReadMATImage;
1119   entry->encoder=(EncodeImageHandler *) WriteMATImage;
1120   entry->blob_support=MagickFalse;
1121   entry->seekable_stream=MagickTrue;
1122   entry->description=AcquireString("MATLAB level 5 image format");
1123   entry->module=AcquireString("MAT");
1124   (void) RegisterMagickInfo(entry);
1125   return(MagickImageCoderSignature);
1126 }
1127 \f
1128 /*
1129 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1130 %                                                                             %
1131 %                                                                             %
1132 %                                                                             %
1133 %   U n r e g i s t e r M A T I m a g e                                       %
1134 %                                                                             %
1135 %                                                                             %
1136 %                                                                             %
1137 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1138 %
1139 %  Method UnregisterMATImage removes format registrations made by the
1140 %  MAT module from the list of supported formats.
1141 %
1142 %  The format of the UnregisterMATImage method is:
1143 %
1144 %      UnregisterMATImage(void)
1145 %
1146 */
1147 ModuleExport void UnregisterMATImage(void)
1148 {
1149   (void) UnregisterMagickInfo("MAT");
1150 }
1151 \f
1152 /*
1153 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1154 %                                                                             %
1155 %                                                                             %
1156 %                                                                             %
1157 %   W r i t e M A T L A B I m a g e                                           %
1158 %                                                                             %
1159 %                                                                             %
1160 %                                                                             %
1161 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1162 %
1163 %  Function WriteMATImage writes an Matlab matrix to a file.  
1164 %
1165 %  The format of the WriteMATImage method is:
1166 %
1167 %      MagickBooleanType WriteMATImage(const ImageInfo *image_info,
1168 %        Image *image,ExceptionInfo *exception)
1169 %
1170 %  A description of each parameter follows.
1171 %
1172 %    o image_info: Specifies a pointer to a ImageInfo structure.
1173 %
1174 %    o image:  A pointer to an Image structure.
1175 %
1176 %    o exception: return any errors or warnings in this structure.
1177 %
1178 */
1179 static MagickBooleanType WriteMATImage(const ImageInfo *image_info,Image *image,
1180   ExceptionInfo *exception)
1181 {
1182   ssize_t y;
1183   unsigned z;
1184   register const Quantum *p;
1185
1186   unsigned int status;
1187   int logging;
1188   size_t DataSize;
1189   char padding;
1190   char MATLAB_HDR[0x80];
1191   time_t current_time;
1192   struct tm local_time;
1193   unsigned char *pixels;
1194   int is_gray;
1195
1196   MagickOffsetType
1197     scene;
1198
1199   QuantumInfo
1200     *quantum_info;
1201
1202   /*
1203     Open output image file.
1204   */
1205   assert(image_info != (const ImageInfo *) NULL);
1206   assert(image_info->signature == MagickSignature);
1207   assert(image != (Image *) NULL);
1208   assert(image->signature == MagickSignature);
1209   logging=LogMagickEvent(CoderEvent,GetMagickModule(),"enter MAT");
1210   (void) logging;
1211   assert(exception != (ExceptionInfo *) NULL);
1212   assert(exception->signature == MagickSignature);
1213   status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
1214   if (status == MagickFalse)
1215     return(MagickFalse);
1216   image->depth=8;
1217
1218   current_time=time((time_t *) NULL);
1219 #if defined(MAGICKCORE_HAVE_LOCALTIME_R)
1220   (void) localtime_r(&current_time,&local_time);
1221 #else
1222   (void) memcpy(&local_time,localtime(&current_time),sizeof(local_time));
1223 #endif
1224   (void) memset(MATLAB_HDR,' ',MagickMin(sizeof(MATLAB_HDR),124));
1225   FormatLocaleString(MATLAB_HDR,sizeof(MATLAB_HDR),
1226     "MATLAB 5.0 MAT-file, Platform: %s, Created on: %s %s %2d %2d:%2d:%2d %d",
1227     OsDesc,DayOfWTab[local_time.tm_wday],MonthsTab[local_time.tm_mon],
1228     local_time.tm_mday,local_time.tm_hour,local_time.tm_min,
1229     local_time.tm_sec,local_time.tm_year+1900);
1230   MATLAB_HDR[0x7C]=0;
1231   MATLAB_HDR[0x7D]=1;
1232   MATLAB_HDR[0x7E]='I';
1233   MATLAB_HDR[0x7F]='M';
1234   (void) WriteBlob(image,sizeof(MATLAB_HDR),(unsigned char *) MATLAB_HDR);
1235   scene=0;
1236   do
1237   {
1238     (void) TransformImageColorspace(image,sRGBColorspace,exception);
1239     is_gray = IsImageGray(image,exception);
1240     z = is_gray ? 0 : 3;
1241
1242     /*
1243       Store MAT header.
1244     */
1245     DataSize = image->rows /*Y*/ * image->columns /*X*/;
1246     if(!is_gray) DataSize *= 3 /*Z*/;
1247     padding=((unsigned char)(DataSize-1) & 0x7) ^ 0x7;
1248
1249     (void) WriteBlobLSBLong(image, miMATRIX);
1250     (void) WriteBlobLSBLong(image, (unsigned int) DataSize+padding+(is_gray ? 48 : 56));
1251     (void) WriteBlobLSBLong(image, 0x6); /* 0x88 */
1252     (void) WriteBlobLSBLong(image, 0x8); /* 0x8C */
1253     (void) WriteBlobLSBLong(image, 0x6); /* 0x90 */  
1254     (void) WriteBlobLSBLong(image, 0);   
1255     (void) WriteBlobLSBLong(image, 0x5); /* 0x98 */
1256     (void) WriteBlobLSBLong(image, is_gray ? 0x8 : 0xC); /* 0x9C - DimFlag */
1257     (void) WriteBlobLSBLong(image, (unsigned int) image->rows);    /* x: 0xA0 */  
1258     (void) WriteBlobLSBLong(image, (unsigned int) image->columns); /* y: 0xA4 */  
1259     if(!is_gray)
1260     {
1261       (void) WriteBlobLSBLong(image, 3); /* z: 0xA8 */  
1262       (void) WriteBlobLSBLong(image, 0);
1263     }
1264     (void) WriteBlobLSBShort(image, 1);  /* 0xB0 */  
1265     (void) WriteBlobLSBShort(image, 1);  /* 0xB2 */
1266     (void) WriteBlobLSBLong(image, 'M'); /* 0xB4 */
1267     (void) WriteBlobLSBLong(image, 0x2); /* 0xB8 */  
1268     (void) WriteBlobLSBLong(image, (unsigned int) DataSize); /* 0xBC */
1269
1270     /*
1271       Store image data.
1272     */
1273     quantum_info=AcquireQuantumInfo(image_info,image);
1274     if (quantum_info == (QuantumInfo *) NULL)
1275       ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
1276     pixels=GetQuantumPixels(quantum_info);
1277     do
1278     {
1279       for (y=0; y < (ssize_t)image->columns; y++)
1280       {
1281         p=GetVirtualPixels(image,y,0,1,image->rows,exception);
1282         if (p == (const Quantum *) NULL)
1283           break;
1284         (void) ExportQuantumPixels(image,(CacheView *) NULL,quantum_info,
1285           z2qtype[z],pixels,exception);
1286         (void) WriteBlob(image,image->rows,pixels);
1287       }    
1288       if (SyncAuthenticPixels(image,exception) == MagickFalse)
1289         break;
1290     } while(z-- >= 2);
1291     while(padding-->0) (void) WriteBlobByte(image,0);
1292     quantum_info=DestroyQuantumInfo(quantum_info);
1293     if (GetNextImageInList(image) == (Image *) NULL)
1294       break;
1295     image=SyncNextImageInList(image);
1296     status=SetImageProgress(image,SaveImagesTag,scene++,
1297       GetImageListLength(image));
1298     if (status == MagickFalse)
1299       break;
1300   } while (image_info->adjoin != MagickFalse);
1301   (void) CloseBlob(image);
1302   return(MagickTrue);
1303 }