summaryrefslogtreecommitdiff
path: root/dmagick/c/resize.d
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick/c/resize.d')
-rw-r--r--dmagick/c/resize.d18
1 files changed, 18 insertions, 0 deletions
diff --git a/dmagick/c/resize.d b/dmagick/c/resize.d
new file mode 100644
index 0000000..7a4aaba
--- /dev/null
+++ b/dmagick/c/resize.d
@@ -0,0 +1,18 @@
+module dmagick.c.resize;
+
+import dmagick.c.exception;
+import dmagick.c.image;
+import dmagick.c.resample;
+
+extern(C)
+{
+ Image* AdaptiveResizeImage(const Image*, const size_t, const size_t, ExceptionInfo*);
+ Image* LiquidRescaleImage(const Image*, const size_t, const size_t, const double, const double, ExceptionInfo*);
+ Image* MagnifyImage(const Image*, ExceptionInfo*);
+ Image* MinifyImage(const Image*, ExceptionInfo*);
+ Image* ResampleImage(const Image*, const double, const double, const FilterTypes, const double, ExceptionInfo*);
+ Image* ResizeImage(const Image*, const size_t, const size_t, const FilterTypes, const double, ExceptionInfo*);
+ Image* SampleImage(const Image*, const size_t, const size_t, ExceptionInfo*);
+ Image* ScaleImage(const Image*, const size_t, const size_t, ExceptionInfo*);
+ Image* ThumbnailImage(const Image*, const size_t, const size_t, ExceptionInfo*);
+}