summaryrefslogtreecommitdiff
path: root/dmagick/c/shear.d
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick/c/shear.d')
-rw-r--r--dmagick/c/shear.d13
1 files changed, 11 insertions, 2 deletions
diff --git a/dmagick/c/shear.d b/dmagick/c/shear.d
index 1e1dd03..f4e7d78 100644
--- a/dmagick/c/shear.d
+++ b/dmagick/c/shear.d
@@ -6,8 +6,17 @@ import dmagick.c.image;
extern(C)
{
- Image* AffineTransformImage(const(Image)*, const(AffineMatrix)*, ExceptionInfo*);
Image* DeskewImage(const(Image)*, const double, ExceptionInfo*);
- Image* RotateImage(const(Image)*, const double, ExceptionInfo*);
+
+ static if ( MagickLibVersion >= 0x674 )
+ {
+ Image* IntegralRotateImage(const(Image)*, size_t, ExceptionInfo*);
+ }
+
Image* ShearImage(const(Image)*, const double, const double, ExceptionInfo*);
+
+ static if ( MagickLibVersion >= 0x674 )
+ {
+ Image* ShearRotateImage(const(Image)*, const double, ExceptionInfo*);
+ }
}