png after resize() totalcolor will increase
png8
image.totalcolor=32
image.ColorType = ColorType.Palette;
and I after resize(980,0)
it change to
image.totalcolor=213
image.ColorType = ColorType.TrueColor;
This should be a bug
Comments: yes. I'm sure writing a PNG8 file. I've test image.Write(@"PNG8:yourfile.png"); The original file is png8 32 colors. image.Quantize(new QuantizeSettings() { Colors = 16 }); new png is 10 color.
png8
image.totalcolor=32
image.ColorType = ColorType.Palette;
and I after resize(980,0)
it change to
image.totalcolor=213
image.ColorType = ColorType.TrueColor;
This should be a bug
Comments: yes. I'm sure writing a PNG8 file. I've test image.Write(@"PNG8:yourfile.png"); The original file is png8 32 colors. image.Quantize(new QuantizeSettings() { Colors = 16 }); new png is 10 color.