From 0694c7a772ba481719129371e9ee40680a08f341 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 22 Dec 2021 18:48:11 -0500 Subject: [PATCH] docs --- imageresize.d | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/imageresize.d b/imageresize.d index 6e93bdd..8eb7f12 100644 --- a/imageresize.d +++ b/imageresize.d @@ -3,9 +3,23 @@ See [imageResize] for the main function, all others are lower level if you need more control. + Note that this focuses more on quality than speed. You can tweak the `filterScale` argument to speed things up at the expense of quality though (lower number = faster). + I've found: + + --- + auto size = calculateSizeKeepingAspectRatio(i.width, i.height, maxWidth, maxHeight); + if(size.width != i.width || size.height != i.height) { + i = imageResize(i, size.width, size.height, null, 1.0, 0.6); + } + --- + + Gives decent results balancing quality and speed. Compiling with ldc or gdc can also + speed up your program. + + Authors: Originally written in C by Rich Geldreich, ported to D by ketmar.