如何从字节数组创建System.Windows.Media.ImageSource?

时间:2009-07-24 20:33:19

标签: wpf .net-3.5 bytearray tiff imagesource

如何从字节数组创建System.Windows.Media.ImageSource?

我有一个字节数组,包含TIFF图像文件的完整和完整的文件内容。我需要在屏幕上显示这个,我不知道从哪里开始。

据说,它可以完成(据我的老板说,我们的开发团队过去曾做过,但没有人记得如何)。

以前有没有人做过这样的事情?

1 个答案:

答案 0 :(得分:13)

BitmapImage bi = new BitmapImage();
bi.BeginInit();
bi.StreamSource = new MemoryStream(ByteArray);
bi.EndInit();

另见Load a WPF BitmapImage from a System.Drawing.BitmapUsing Image control in WPF to display System.Drawing.Bitmap