如何在wpf中实时将位图加载到ImageSource?

时间:2012-12-07 02:28:05

标签: wpf bitmap real-time bitmapimage

我知道如何从Load a WPF BitmapImage from a System.Drawing.Bitmap将位图转换为BitmapImage

但是当我的位图发生变化时,我想要图像源,即BitmapImage会随位图实时变化,我该怎么办呢?

我生成位图的代码是这样的:

Rectangle rect = new Rectangle(0, 0, 300, 300);
bitmap = new Bitmap(rect.Width, rect.Height);
Graphics g = Graphics.FromImage(bitmap);
DoWithGraphics(g, rect, pictureelements);

DoWithGraphics是一系列g.FillRectangle
谢谢!

1 个答案:

答案 0 :(得分:0)

Image控件中显示位图并在位图更改时更新Source属性应该不会有问题。