summaryrefslogtreecommitdiff
path: root/dmagick/c/threshold.d
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick/c/threshold.d')
-rw-r--r--dmagick/c/threshold.d20
1 files changed, 10 insertions, 10 deletions
diff --git a/dmagick/c/threshold.d b/dmagick/c/threshold.d
index 4134b13..861bcdf 100644
--- a/dmagick/c/threshold.d
+++ b/dmagick/c/threshold.d
@@ -11,24 +11,24 @@ extern(C)
{
struct ThresholdMap {}
- Image* AdaptiveThresholdImage(const Image*, const size_t, const size_t, const ssize_t, ExceptionInfo*);
+ Image* AdaptiveThresholdImage(const(Image)*, const size_t, const size_t, const ssize_t, ExceptionInfo*);
ThresholdMap* DestroyThresholdMap(ThresholdMap*);
- ThresholdMap* GetThresholdMap(const char*, ExceptionInfo*);
+ ThresholdMap* GetThresholdMap(const(char)*, ExceptionInfo*);
MagickBooleanType BilevelImage(Image*, const double);
MagickBooleanType BilevelImageChannel(Image*, const ChannelType, const double);
- MagickBooleanType BlackThresholdImage(Image*, const char*);
- MagickBooleanType BlackThresholdImageChannel(Image*, const ChannelType, const char*, ExceptionInfo*);
+ MagickBooleanType BlackThresholdImage(Image*, const(char)*);
+ MagickBooleanType BlackThresholdImageChannel(Image*, const ChannelType, const(char)*, ExceptionInfo*);
MagickBooleanType ClampImage(Image*);
MagickBooleanType ClampImageChannel(Image*, const ChannelType);
MagickBooleanType ListThresholdMaps(FILE*, ExceptionInfo*);
MagickBooleanType OrderedDitherImage(Image*);
MagickBooleanType OrderedDitherImageChannel(Image*, const ChannelType, ExceptionInfo*);
- MagickBooleanType OrderedPosterizeImage(Image*, const char*, ExceptionInfo*);
- MagickBooleanType OrderedPosterizeImageChannel(Image*, const ChannelType, const char*, ExceptionInfo*);
- MagickBooleanType RandomThresholdImage(Image*, const char*, ExceptionInfo*);
- MagickBooleanType RandomThresholdImageChannel(Image*, const ChannelType, const char*, ExceptionInfo*);
- MagickBooleanType WhiteThresholdImage(Image*, const char*);
- MagickBooleanType WhiteThresholdImageChannel(Image *,const ChannelType,const char *,ExceptionInfo *);
+ MagickBooleanType OrderedPosterizeImage(Image*, const(char)*, ExceptionInfo*);
+ MagickBooleanType OrderedPosterizeImageChannel(Image*, const ChannelType, const(char)*, ExceptionInfo*);
+ MagickBooleanType RandomThresholdImage(Image*, const(char)*, ExceptionInfo*);
+ MagickBooleanType RandomThresholdImageChannel(Image*, const ChannelType, const(char)*, ExceptionInfo*);
+ MagickBooleanType WhiteThresholdImage(Image*, const(char)*);
+ MagickBooleanType WhiteThresholdImageChannel(Image*, const ChannelType, const(char)*, ExceptionInfo *);
}