How to resize images without converting it to Bitmap format? My .jpg picture quality is significantly loses color quality if i convert it to .bmp. Can I use a third-party library or is there another solution?
I've tried use Paint for save this file to 16, 24 and 32 .bmp file and it loses color quality.
Code:
Image img = Image.FromFile(@"c:\1.jpg");
Bitmap bmp = new Bitmap(img);
bmp.Save(@"c:\1_save.jpg");
Image: