File indexing completed on 2025-01-18 10:01:20
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef MAGICKCORE_CONSTITUTE_H
0019 #define MAGICKCORE_CONSTITUTE_H
0020
0021 #include "MagickCore/pixel.h"
0022
0023 #if defined(__cplusplus) || defined(c_plusplus)
0024 extern "C" {
0025 #endif
0026
0027 extern MagickExport Image
0028 *ConstituteImage(const size_t,const size_t,const char *,const StorageType,
0029 const void *,ExceptionInfo *),
0030 *PingImage(const ImageInfo *,ExceptionInfo *),
0031 *PingImages(ImageInfo *,const char *,ExceptionInfo *),
0032 *ReadImage(const ImageInfo *,ExceptionInfo *),
0033 *ReadImages(ImageInfo *,const char *,ExceptionInfo *),
0034 *ReadInlineImage(const ImageInfo *,const char *,ExceptionInfo *);
0035
0036 extern MagickExport MagickBooleanType
0037 WriteImage(const ImageInfo *,Image *,ExceptionInfo *),
0038 WriteImages(const ImageInfo *,Image *,const char *,ExceptionInfo *);
0039
0040 #if defined(__cplusplus) || defined(c_plusplus)
0041 }
0042 #endif
0043
0044 #endif