2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13 % Read/Write Magick Persistant Cache Image Format %
20 % Copyright 1999-2017 ImageMagick Studio LLC, a non-profit organization %
21 % dedicated to making software imaging solutions freely available. %
23 % You may not use this file except in compliance with the License. You may %
24 % obtain a copy of the License at %
26 % https://www.imagemagick.org/script/license.php %
28 % Unless required by applicable law or agreed to in writing, software %
29 % distributed under the License is distributed on an "AS IS" BASIS, %
30 % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31 % See the License for the specific language governing permissions and %
32 % limitations under the License. %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43 #include "MagickCore/studio.h"
44 #include "MagickCore/artifact.h"
45 #include "MagickCore/attribute.h"
46 #include "MagickCore/blob.h"
47 #include "MagickCore/blob-private.h"
48 #include "MagickCore/cache.h"
49 #include "MagickCore/color.h"
50 #include "MagickCore/color-private.h"
51 #include "MagickCore/colormap.h"
52 #include "MagickCore/constitute.h"
53 #include "MagickCore/exception.h"
54 #include "MagickCore/exception-private.h"
55 #include "MagickCore/geometry.h"
56 #include "MagickCore/image.h"
57 #include "MagickCore/image-private.h"
58 #include "MagickCore/linked-list.h"
59 #include "MagickCore/list.h"
60 #include "MagickCore/magick.h"
61 #include "MagickCore/memory_.h"
62 #include "MagickCore/module.h"
63 #include "MagickCore/monitor.h"
64 #include "MagickCore/monitor-private.h"
65 #include "MagickCore/option.h"
66 #include "MagickCore/profile.h"
67 #include "MagickCore/property.h"
68 #include "MagickCore/quantum-private.h"
69 #include "MagickCore/resource_.h"
70 #include "MagickCore/static.h"
71 #include "MagickCore/statistic.h"
72 #include "MagickCore/string_.h"
73 #include "MagickCore/string-private.h"
74 #include "MagickCore/utility.h"
75 #include "MagickCore/version-private.h"
80 static MagickBooleanType
81 WriteMPCImage(const ImageInfo *,Image *,ExceptionInfo *);
84 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
92 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
94 % IsMPC() returns MagickTrue if the image format type, identified by the
95 % magick string, is an Magick Persistent Cache image.
97 % The format of the IsMPC method is:
99 % MagickBooleanType IsMPC(const unsigned char *magick,const size_t length)
101 % A description of each parameter follows:
103 % o magick: compare image format pattern against these bytes.
105 % o length: Specifies the length of the magick string.
108 static MagickBooleanType IsMPC(const unsigned char *magick,const size_t length)
112 if (LocaleNCompare((const char *) magick,"id=MagickCache",14) == 0)
118 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
122 % R e a d C A C H E I m a g e %
126 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
128 % ReadMPCImage() reads an Magick Persistent Cache image file and returns
129 % it. It allocates the memory necessary for the new Image structure and
130 % returns a pointer to the new image.
132 % The format of the ReadMPCImage method is:
134 % Image *ReadMPCImage(const ImageInfo *image_info,ExceptionInfo *exception)
136 % Decompression code contributed by Kyle Shorter.
138 % A description of each parameter follows:
140 % o image_info: the image info.
142 % o exception: return any errors or warnings in this structure.
145 static Image *ReadMPCImage(const ImageInfo *image_info,ExceptionInfo *exception)
148 cache_filename[MagickPathExtent],
149 id[MagickPathExtent],
150 keyword[MagickPathExtent],
196 assert(image_info != (const ImageInfo *) NULL);
197 assert(image_info->signature == MagickCoreSignature);
198 if (image_info->debug != MagickFalse)
199 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
200 image_info->filename);
201 assert(exception != (ExceptionInfo *) NULL);
202 assert(exception->signature == MagickCoreSignature);
203 image=AcquireImage(image_info,exception);
204 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
205 if (status == MagickFalse)
207 image=DestroyImageList(image);
208 return((Image *) NULL);
210 (void) CopyMagickString(cache_filename,image->filename,MagickPathExtent);
211 AppendImageFormat("cache",cache_filename);
212 c=ReadBlobByte(image);
215 image=DestroyImage(image);
216 return((Image *) NULL);
219 (void) ResetMagickMemory(keyword,0,sizeof(keyword));
224 Decode image header; header terminates one character beyond a ':'.
226 profiles=(LinkedListInfo *) NULL;
227 length=MagickPathExtent;
228 options=AcquireString((char *) NULL);
229 signature=GetMagickSignature((const StringInfo *) NULL);
231 image->compression=NoCompression;
232 while ((isgraph(c) != MagickFalse) && (c != (int) ':'))
243 Read comment-- any text between { }.
245 length=MagickPathExtent;
246 comment=AcquireString((char *) NULL);
247 for (p=comment; comment != (char *) NULL; p++)
249 c=ReadBlobByte(image);
251 c=ReadBlobByte(image);
253 if ((c == EOF) || (c == (int) '}'))
255 if ((size_t) (p-comment+1) >= length)
259 comment=(char *) ResizeQuantumMemory(comment,length+
260 MagickPathExtent,sizeof(*comment));
261 if (comment == (char *) NULL)
263 p=comment+strlen(comment);
267 if (comment == (char *) NULL)
268 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
270 (void) SetImageProperty(image,"comment",comment,exception);
271 comment=DestroyString(comment);
272 c=ReadBlobByte(image);
275 if (isalnum(c) != MagickFalse)
280 length=MagickPathExtent;
286 if ((size_t) (p-keyword) < (MagickPathExtent-1))
288 c=ReadBlobByte(image);
292 while (isspace((int) ((unsigned char) c)) != 0)
293 c=ReadBlobByte(image);
297 Get the keyword value.
299 c=ReadBlobByte(image);
300 while ((c != (int) '}') && (c != EOF))
302 if ((size_t) (p-options+1) >= length)
306 options=(char *) ResizeQuantumMemory(options,length+
307 MagickPathExtent,sizeof(*options));
308 if (options == (char *) NULL)
310 p=options+strlen(options);
313 c=ReadBlobByte(image);
316 c=ReadBlobByte(image);
320 c=ReadBlobByte(image);
324 if (isspace((int) ((unsigned char) c)) != 0)
327 if (options == (char *) NULL)
328 ThrowReaderException(ResourceLimitError,
329 "MemoryAllocationFailed");
333 (void) CopyMagickString(options,options+1,strlen(options));
335 Assign a value to the specified keyword.
342 if (LocaleCompare(keyword,"alpha-trait") == 0)
347 alpha_trait=ParseCommandOption(MagickPixelTraitOptions,
348 MagickFalse,options);
351 image->alpha_trait=(PixelTrait) alpha_trait;
354 (void) SetImageProperty(image,keyword,options,exception);
360 if (LocaleCompare(keyword,"background-color") == 0)
362 (void) QueryColorCompliance(options,AllCompliance,
363 &image->background_color,exception);
366 if (LocaleCompare(keyword,"blue-primary") == 0)
368 flags=ParseGeometry(options,&geometry_info);
369 image->chromaticity.blue_primary.x=geometry_info.rho;
370 image->chromaticity.blue_primary.y=geometry_info.sigma;
371 if ((flags & SigmaValue) == 0)
372 image->chromaticity.blue_primary.y=
373 image->chromaticity.blue_primary.x;
376 if (LocaleCompare(keyword,"border-color") == 0)
378 (void) QueryColorCompliance(options,AllCompliance,
379 &image->border_color,exception);
382 (void) SetImageProperty(image,keyword,options,exception);
388 if (LocaleCompare(keyword,"class") == 0)
393 storage_class=ParseCommandOption(MagickClassOptions,
394 MagickFalse,options);
395 if (storage_class < 0)
397 image->storage_class=(ClassType) storage_class;
400 if (LocaleCompare(keyword,"colors") == 0)
402 image->colors=StringToUnsignedLong(options);
405 if (LocaleCompare(keyword,"colorspace") == 0)
410 colorspace=ParseCommandOption(MagickColorspaceOptions,
411 MagickFalse,options);
414 image->colorspace=(ColorspaceType) colorspace;
417 if (LocaleCompare(keyword,"compression") == 0)
422 compression=ParseCommandOption(MagickCompressOptions,
423 MagickFalse,options);
426 image->compression=(CompressionType) compression;
429 if (LocaleCompare(keyword,"columns") == 0)
431 image->columns=StringToUnsignedLong(options);
434 (void) SetImageProperty(image,keyword,options,exception);
440 if (LocaleCompare(keyword,"delay") == 0)
442 image->delay=StringToUnsignedLong(options);
445 if (LocaleCompare(keyword,"depth") == 0)
447 image->depth=StringToUnsignedLong(options);
450 if (LocaleCompare(keyword,"dispose") == 0)
455 dispose=ParseCommandOption(MagickDisposeOptions,MagickFalse,
459 image->dispose=(DisposeType) dispose;
462 (void) SetImageProperty(image,keyword,options,exception);
468 if (LocaleCompare(keyword,"endian") == 0)
473 endian=ParseCommandOption(MagickEndianOptions,MagickFalse,
477 image->endian=(EndianType) endian;
480 if (LocaleCompare(keyword,"error") == 0)
482 image->error.mean_error_per_pixel=StringToDouble(options,
486 (void) SetImageProperty(image,keyword,options,exception);
492 if (LocaleCompare(keyword,"gamma") == 0)
494 image->gamma=StringToDouble(options,(char **) NULL);
497 if (LocaleCompare(keyword,"green-primary") == 0)
499 flags=ParseGeometry(options,&geometry_info);
500 image->chromaticity.green_primary.x=geometry_info.rho;
501 image->chromaticity.green_primary.y=geometry_info.sigma;
502 if ((flags & SigmaValue) == 0)
503 image->chromaticity.green_primary.y=
504 image->chromaticity.green_primary.x;
507 (void) SetImageProperty(image,keyword,options,exception);
513 if (LocaleCompare(keyword,"id") == 0)
515 (void) CopyMagickString(id,options,MagickPathExtent);
518 if (LocaleCompare(keyword,"iterations") == 0)
520 image->iterations=StringToUnsignedLong(options);
523 (void) SetImageProperty(image,keyword,options,exception);
529 if (LocaleCompare(keyword,"magick-signature") == 0)
531 signature=(unsigned int) StringToUnsignedLong(options);
534 if (LocaleCompare(keyword,"mattecolor") == 0)
536 (void) QueryColorCompliance(options,AllCompliance,
537 &image->matte_color,exception);
540 if (LocaleCompare(keyword,"maximum-error") == 0)
542 image->error.normalized_maximum_error=StringToDouble(
543 options,(char **) NULL);
546 if (LocaleCompare(keyword,"mean-error") == 0)
548 image->error.normalized_mean_error=StringToDouble(options,
552 if (LocaleCompare(keyword,"montage") == 0)
554 (void) CloneString(&image->montage,options);
557 (void) SetImageProperty(image,keyword,options,exception);
563 if (LocaleCompare(keyword,"number-channels") == 0)
565 image->number_channels=StringToUnsignedLong(options);
568 if (LocaleCompare(keyword,"number-meta-channels") == 0)
570 image->number_meta_channels=StringToUnsignedLong(options);
571 if (image->number_meta_channels > MaxPixelChannels)
572 ThrowReaderException(CorruptImageError,
573 "ImproperImageHeader");
581 if (LocaleCompare(keyword,"orientation") == 0)
586 orientation=ParseCommandOption(MagickOrientationOptions,
587 MagickFalse,options);
590 image->orientation=(OrientationType) orientation;
593 (void) SetImageProperty(image,keyword,options,exception);
599 if (LocaleCompare(keyword,"page") == 0)
604 geometry=GetPageGeometry(options);
605 (void) ParseAbsoluteGeometry(geometry,&image->page);
606 geometry=DestroyString(geometry);
609 if (LocaleCompare(keyword,"pixel-intensity") == 0)
614 intensity=ParseCommandOption(MagickPixelIntensityOptions,
615 MagickFalse,options);
618 image->intensity=(PixelIntensityMethod) intensity;
621 if ((LocaleNCompare(keyword,"profile:",8) == 0) ||
622 (LocaleNCompare(keyword,"profile-",8) == 0))
624 if (profiles == (LinkedListInfo *) NULL)
625 profiles=NewLinkedList(0);
626 (void) AppendValueToLinkedList(profiles,
627 AcquireString(keyword+8));
628 profile=BlobToStringInfo((const void *) NULL,(size_t)
629 StringToLong(options));
630 if (profile == (StringInfo *) NULL)
631 ThrowReaderException(ResourceLimitError,
632 "MemoryAllocationFailed");
633 (void) SetImageProfile(image,keyword+8,profile,exception);
634 profile=DestroyStringInfo(profile);
637 (void) SetImageProperty(image,keyword,options,exception);
643 if (LocaleCompare(keyword,"quality") == 0)
645 image->quality=StringToUnsignedLong(options);
648 (void) SetImageProperty(image,keyword,options,exception);
654 if (LocaleCompare(keyword,"red-primary") == 0)
656 flags=ParseGeometry(options,&geometry_info);
657 image->chromaticity.red_primary.x=geometry_info.rho;
658 if ((flags & SigmaValue) != 0)
659 image->chromaticity.red_primary.y=geometry_info.sigma;
662 if (LocaleCompare(keyword,"rendering-intent") == 0)
667 rendering_intent=ParseCommandOption(MagickIntentOptions,
668 MagickFalse,options);
669 if (rendering_intent < 0)
671 image->rendering_intent=(RenderingIntent) rendering_intent;
674 if (LocaleCompare(keyword,"resolution") == 0)
676 flags=ParseGeometry(options,&geometry_info);
677 image->resolution.x=geometry_info.rho;
678 image->resolution.y=geometry_info.sigma;
679 if ((flags & SigmaValue) == 0)
680 image->resolution.y=image->resolution.x;
683 if (LocaleCompare(keyword,"rows") == 0)
685 image->rows=StringToUnsignedLong(options);
688 (void) SetImageProperty(image,keyword,options,exception);
694 if (LocaleCompare(keyword,"scene") == 0)
696 image->scene=StringToUnsignedLong(options);
699 (void) SetImageProperty(image,keyword,options,exception);
705 if (LocaleCompare(keyword,"ticks-per-second") == 0)
707 image->ticks_per_second=(ssize_t) StringToLong(options);
710 if (LocaleCompare(keyword,"tile-offset") == 0)
715 geometry=GetPageGeometry(options);
716 (void) ParseAbsoluteGeometry(geometry,&image->tile_offset);
717 geometry=DestroyString(geometry);
719 if (LocaleCompare(keyword,"type") == 0)
724 type=ParseCommandOption(MagickTypeOptions,MagickFalse,
728 image->type=(ImageType) type;
731 (void) SetImageProperty(image,keyword,options,exception);
737 if (LocaleCompare(keyword,"units") == 0)
742 units=ParseCommandOption(MagickResolutionOptions,
743 MagickFalse,options);
746 image->units=(ResolutionType) units;
749 (void) SetImageProperty(image,keyword,options,exception);
755 if (LocaleCompare(keyword,"white-point") == 0)
757 flags=ParseGeometry(options,&geometry_info);
758 image->chromaticity.white_point.x=geometry_info.rho;
759 image->chromaticity.white_point.y=geometry_info.sigma;
760 if ((flags & SigmaValue) == 0)
761 image->chromaticity.white_point.y=
762 image->chromaticity.white_point.x;
765 (void) SetImageProperty(image,keyword,options,exception);
770 (void) SetImageProperty(image,keyword,options,exception);
776 c=ReadBlobByte(image);
777 while (isspace((int) ((unsigned char) c)) != 0)
778 c=ReadBlobByte(image);
780 options=DestroyString(options);
781 (void) ReadBlobByte(image);
783 Verify that required image information is defined.
785 if ((LocaleCompare(id,"MagickCache") != 0) ||
786 (image->storage_class == UndefinedClass) ||
787 (image->compression == UndefinedCompression) || (image->columns == 0) ||
789 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
790 if (signature != GetMagickSignature((const StringInfo *) NULL))
791 ThrowReaderException(CacheError,"IncompatibleAPI");
792 if (image->montage != (char *) NULL)
800 length=MagickPathExtent;
801 image->directory=AcquireString((char *) NULL);
806 if ((strlen(image->directory)+MagickPathExtent) >= length)
809 Allocate more memory for the image directory.
812 image->directory=(char *) ResizeQuantumMemory(image->directory,
813 length+MagickPathExtent,sizeof(*image->directory));
814 if (image->directory == (char *) NULL)
815 ThrowReaderException(CorruptImageError,"UnableToReadImageData");
816 p=image->directory+strlen(image->directory);
818 c=ReadBlobByte(image);
820 } while (c != (int) '\0');
822 if (profiles != (LinkedListInfo *) NULL)
830 register unsigned char
836 ResetLinkedListIterator(profiles);
837 name=(const char *) GetNextValueInLinkedList(profiles);
838 while (name != (const char *) NULL)
840 profile=GetImageProfile(image,name);
841 if (profile != (StringInfo *) NULL)
843 p=GetStringInfoDatum(profile);
844 count=ReadBlob(image,GetStringInfoLength(profile),p);
846 name=(const char *) GetNextValueInLinkedList(profiles);
848 profiles=DestroyLinkedList(profiles,RelinquishMagickMemory);
850 depth=GetImageQuantumDepth(image,MagickFalse);
851 if (image->storage_class == PseudoClass)
860 Create image colormap.
862 packet_size=(size_t) (3UL*depth/8UL);
863 if ((packet_size*image->colors) > GetBlobSize(image))
864 ThrowReaderException(CorruptImageError,"InsufficientImageDataInFile");
865 image->colormap=(PixelInfo *) AcquireQuantumMemory(image->colors+1,
866 sizeof(*image->colormap));
867 if (image->colormap == (PixelInfo *) NULL)
868 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
869 if (image->colors != 0)
872 Read image colormap from file.
874 colormap=(unsigned char *) AcquireQuantumMemory(image->colors,
875 packet_size*sizeof(*colormap));
876 if (colormap == (unsigned char *) NULL)
877 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
878 count=ReadBlob(image,packet_size*image->colors,colormap);
879 if (count != (ssize_t) (packet_size*image->colors))
881 colormap=(unsigned char *) RelinquishMagickMemory(colormap);
882 ThrowReaderException(CorruptImageError,
883 "InsufficientImageDataInFile");
889 colormap=(unsigned char *) RelinquishMagickMemory(colormap);
890 ThrowReaderException(CorruptImageError,
891 "ImageDepthNotSupported");
897 for (i=0; i < (ssize_t) image->colors; i++)
899 p=PushCharPixel(p,&pixel);
900 image->colormap[i].red=ScaleCharToQuantum(pixel);
901 p=PushCharPixel(p,&pixel);
902 image->colormap[i].green=ScaleCharToQuantum(pixel);
903 p=PushCharPixel(p,&pixel);
904 image->colormap[i].blue=ScaleCharToQuantum(pixel);
913 for (i=0; i < (ssize_t) image->colors; i++)
915 p=PushShortPixel(MSBEndian,p,&pixel);
916 image->colormap[i].red=ScaleShortToQuantum(pixel);
917 p=PushShortPixel(MSBEndian,p,&pixel);
918 image->colormap[i].green=ScaleShortToQuantum(pixel);
919 p=PushShortPixel(MSBEndian,p,&pixel);
920 image->colormap[i].blue=ScaleShortToQuantum(pixel);
929 for (i=0; i < (ssize_t) image->colors; i++)
931 p=PushLongPixel(MSBEndian,p,&pixel);
932 image->colormap[i].red=ScaleLongToQuantum(pixel);
933 p=PushLongPixel(MSBEndian,p,&pixel);
934 image->colormap[i].green=ScaleLongToQuantum(pixel);
935 p=PushLongPixel(MSBEndian,p,&pixel);
936 image->colormap[i].blue=ScaleLongToQuantum(pixel);
941 colormap=(unsigned char *) RelinquishMagickMemory(colormap);
944 if (EOFBlob(image) != MagickFalse)
946 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
950 if ((image_info->ping != MagickFalse) && (image_info->number_scenes != 0))
951 if (image->scene >= (image_info->scene+image_info->number_scenes-1))
953 if ((AcquireMagickResource(WidthResource,image->columns) == MagickFalse) ||
954 (AcquireMagickResource(HeightResource,image->rows) == MagickFalse))
955 ThrowReaderException(ImageError,"WidthOrHeightExceedsLimit");
957 Attach persistent pixel cache.
959 status=PersistPixelCache(image,cache_filename,MagickTrue,&offset,exception);
960 if (status == MagickFalse)
961 ThrowReaderException(CacheError,"UnableToPersistPixelCache");
963 Proceed to next image.
967 c=ReadBlobByte(image);
968 } while ((isgraph(c) == MagickFalse) && (c != EOF));
972 Allocate next image structure.
974 AcquireNextImage(image_info,image,exception);
975 if (GetNextImageInList(image) == (Image *) NULL)
977 image=DestroyImageList(image);
978 return((Image *) NULL);
980 image=SyncNextImageInList(image);
981 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
983 if (status == MagickFalse)
987 (void) CloseBlob(image);
988 return(GetFirstImageInList(image));
992 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
996 % R e g i s t e r M P C I m a g e %
1000 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1002 % RegisterMPCImage() adds properties for the Cache image format to
1003 % the list of supported formats. The properties include the image format
1004 % tag, a method to read and/or write the format, whether the format
1005 % supports the saving of more than one frame to the same file or blob,
1006 % whether the format supports native in-memory I/O, and a brief
1007 % description of the format.
1009 % The format of the RegisterMPCImage method is:
1011 % size_t RegisterMPCImage(void)
1014 ModuleExport size_t RegisterMPCImage(void)
1019 entry=AcquireMagickInfo("MPC","CACHE",
1020 "Magick Persistent Cache image format");
1021 entry->flags|=CoderStealthFlag;
1022 (void) RegisterMagickInfo(entry);
1023 entry=AcquireMagickInfo("MPC","MPC","Magick Persistent Cache image format");
1024 entry->decoder=(DecodeImageHandler *) ReadMPCImage;
1025 entry->encoder=(EncodeImageHandler *) WriteMPCImage;
1026 entry->magick=(IsImageFormatHandler *) IsMPC;
1027 entry->flags|=CoderDecoderSeekableStreamFlag;
1028 (void) RegisterMagickInfo(entry);
1029 return(MagickImageCoderSignature);
1033 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1037 % U n r e g i s t e r M P C I m a g e %
1041 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1043 % UnregisterMPCImage() removes format registrations made by the
1044 % MPC module from the list of supported formats.
1046 % The format of the UnregisterMPCImage method is:
1048 % UnregisterMPCImage(void)
1051 ModuleExport void UnregisterMPCImage(void)
1053 (void) UnregisterMagickInfo("CACHE");
1054 (void) UnregisterMagickInfo("MPC");
1058 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1062 % W r i t e M P C I m a g e %
1066 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1068 % WriteMPCImage() writes an Magick Persistent Cache image to a file.
1070 % The format of the WriteMPCImage method is:
1072 % MagickBooleanType WriteMPCImage(const ImageInfo *image_info,
1073 % Image *image,ExceptionInfo *exception)
1075 % A description of each parameter follows:
1077 % o image_info: the image info.
1079 % o image: the image.
1081 % o exception: return any errors or warnings in this structure.
1084 static MagickBooleanType WriteMPCImage(const ImageInfo *image_info,Image *image,
1085 ExceptionInfo *exception)
1088 buffer[MagickPathExtent],
1089 cache_filename[MagickPathExtent];
1109 Open persistent cache.
1111 assert(image_info != (const ImageInfo *) NULL);
1112 assert(image_info->signature == MagickCoreSignature);
1113 assert(image != (Image *) NULL);
1114 assert(image->signature == MagickCoreSignature);
1115 if (image->debug != MagickFalse)
1116 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1117 assert(exception != (ExceptionInfo *) NULL);
1118 assert(exception->signature == MagickCoreSignature);
1119 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
1120 if (status == MagickFalse)
1122 (void) CopyMagickString(cache_filename,image->filename,MagickPathExtent);
1123 AppendImageFormat("cache",cache_filename);
1129 Write persistent cache meta-information.
1131 depth=GetImageQuantumDepth(image,MagickTrue);
1132 if ((image->storage_class == PseudoClass) &&
1133 (image->colors > (size_t) (GetQuantumRange(image->depth)+1)))
1134 (void) SetImageStorageClass(image,DirectClass,exception);
1135 (void) WriteBlobString(image,"id=MagickCache\n");
1136 (void) FormatLocaleString(buffer,MagickPathExtent,"magick-signature=%u\n",
1137 GetMagickSignature((const StringInfo *) NULL));
1138 (void) WriteBlobString(image,buffer);
1139 (void) FormatLocaleString(buffer,MagickPathExtent,
1140 "class=%s colors=%.20g alpha-trait=%s\n",CommandOptionToMnemonic(
1141 MagickClassOptions,image->storage_class),(double) image->colors,
1142 CommandOptionToMnemonic(MagickPixelTraitOptions,(ssize_t)
1143 image->alpha_trait));
1144 (void) WriteBlobString(image,buffer);
1145 (void) FormatLocaleString(buffer,MagickPathExtent,
1146 "number-channels=%.20g number-meta-channels=%.20g\n",
1147 (double) image->number_channels,(double) image->number_meta_channels);
1148 (void) WriteBlobString(image,buffer);
1149 (void) FormatLocaleString(buffer,MagickPathExtent,
1150 "columns=%.20g rows=%.20g depth=%.20g\n",(double) image->columns,
1151 (double) image->rows,(double) image->depth);
1152 (void) WriteBlobString(image,buffer);
1153 if (image->type != UndefinedType)
1155 (void) FormatLocaleString(buffer,MagickPathExtent,"type=%s\n",
1156 CommandOptionToMnemonic(MagickTypeOptions,image->type));
1157 (void) WriteBlobString(image,buffer);
1159 (void) FormatLocaleString(buffer,MagickPathExtent,"colorspace=%s\n",
1160 CommandOptionToMnemonic(MagickColorspaceOptions,image->colorspace));
1161 (void) WriteBlobString(image,buffer);
1162 if (image->intensity != UndefinedPixelIntensityMethod)
1164 (void) FormatLocaleString(buffer,MagickPathExtent,
1165 "pixel-intensity=%s\n",CommandOptionToMnemonic(
1166 MagickPixelIntensityOptions,image->intensity));
1167 (void) WriteBlobString(image,buffer);
1169 if (image->endian != UndefinedEndian)
1171 (void) FormatLocaleString(buffer,MagickPathExtent,"endian=%s\n",
1172 CommandOptionToMnemonic(MagickEndianOptions,image->endian));
1173 (void) WriteBlobString(image,buffer);
1175 if (image->compression != UndefinedCompression)
1177 (void) FormatLocaleString(buffer,MagickPathExtent,
1178 "compression=%s quality=%.20g\n",CommandOptionToMnemonic(
1179 MagickCompressOptions,image->compression),(double) image->quality);
1180 (void) WriteBlobString(image,buffer);
1182 if (image->units != UndefinedResolution)
1184 (void) FormatLocaleString(buffer,MagickPathExtent,"units=%s\n",
1185 CommandOptionToMnemonic(MagickResolutionOptions,image->units));
1186 (void) WriteBlobString(image,buffer);
1188 if ((image->resolution.x != 0) || (image->resolution.y != 0))
1190 (void) FormatLocaleString(buffer,MagickPathExtent,
1191 "resolution=%gx%g\n",image->resolution.x,image->resolution.y);
1192 (void) WriteBlobString(image,buffer);
1194 if ((image->page.width != 0) || (image->page.height != 0))
1196 (void) FormatLocaleString(buffer,MagickPathExtent,
1197 "page=%.20gx%.20g%+.20g%+.20g\n",(double) image->page.width,(double)
1198 image->page.height,(double) image->page.x,(double) image->page.y);
1199 (void) WriteBlobString(image,buffer);
1202 if ((image->page.x != 0) || (image->page.y != 0))
1204 (void) FormatLocaleString(buffer,MagickPathExtent,"page=%+ld%+ld\n",
1205 (long) image->page.x,(long) image->page.y);
1206 (void) WriteBlobString(image,buffer);
1208 if ((image->tile_offset.x != 0) || (image->tile_offset.y != 0))
1210 (void) FormatLocaleString(buffer,MagickPathExtent,
1211 "tile-offset=%+ld%+ld\n",(long) image->tile_offset.x,(long)
1212 image->tile_offset.y);
1213 (void) WriteBlobString(image,buffer);
1215 if ((GetNextImageInList(image) != (Image *) NULL) ||
1216 (GetPreviousImageInList(image) != (Image *) NULL))
1218 if (image->scene == 0)
1219 (void) FormatLocaleString(buffer,MagickPathExtent,
1220 "iterations=%.20g delay=%.20g ticks-per-second=%.20g\n",(double)
1221 image->iterations,(double) image->delay,(double)
1222 image->ticks_per_second);
1224 (void) FormatLocaleString(buffer,MagickPathExtent,"scene=%.20g "
1225 "iterations=%.20g delay=%.20g ticks-per-second=%.20g\n",
1226 (double) image->scene,(double) image->iterations,(double)
1227 image->delay,(double) image->ticks_per_second);
1228 (void) WriteBlobString(image,buffer);
1232 if (image->scene != 0)
1234 (void) FormatLocaleString(buffer,MagickPathExtent,"scene=%.20g\n",
1235 (double) image->scene);
1236 (void) WriteBlobString(image,buffer);
1238 if (image->iterations != 0)
1240 (void) FormatLocaleString(buffer,MagickPathExtent,
1241 "iterations=%.20g\n",(double) image->iterations);
1242 (void) WriteBlobString(image,buffer);
1244 if (image->delay != 0)
1246 (void) FormatLocaleString(buffer,MagickPathExtent,"delay=%.20g\n",
1247 (double) image->delay);
1248 (void) WriteBlobString(image,buffer);
1250 if (image->ticks_per_second != UndefinedTicksPerSecond)
1252 (void) FormatLocaleString(buffer,MagickPathExtent,
1253 "ticks-per-second=%.20g\n",(double) image->ticks_per_second);
1254 (void) WriteBlobString(image,buffer);
1257 if (image->gravity != UndefinedGravity)
1259 (void) FormatLocaleString(buffer,MagickPathExtent,"gravity=%s\n",
1260 CommandOptionToMnemonic(MagickGravityOptions,image->gravity));
1261 (void) WriteBlobString(image,buffer);
1263 if (image->dispose != UndefinedDispose)
1265 (void) FormatLocaleString(buffer,MagickPathExtent,"dispose=%s\n",
1266 CommandOptionToMnemonic(MagickDisposeOptions,image->dispose));
1267 (void) WriteBlobString(image,buffer);
1269 if (image->rendering_intent != UndefinedIntent)
1271 (void) FormatLocaleString(buffer,MagickPathExtent,
1272 "rendering-intent=%s\n",CommandOptionToMnemonic(MagickIntentOptions,
1273 image->rendering_intent));
1274 (void) WriteBlobString(image,buffer);
1276 if (image->gamma != 0.0)
1278 (void) FormatLocaleString(buffer,MagickPathExtent,"gamma=%g\n",
1280 (void) WriteBlobString(image,buffer);
1282 if (image->chromaticity.white_point.x != 0.0)
1285 Note chomaticity points.
1287 (void) FormatLocaleString(buffer,MagickPathExtent,"red-primary="
1288 "%g,%g green-primary=%g,%g blue-primary=%g,%g\n",
1289 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y,
1290 image->chromaticity.green_primary.x,
1291 image->chromaticity.green_primary.y,
1292 image->chromaticity.blue_primary.x,
1293 image->chromaticity.blue_primary.y);
1294 (void) WriteBlobString(image,buffer);
1295 (void) FormatLocaleString(buffer,MagickPathExtent,
1296 "white-point=%g,%g\n",image->chromaticity.white_point.x,
1297 image->chromaticity.white_point.y);
1298 (void) WriteBlobString(image,buffer);
1300 if (image->orientation != UndefinedOrientation)
1302 (void) FormatLocaleString(buffer,MagickPathExtent,
1303 "orientation=%s\n",CommandOptionToMnemonic(MagickOrientationOptions,
1304 image->orientation));
1305 (void) WriteBlobString(image,buffer);
1307 if (image->profiles != (void *) NULL)
1318 ResetImageProfileIterator(image);
1319 for (name=GetNextImageProfile(image); name != (const char *) NULL; )
1321 profile=GetImageProfile(image,name);
1322 if (profile != (StringInfo *) NULL)
1324 (void) FormatLocaleString(buffer,MagickPathExtent,
1325 "profile:%s=%.20g\n",name,(double)
1326 GetStringInfoLength(profile));
1327 (void) WriteBlobString(image,buffer);
1329 name=GetNextImageProfile(image);
1332 if (image->montage != (char *) NULL)
1334 (void) FormatLocaleString(buffer,MagickPathExtent,"montage=%s\n",
1336 (void) WriteBlobString(image,buffer);
1338 ResetImagePropertyIterator(image);
1339 property=GetNextImageProperty(image);
1340 while (property != (const char *) NULL)
1342 (void) FormatLocaleString(buffer,MagickPathExtent,"%s=",property);
1343 (void) WriteBlobString(image,buffer);
1344 value=GetImageProperty(image,property,exception);
1345 if (value != (const char *) NULL)
1350 length=strlen(value);
1351 for (i=0; i < (ssize_t) length; i++)
1352 if (isspace((int) ((unsigned char) value[i])) != 0)
1354 if ((i == (ssize_t) length) && (i != 0))
1355 (void) WriteBlob(image,length,(const unsigned char *) value);
1358 (void) WriteBlobByte(image,'{');
1359 if (strchr(value,'}') == (char *) NULL)
1360 (void) WriteBlob(image,length,(const unsigned char *) value);
1362 for (i=0; i < (ssize_t) length; i++)
1364 if (value[i] == (int) '}')
1365 (void) WriteBlobByte(image,'\\');
1366 (void) WriteBlobByte(image,value[i]);
1368 (void) WriteBlobByte(image,'}');
1371 (void) WriteBlobByte(image,'\n');
1372 property=GetNextImageProperty(image);
1374 (void) WriteBlobString(image,"\f\n:\032");
1375 if (image->montage != (char *) NULL)
1378 Write montage tile directory.
1380 if (image->directory != (char *) NULL)
1381 (void) WriteBlobString(image,image->directory);
1382 (void) WriteBlobByte(image,'\0');
1384 if (image->profiles != 0)
1393 Write image profiles.
1395 ResetImageProfileIterator(image);
1396 name=GetNextImageProfile(image);
1397 while (name != (const char *) NULL)
1399 profile=GetImageProfile(image,name);
1400 (void) WriteBlob(image,GetStringInfoLength(profile),
1401 GetStringInfoDatum(profile));
1402 name=GetNextImageProfile(image);
1405 if (image->storage_class == PseudoClass)
1417 packet_size=(size_t) (3UL*depth/8UL);
1418 colormap=(unsigned char *) AcquireQuantumMemory(image->colors,
1419 packet_size*sizeof(*colormap));
1420 if (colormap == (unsigned char *) NULL)
1421 return(MagickFalse);
1423 Write colormap to file.
1426 for (i=0; i < (ssize_t) image->colors; i++)
1431 ThrowWriterException(CorruptImageError,"ImageDepthNotSupported");
1437 pixel=ScaleQuantumToLong(image->colormap[i].red);
1438 q=PopLongPixel(MSBEndian,pixel,q);
1439 pixel=ScaleQuantumToLong(image->colormap[i].green);
1440 q=PopLongPixel(MSBEndian,pixel,q);
1441 pixel=ScaleQuantumToLong(image->colormap[i].blue);
1442 q=PopLongPixel(MSBEndian,pixel,q);
1450 pixel=ScaleQuantumToShort(image->colormap[i].red);
1451 q=PopShortPixel(MSBEndian,pixel,q);
1452 pixel=ScaleQuantumToShort(image->colormap[i].green);
1453 q=PopShortPixel(MSBEndian,pixel,q);
1454 pixel=ScaleQuantumToShort(image->colormap[i].blue);
1455 q=PopShortPixel(MSBEndian,pixel,q);
1463 pixel=(unsigned char) ScaleQuantumToChar(image->colormap[i].red);
1464 q=PopCharPixel(pixel,q);
1465 pixel=(unsigned char) ScaleQuantumToChar(
1466 image->colormap[i].green);
1467 q=PopCharPixel(pixel,q);
1468 pixel=(unsigned char) ScaleQuantumToChar(image->colormap[i].blue);
1469 q=PopCharPixel(pixel,q);
1474 (void) WriteBlob(image,packet_size*image->colors,colormap);
1475 colormap=(unsigned char *) RelinquishMagickMemory(colormap);
1478 Initialize persistent pixel cache.
1480 status=PersistPixelCache(image,cache_filename,MagickFalse,&offset,
1482 if (GetNextImageInList(image) == (Image *) NULL)
1484 image=SyncNextImageInList(image);
1485 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1487 status=image->progress_monitor(SaveImagesTag,scene,
1488 GetImageListLength(image),image->client_data);
1489 if (status == MagickFalse)
1493 } while (image_info->adjoin != MagickFalse);
1494 (void) CloseBlob(image);