我需要将位图从转换PixelFormat.Format32bppRgb为PixelFormat.Format32bppArgb。
我希望使用Bitmap.Clone,但似乎无法正常工作。
Bitmap orig = new Bitmap("orig.bmp");
Bitmap clone = orig.Clone(new Rectangle(0,0,orig.Width,orig.Height), PixelFormat.Format24bppArgb);
如果我运行上面的代码,然后检查clone.PixelFormat,它将设置为PixelFormat.Format32bppRgb。怎么回事/如何转换格式?
慕后森
qq_遁去的一_1