summaryrefslogtreecommitdiff
path: root/dmagick/c/shear.d
diff options
context:
space:
mode:
authorMike Wey2011-05-18 00:04:38 +0200
committerMike Wey2011-05-18 00:04:38 +0200
commit96f31224ca2b171d11b83c59dcda962afbca8b65 (patch)
tree752d4dea58214c77d02228799e29d474a5e13aa9 /dmagick/c/shear.d
parent60f11f1fdd1e428f3e2203c2723cf7c7a282e561 (diff)
addNoise and affineTransform
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*);
+}