attribute.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _MAGICKCORE_ATTRIBUTE_H
00019 #define _MAGICKCORE_ATTRIBUTE_H
00020
00021 #if defined(__cplusplus) || defined(c_plusplus)
00022 extern "C" {
00023 #endif
00024
00025 #include <magick/image.h>
00026 #include <magick/exception.h>
00027
00028 extern MagickExport ImageType
00029 GetImageType(const Image *,ExceptionInfo *);
00030
00031 extern MagickExport MagickBooleanType
00032 IsGrayImage(const Image *,ExceptionInfo *),
00033 IsMonochromeImage(const Image *,ExceptionInfo *),
00034 IsOpaqueImage(const Image *,ExceptionInfo *),
00035 SetImageChannelDepth(Image *,const ChannelType,const unsigned long),
00036 SetImageDepth(Image *,const unsigned long);
00037
00038 extern MagickExport RectangleInfo
00039 GetImageBoundingBox(const Image *,ExceptionInfo *exception);
00040
00041 extern MagickExport unsigned long
00042 GetImageChannelDepth(const Image *,const ChannelType,ExceptionInfo *),
00043 GetImageDepth(const Image *,ExceptionInfo *),
00044 GetImageQuantumDepth(const Image *,const MagickBooleanType);
00045
00046 #if defined(__cplusplus) || defined(c_plusplus)
00047 }
00048 #endif
00049
00050 #endif