我正在尝试从仅资源的 DLL 文件中读取图像。我能够读取图像名称和图像字节,但是如何将Image
控件设置为流缓冲区?在 Windows 窗体中,我知道我可以使用它:
pictureBox1.Image=new System.Drawing.Bitmap(IOStream);
由于 wpf 中没有绘图命名空间,我怎样才能实现相同的目标?
在 WPF 中,您可以设置 的Source
属性Image
,如下例所示:
Image image = new Image();
using (MemoryStream stream = new MemoryStream(byteArray))
{
image.Source = BitmapFrame.Create(stream,
BitmapCreateOptions.None,
BitmapCacheOption.OnLoad);
}
byteArray
图像源的字节数组在哪里。
在 WPF 中,您的 xaml 中可能有一个Image
元素。Source
可以是BitmapImage
任何. 您可以从 ViewModel 绑定 a BitmapImage
,您可以在其中从Stream
like this创建一个实例。