blob: 8ca75fd0b269cdd333729408b5f8dfb57f5cba89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
module dmagick.c.shear;
import dmagick.c.exception;
import dmagick.c.image;
import dmagick.c.magickVersion;
extern(C)
{
Image* DeskewImage(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*);
}
}
|