]> granicus.if.org Git - imagemagick/blobdiff - MagickCore/attribute.h
Update web pages
[imagemagick] / MagickCore / attribute.h
index 5e00ff256081c9f38656297d3803cde31bc864fe..0c5610db9131390a279839f542015b2d85dc1929 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization
+  Copyright 1999-2015 ImageMagick Studio LLC, a non-profit organization
   dedicated to making software imaging solutions freely available.
   
   You may not use this file except in compliance with the License.
 #ifndef _MAGICKCORE_ATTRIBUTE_H
 #define _MAGICKCORE_ATTRIBUTE_H
 
+#include "MagickCore/image.h"
+#include "MagickCore/exception.h"
+
 #if defined(__cplusplus) || defined(c_plusplus)
 extern "C" {
 #endif
 
-#include <MagickCore/image.h>
-#include <MagickCore/exception.h>
-
 extern MagickExport ImageType
-  GetImageType(const Image *,ExceptionInfo *);
+  GetImageType(const Image *),
+  IdentifyImageGray(const Image *,ExceptionInfo *),
+  IdentifyImageType(const Image *,ExceptionInfo *);
 
 extern MagickExport MagickBooleanType
-  IsImageGray(const Image *,ExceptionInfo *),
-  IsImageMonochrome(const Image *,ExceptionInfo *),
+  IdentifyImageMonochrome(const Image *,ExceptionInfo *),
+  IsImageGray(const Image *),
+  IsImageMonochrome(const Image *),
   IsImageOpaque(const Image *,ExceptionInfo *),
-  SetImageDepth(Image *,const size_t,ExceptionInfo *);
+  SetImageDepth(Image *,const size_t,ExceptionInfo *),
+  SetImageType(Image *,const ImageType,ExceptionInfo *);
 
 extern MagickExport RectangleInfo
   GetImageBoundingBox(const Image *,ExceptionInfo *exception);