将WriteableBitmap像素格式转换为c#wpf中的Bgra32

时间:2010-11-17 07:28:31

标签: c# wpf image-processing

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

由于

1 个答案:

答案 0 :(得分:17)

我找到了解决方案:

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