From 85c2caba61cfb4a867ffeeefce492bb2400a2d57 Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Sun, 11 May 2014 01:01:02 +0200 Subject: Update the headers for ImageMagick 6.8.9. --- dmagick/c/effect.d | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'dmagick/c/effect.d') 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 ) { -- cgit v1.2.3