Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lvandeve/lodepng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lodepng.cpp')
-rw-r--r--lodepng.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/lodepng.cpp b/lodepng.cpp
index 74c7fde..29f50c5 100644
--- a/lodepng.cpp
+++ b/lodepng.cpp
@@ -3829,9 +3829,16 @@ static void lodepng_color_stats_add(LodePNGColorStats* stats,
}
#endif /*LODEPNG_COMPILE_ANCILLARY_CHUNKS*/
-unsigned auto_choose_color(LodePNGColorMode* mode_out,
- const LodePNGColorMode* mode_in,
- const LodePNGColorStats* stats) {
+/*Computes a minimal PNG color model that can contain all colors as indicated by the stats.
+The stats should be computed with lodepng_compute_color_stats.
+mode_in is raw color profile of the image the stats were computed on, to copy palette order from when relevant.
+Minimal PNG color model means the color type and bit depth that gives smallest amount of bits in the output image,
+e.g. gray if only grayscale pixels, palette if less than 256 colors, color key if only single transparent color, ...
+This is used if auto_convert is enabled (it is by default).
+*/
+static unsigned auto_choose_color(LodePNGColorMode* mode_out,
+ const LodePNGColorMode* mode_in,
+ const LodePNGColorStats* stats) {
unsigned error = 0;
unsigned palettebits;
size_t i, n;