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, 13 insertions, 0 deletions
diff --git a/dmagick/c/shear.d b/dmagick/c/shear.d
new file mode 100644
index 0000000..1e1dd03
--- /dev/null
+++ b/dmagick/c/shear.d
@@ -0,0 +1,13 @@
+module dmagick.c.shear;
+
+import dmagick.c.exception;
+import dmagick.c.geometry;
+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*);
+ Image* ShearImage(const(Image)*, const double, const double, ExceptionInfo*);
+}