mirror of https://github.com/adamdruppe/arsd.git
docs
This commit is contained in:
parent
30586da8bf
commit
0694c7a772
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue