diff options
| author | Mike Wey | 2014-05-11 01:01:02 +0200 |
|---|---|---|
| committer | Mike Wey | 2014-05-11 01:01:02 +0200 |
| commit | 85c2caba61cfb4a867ffeeefce492bb2400a2d57 (patch) | |
| tree | a4abdcd1002df0fbad67beaa7356e5f41a4b5645 /dmagick/c/effect.d | |
| parent | cb46d8ca8283b6e7c26c12c3eb2c450a6b41cbcf (diff) | |
Update the headers for ImageMagick 6.8.9.ImageMagick_6.8.9
Diffstat (limited to 'dmagick/c/effect.d')
| -rw-r--r-- | dmagick/c/effect.d | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/dmagick/c/effect.d b/dmagick/c/effect.d index e9e84a8..3e4e112 100644 --- a/dmagick/c/effect.d +++ b/dmagick/c/effect.d @@ -51,6 +51,12 @@ extern(C) Image* AdaptiveSharpenImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); Image* BlurImage(const(Image)*, const double, const double, ExceptionInfo*); Image* BlurImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); + + static if ( MagickLibVersion >= 0x689 ) + { + Image* CannyEdgeImage(const(Image)*, const double, const double, const double, const double, ExceptionInfo*); + } + Image* ConvolveImage(const(Image)*, const size_t, const(double)*, ExceptionInfo*); Image* ConvolveImageChannel(const(Image)*, const ChannelType, const size_t, const(double)*, ExceptionInfo*); Image* DespeckleImage(const(Image)*, ExceptionInfo*); @@ -74,8 +80,18 @@ extern(C) 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*); + + static if ( MagickLibVersion < 0x689 ) + { + Image* RadialBlurImage(const(Image)*, const double, ExceptionInfo*); + Image* RadialBlurImageChannel(const(Image)*, const ChannelType, const double, ExceptionInfo*); + } + + static if ( MagickLibVersion >= 0x689 ) + { + Image* RotationalBlurImage(const(Image)*, const double, ExceptionInfo*); + Image* RotationalBlurImageChannel(const(Image)*, const ChannelType, const double, ExceptionInfo*); + } static if ( MagickLibVersion < 0x669 ) { |
