如何在WPF 中将内存Bitmap对象分配给Image控件?
3 回答
哔哔one
TA贡献1854条经验 获得超8个赞
您可以使用图像的Source属性。试试这个代码...
ImageSource imageSource = new BitmapImage(new Uri("C:\\FileName.gif"));
image1.Source = imageSource;
三国纷争
TA贡献1804条经验 获得超7个赞
对于磁盘文件来说很容易,但是对于内存中的位图则更难。
System.Drawing.Bitmap bmp;
Image image;
...
MemoryStream ms = new MemoryStream();
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
ms.Position = 0;
BitmapImage bi = new BitmapImage();
bi.BeginInit();
bi.StreamSource = ms;
bi.EndInit();
image.Source = bi;
- 3 回答
- 0 关注
- 1154 浏览
添加回答
举报
0/150
提交
取消