I have an jpeg image 720x480 8BPP with a quality of 95%.
If I open this image with IrfanView and type "i" to get the information to this image I can see that this image has 238 unique colors.
If I open this image in C# with
Image image1 = Image.FromFile("J:\\test.jpg", true);
and count the unique colors, I always count only 16. Also when I save this image regardless of JPG or BMP, if I opend this saved image with IrfanView and look to the info I see only 16 unique colors.
What is the reason for that?
Best regards
Michael