diff options
| author | Mike Wey | 2011-12-10 23:07:26 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-12-10 23:07:26 +0100 |
| commit | b1bdbb27b83c7ad5fbe5d657ae8fa861e3d5c820 (patch) | |
| tree | 8d98ff670c6235d4821226094a123e31da043e12 /dmagick/c/shear.d | |
| parent | ceeeee14dd7f07c460d0117822603179c2f83d2a (diff) | |
Update the headers for ImageMagick 6.7.4
Diffstat (limited to 'dmagick/c/shear.d')
| -rw-r--r-- | dmagick/c/shear.d | 13 |
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*); + } } |
