stb_image: Account for tRNS chunk in non-paletted images.

So we report channels_in_file correctly.

Fixes #329.
master
Fabian Giesen ago%!(EXTRA string=8 years)
parent 7725f8b9cd
commit 0fbbda56fa
  1. 3
      stb_image.h

@ -4822,6 +4822,9 @@ static int stbi__parse_png_file(stbi__png *z, int scan, int req_comp)
if (req_comp >= 3) s->img_out_n = req_comp;
if (!stbi__expand_png_palette(z, palette, pal_len, s->img_out_n))
return 0;
} else if (has_trans) {
// non-paletted image with tRNS -> source image has (constant) alpha
++s->img_n;
}
STBI_FREE(z->expanded); z->expanded = NULL;
return 1;

Loading…
Cancel
Save