summaryrefslogtreecommitdiff
path: root/dmagick/c/shear.d
diff options
context:
space:
mode:
authorMike Wey2011-12-10 23:07:26 +0100
committerMike Wey2011-12-10 23:07:26 +0100
commitb1bdbb27b83c7ad5fbe5d657ae8fa861e3d5c820 (patch)
tree8d98ff670c6235d4821226094a123e31da043e12 /dmagick/c/shear.d
parentceeeee14dd7f07c460d0117822603179c2f83d2a (diff)
Update the headers for ImageMagick 6.7.4
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*);
+ }
}