1

我想动态生成一些图像。为此,我打算创建一个 XAML 视图,用数据填充它(使用 DataBinding),然后从该视图的呈现中生成一个图像(一种屏幕截图)。

有没有办法在 Silverlight 或 WPF 中做到这一点?

4

3 回答 3

6

在 WPF 中:

public static Image GetImage(Visual target)
{
    if (target == null)
    {
        return null; // No visual - no image.
    }
    var bounds = VisualTreeHelper.GetDescendantBounds(target);

    var bitmapHeight = 0;
    var bitmapWidth = 0;

    if (bounds != Rect.Empty)
    {
        bitmapHeight = (int)(Math.Floor(bounds.Height) + 1);
        bitmapWidth = (int)(Math.Floor(bounds.Width) + 1);
    }

    const double dpi = 96.0;

    var renderBitmap =
        new RenderTargetBitmap(bitmapWidth, bitmapHeight, dpi, dpi, PixelFormats.Pbgra32);

    var visual = new DrawingVisual();
    using (var context = visual.RenderOpen())
    {
        var brush = new VisualBrush(target);
        context.DrawRectangle(brush, null, new Rect(new Point(), bounds.Size));
    }

    renderBitmap.Render(visual);

    return new Image
    {
        Source = renderBitmap,
        Width = bitmapWidth,
        Height = bitmapHeight
    };
}
于 2011-03-31T19:39:19.703 回答
1

在 Silverlight 中使用WriteableBitmap及其Render函数。

在 WPF 中,通过使用RenderTargetBitmap及其Render函数来使用此技巧

于 2011-03-31T19:34:28.867 回答
0

您可以将要捕获的控件(数据绑定后的数据)添加到 ViewBox - http://www.wpftutorial.net/ViewBox.html

从那里,您可以使用 WriteableBitmap 创建图像 - http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.writeablebitmap%28VS.95%29.aspx

于 2011-03-31T19:36:49.113 回答