]> granicus.if.org Git - imagemagick/blobdiff - MagickCore/enhance.h
(no commit message)
[imagemagick] / MagickCore / enhance.h
index 95d00c8abe6e3c9b220b2b914438163c6b853014..3b04f97abbc85bad77c1ee272a7be727e80b168e 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization
+  Copyright 1999-2014 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_ENHANCE_H
 #define _MAGICKCORE_ENHANCE_H
 
+#include "MagickCore/pixel.h"
+
 #if defined(__cplusplus) || defined(c_plusplus)
 extern "C" {
 #endif
 
 extern MagickExport MagickBooleanType
-  AutoGammaImage(Image *),
-  AutoLevelImage(Image *),
-  BrightnessContrastImage(Image *,const double,const double),
-  ClutImage(Image *,const Image *),
-  ClutImageChannel(Image *,const ChannelType,const Image *),
-  ColorDecisionListImage(Image *,const char *),
-  ContrastImage(Image *,const MagickBooleanType),
-  ContrastStretchImage(Image *,const char *),
-  ContrastStretchImageChannel(Image *,const ChannelType,const double,
-    const double),
-  EqualizeImage(Image *image),
-  EqualizeImageChannel(Image *image,const ChannelType),
-  GammaImage(Image *,const char *),
-  GammaImageChannel(Image *,const ChannelType,const double),
-  HaldClutImage(Image *,const Image *),
-  HaldClutImageChannel(Image *,const ChannelType,const Image *),
-  LevelImage(Image *,const char *),
-  LevelImageChannel(Image *,const ChannelType,const double,const double,
-    const double),
-  LevelizeImage(Image *,const double,const double,const double),
-  LevelizeImageChannel(Image *,const ChannelType,const double,const double,
-    const double),
-  LevelColorsImage(Image *,const PixelInfo *,const PixelInfo *,
-    const MagickBooleanType),
-  LevelColorsImageChannel(Image *,const ChannelType,const PixelInfo *,
-    const PixelInfo *,const MagickBooleanType),
-  LinearStretchImage(Image *,const double,const double),
-  ModulateImage(Image *,const char *),
-  NegateImage(Image *,const MagickBooleanType),
-  NegateImageChannel(Image *,const ChannelType,const MagickBooleanType),
-  NormalizeImage(Image *),
-  NormalizeImageChannel(Image *,const ChannelType),
+  AutoGammaImage(Image *,ExceptionInfo *),
+  AutoLevelImage(Image *,ExceptionInfo *),
+  BrightnessContrastImage(Image *,const double,const double,ExceptionInfo *),
+  ClutImage(Image *,const Image *,const PixelInterpolateMethod,ExceptionInfo *),
+  ColorDecisionListImage(Image *,const char *,ExceptionInfo *),
+  ContrastImage(Image *,const MagickBooleanType,ExceptionInfo *),
+  ContrastStretchImage(Image *,const double,const double,ExceptionInfo *),
+  EqualizeImage(Image *image,ExceptionInfo *),
+  GammaImage(Image *,const double,ExceptionInfo *),
+  GrayscaleImage(Image *,const PixelIntensityMethod,ExceptionInfo *),
+  HaldClutImage(Image *,const Image *,ExceptionInfo *),
+  LevelImage(Image *,const double,const double,const double,ExceptionInfo *),
+  LevelizeImage(Image *,const double,const double,const double,ExceptionInfo *),
+  LevelImageColors(Image *,const PixelInfo *,const PixelInfo *,
+    const MagickBooleanType,ExceptionInfo *),
+  LinearStretchImage(Image *,const double,const double,ExceptionInfo *),
+  ModulateImage(Image *,const char *,ExceptionInfo *),
+  NegateImage(Image *,const MagickBooleanType,ExceptionInfo *),
+  NormalizeImage(Image *,ExceptionInfo *),
   SigmoidalContrastImage(Image *,const MagickBooleanType,const double,
-    const double);
+    const double,ExceptionInfo *);
 
 extern MagickExport Image
   *EnhanceImage(const Image *,ExceptionInfo *);