我需要将位图从转换PixelFormat.Format32bppRgb为PixelFormat.Format32bppArgb。
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。怎么回事/如何转换格式?
马虎,对于GDI +并不罕见。可以解决此问题:
Bitmap orig = new Bitmap(@"c:\temp\24bpp.bmp"); Bitmap clone = new Bitmap(orig.Width, orig.Height, System.Drawing.Imaging.PixelFormat.Format32bppPArgb); using (Graphics gr = Graphics.FromImage(clone)) { gr.DrawImage(orig, new Rectangle(0, 0, clone.Width, clone.Height)); } // Dispose orig as necessary...