0

我知道如何从 System.Drawing.Bitmap 加载 WPF BitmapImage将位图转换为 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
谢谢!

4

1 回答 1

0

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

于 2012-12-07T08:17:11.670 回答