summaryrefslogtreecommitdiff
path: root/dmagick/c/distort.d
diff options
context:
space:
mode:
authorMike Wey2011-07-04 22:52:38 +0200
committerMike Wey2011-07-04 22:52:38 +0200
commita6019489ca9bdfaf46847b00b8225041ec9f8d94 (patch)
tree7862d83211ad28fa0acf82bdd92c9274f09ea82d /dmagick/c/distort.d
parent4226779e5345e0601b305cbc28c1d89dcc9bee20 (diff)
Update headers to version 6.7.0ImageMagick_6.7.0
Diffstat (limited to 'dmagick/c/distort.d')
-rw-r--r--dmagick/c/distort.d5
1 files changed, 4 insertions, 1 deletions
diff --git a/dmagick/c/distort.d b/dmagick/c/distort.d
index 4c15839..ff406e4 100644
--- a/dmagick/c/distort.d
+++ b/dmagick/c/distort.d
@@ -24,6 +24,7 @@ extern(C)
BarrelDistortion,
BarrelInverseDistortion,
ShepardsDistortion,
+ ResizeDistortion,
SentinelDistortion
}
@@ -35,9 +36,11 @@ extern(C)
PolynomialColorInterpolate = DistortImageMethod.PolynomialDistortion,
ShepardsColorInterpolate = DistortImageMethod.ShepardsDistortion,
- VoronoiColorInterpolate = DistortImageMethod.SentinelDistortion
+ VoronoiColorInterpolate = DistortImageMethod.SentinelDistortion,
+ InverseColorInterpolate
}
Image* DistortImage(const(Image)*, const DistortImageMethod, const size_t, const(double)*, MagickBooleanType, ExceptionInfo* exception);
+ Image* DistortResizeImage(const(Image)*, const size_t, const size_t, ExceptionInfo*);
Image* SparseColorImage(const(Image)*, const ChannelType, const SparseColorMethod, const size_t, const(double)*, ExceptionInfo*);
}