/dmagick/c/shear.d
D | 22 lines | 17 code | 5 blank | 0 comment | 2 complexity | eb2d86e0fc0ca2120e55a87e6975f4bd MD5 | raw file
1module dmagick.c.shear; 2 3import dmagick.c.exception; 4import dmagick.c.image; 5import dmagick.c.magickVersion; 6 7extern(C) 8{ 9 Image* DeskewImage(const(Image)*, const double, ExceptionInfo*); 10 11 static if ( MagickLibVersion >= 0x674 ) 12 { 13 Image* IntegralRotateImage(const(Image)*, size_t, ExceptionInfo*); 14 } 15 16 Image* ShearImage(const(Image)*, const double, const double, ExceptionInfo*); 17 18 static if ( MagickLibVersion >= 0x674 ) 19 { 20 Image* ShearRotateImage(const(Image)*, const double, ExceptionInfo*); 21 } 22}