我正在尝试使用C#.NET将位图保存为每像素8位的jpg图像,这是我的程序:
var bitmap = new Bitmap(500, 500, PixelFormat.Format8bppIndexed);
bitmap.Save("img.bmp", ImageFormat.Bmp); //this saves a 8bpp bmp image
bitmap.Save("img.png", ImageFormat.Png); //this saves a 8bpp png image
bitmap.Save("img.jpg", ImageFormat.Jpeg); //this saves a 24-bpp jpg image
我使用文件“属性”窗口检查像素格式(右键单击文件->“属性”->“详细信息”->“位深度”字段)。我使用http://checkfiletype.com/
检查文件格式