在c# wpf中从Memorystream获取Imagesource
如何使用 C# 从 WPF 中的 MemoryStream
获取 ImageSource
?或将 MemoryStream
转换为 ImageSource
以将其显示为 wpf 中的图像?
How can I get ImageSource
from MemoryStream
in WPF using c# ? or convert MemoryStream
to ImageSource
to display it as image in wpf ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Additional to @Darin Dimitrov answer if you disposed the stream before assigning to
Image.Source
nothing will show, so be careful例如,Next 方法将不起作用,
来自我使用 LiteDB 的一个项目
,您不能使用上一个函数返回的
imageSource
但此实现将起作用
Additional to @Darin Dimitrov answer if you disposed the stream before assigning to
Image.Source
nothing will show, so be carefulFor example, the Next method will not work,
From one of my projects using LiteDB
you can not use returned
imageSource
from the last functionBut this implementation will work