Wpf 将动态位图添加到图像
我在添加刚刚创建的图像时遇到问题,但该图像未存储在“C:...”之类的位置,
所以我想知道是否有一种方法可以将该图像添加到 wpf 中,而无需先将其添加到 wpf 中保存....
我想要的例子。
Bitmap bit;
LoadBitmap(bit);
image = bit;
I'm having problems adding an image I just created but which is not stored at a location like"C:..."
So I was wondering if there was a way of adding that image to the wpf without it being needed to be first saved ....
Example of what I would of want.
Bitmap bit;
LoadBitmap(bit);
image = bit;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 Tamir Khason 的博客这里:
使用
你可以做的
I've found a solution in Tamir Khason's blog here:
Using
you could do
您可以使用 BitmapImage.StreamSource 直接从 Stream 创建 BitmapImage,而不使用 GDI+ (
System.Drawing
)。You can use BitmapImage.StreamSource to create a BitmapImage directly from a Stream, without using GDI+ (
System.Drawing
).