File indexing completed on 2025-01-18 10:01:23
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef MAGICKCORE_PROPERTY_H
0019 #define MAGICKCORE_PROPERTY_H
0020
0021 #if defined(__cplusplus) || defined(c_plusplus)
0022 extern "C" {
0023 #endif
0024
0025 extern MagickExport char
0026 *InterpretImageProperties(ImageInfo *,Image *,const char *,
0027 ExceptionInfo *),
0028 *RemoveImageProperty(Image *,const char *);
0029
0030 extern MagickExport const char
0031 *GetNextImageProperty(const Image *),
0032 *GetImageProperty(const Image *,const char *,ExceptionInfo *),
0033 *GetMagickProperty(ImageInfo *,Image *,const char *,ExceptionInfo *);
0034
0035 extern MagickExport MagickBooleanType
0036 CloneImageProperties(Image *,const Image *),
0037 DefineImageProperty(Image *,const char *,ExceptionInfo *),
0038 DeleteImageProperty(Image *,const char *),
0039 FormatImageProperty(Image *,const char *,const char *,...)
0040 magick_attribute((__format__ (__printf__,3,4))),
0041 SetImageProperty(Image *,const char *,const char *,ExceptionInfo *);
0042
0043 extern MagickExport void
0044 DestroyImageProperties(Image *),
0045 ResetImagePropertyIterator(const Image *);
0046
0047 #if defined(__cplusplus) || defined(c_plusplus)
0048 }
0049 #endif
0050
0051 #endif