This commit is contained in:
Adam D. Ruppe 2021-12-22 18:48:11 -05:00
parent 30586da8bf
commit 0694c7a772
1 changed files with 14 additions and 0 deletions

View File

@ -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.