summaryrefslogtreecommitdiff
path: root/dmagick/c/effect.d
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick/c/effect.d')
-rw-r--r--dmagick/c/effect.d20
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 )
{