summaryrefslogtreecommitdiff
path: root/dmagick/c/distort.d
diff options
context:
space:
mode:
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*);
}