diff options
| author | Mike Wey | 2011-07-03 23:19:27 +0200 |
|---|---|---|
| committer | Mike Wey | 2011-07-03 23:19:27 +0200 |
| commit | 30a32451b52d8a4db1a5d23fce41366c58c5c064 (patch) | |
| tree | c10f2a3ffc845db036f3f26fc7ed12367d424861 /dmagick/c/effect.d | |
| parent | ed0591fd2dc67be709d01bd7c12c9b3d23a955fb (diff) | |
Update headers to version 6.6.9ImageMagick_6.6.9
Diffstat (limited to 'dmagick/c/effect.d')
| -rw-r--r-- | dmagick/c/effect.d | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/dmagick/c/effect.d b/dmagick/c/effect.d index f0a2484..812ef64 100644 --- a/dmagick/c/effect.d +++ b/dmagick/c/effect.d @@ -41,6 +41,17 @@ extern(C) JPEGPreview } + enum StatisticType + { + UndefinedStatistic, + MaximumStatistic, + MeanStatistic, + MedianStatistic, + MinimumStatistic, + ModeStatistic, + NonpeakStatistic + } + Image* AdaptiveBlurImage(const(Image)*, const double, const double, ExceptionInfo*); Image* AdaptiveBlurImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); Image* AdaptiveSharpenImage(const(Image)*, const double, const double, ExceptionInfo*); @@ -56,20 +67,19 @@ extern(C) Image* FilterImageChannel(const(Image)*, const ChannelType, const(KernelInfo)*, ExceptionInfo*); Image* GaussianBlurImage(const(Image)*, const double, const double, ExceptionInfo*); Image* GaussianBlurImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); - Image* MedianFilterImage(const(Image)*, const double, ExceptionInfo*); - Image* ModeImage(const(Image)*, const double, ExceptionInfo*); Image* MotionBlurImage(const(Image)*, const double, const double, const double, ExceptionInfo*); Image* MotionBlurImageChannel(const(Image)*, const ChannelType, const double, const double, const double, ExceptionInfo*); Image* PreviewImage(const(Image)*, const PreviewType, ExceptionInfo*); Image* RadialBlurImage(const(Image)*, const double, ExceptionInfo*); Image* RadialBlurImageChannel(const(Image)*, const ChannelType, const double, ExceptionInfo*); - Image* ReduceNoiseImage(const(Image)*, const double, ExceptionInfo*); Image* SelectiveBlurImage(const(Image)*, const double, const double, const double, ExceptionInfo*); Image* SelectiveBlurImageChannel(const(Image)*, const ChannelType, const double, const double, const double, ExceptionInfo*); Image* ShadeImage(const(Image)*, const MagickBooleanType, const double, const double, ExceptionInfo*); Image* SharpenImage(const(Image)*, const double, const double, ExceptionInfo*); Image* SharpenImageChannel(const(Image)*, const ChannelType ,const double, const double, ExceptionInfo*); Image* SpreadImage(const(Image)*, const double, ExceptionInfo*); + Image* StatisticImage(const(Image)*, const StatisticType, const size_t, const size_t, ExceptionInfo*); + Image* StatisticImageChannel(const(Image)*, const ChannelType, const StatisticType, const size_t, const size_t, ExceptionInfo*); Image* UnsharpMaskImage(const(Image)*, const double, const double, const double, const double, ExceptionInfo*); Image* UnsharpMaskImageChannel(const(Image)*, const ChannelType, const double, const double, const double, const double, ExceptionInfo*); } |
