我有一个WriteableBitmap,它从文件(主要是bmp)加载位图图像。我使用的位图文件具有不同的像素格式,例如Indexed8,Bgra32等。问题是我的代码仅适用于bgra32像素格式。因此,在将位图转换为C#wpf中的Bgra32像素格式时,我需要帮助。

谢谢

最佳答案

我找到了解决方案:

 if (bmpSource.Format != PixelFormats.Bgra32)
     bmpSource = new FormatConvertedBitmap(bmpSource, PixelFormats.Bgra32, null, 0);

10-08 13:40