Sean 的个人资料Sean McLeod照片日志列表更多 工具 帮助
10月7日

Bitmap snapshots of WPF Visuals

Recently I needed to create a bitmap of some WPF controls to be used in another program. Doing a quick search turned up references to the RenderTargetBitmap class in WPF with sample code along the lines of:

RenderTargetBitmap bmp = new RenderTargetBitmap((int)element.Width, (int)element.Height, 96, 96, PixelFormats.Pbgra32);
bmp.Render(element);

However if the WPF control had a margin then the rendered bitmap had transparent pixels for the margin area. As an example here is a button inside a StackPanel with a margin applied.

image 

And the following is the bitmap that is created via the sample code above:

image

Doing some more searching turned up the following code which creates a VisualBrush from the target Visual and then renders that into a DrawingVisual and then finally uses RenderTargetBitmap to take a snapshot of the DrawingVisual. Using this approach the margins are ignored and the bitmap only consists of the target WPF control/visual as shown below:

image

void CreateBitmapFromVisual(Visual target, string filename) 
{ 
    if (target == null) 
        return; 

    Rect bounds = VisualTreeHelper.GetDescendantBounds(target);

    RenderTargetBitmap rtb = new RenderTargetBitmap((Int32)bounds.Width, (Int32)bounds.Height, 96, 96, PixelFormats.Pbgra32); 
    
    DrawingVisual dv = new DrawingVisual(); 
    
    using (DrawingContext dc = dv.RenderOpen()) 
    { 
        VisualBrush vb = new VisualBrush(target); 
        dc.DrawRectangle(vb, null, new Rect(new Point(), bounds.Size)); 
    } 

    rtb.Render(dv);

    PngBitmapEncoder png = new PngBitmapEncoder();

    png.Frames.Add(BitmapFrame.Create(rtb));

    using (Stream stm = File.Create(filename))
    {
        png.Save(stm);
    }
}

评论 (1)

请稍候...
很抱歉,您输入的评论太长。请缩短您的评论。
您没有输入任何内容,请重试。
很抱歉,我们当前无法添加您的评论。请稍后重试。
若要添加评论,需要您的家长授予您相应权限。请求权限
您的家长禁用了评论功能。
很抱歉,我们当前无法删除您的评论。请稍后重试。
您已超过了一天之内允许提供的评论数上限。请在 24 小时后重试。
因为我们的系统表明您可能在向其他用户提供垃圾评论,您的帐户已禁用了评论功能。如果您认为我们错误地禁用了您的帐户,请联系 Windows Live 支持部门
完成下面的安全检查,您提供评论的过程才能完成。
您在安全检查中键入的字符必须与图片或音频中的字符一致。

若要添加评论,请使用您的 Windows Live ID 登录(如果您使用过 Hotmail、Messenger 或 Xbox LIVE,您就拥有 Windows Live ID)。登录


还没有 Windows Live ID 吗?请注册

没有名字发表:

http://www.batteryfast.co.uk/laptop-ac-adapter/acer/acer-19V-3.42A-65w-5.5mm-2.5mm-big-head.php
http://www.batteryfast.co.uk/laptop-ac-adapter/acer/acer-19V-3.42A-65w-5.5mm-1.5mm-small-head.php
http://www.batteryfast.co.uk/laptop-ac-adapter/asus/asus-19v-3.42A-65w-5.5mm-2.5mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/dell/dell-19.5V-3.34A-65w-7.4mm-5.0mm-with-pin-pa-12.php
http://www.batteryfast.co.uk/laptop-ac-adapter/dell/dell-19.5V-7.7A-150w-7.4mm-5.0mm-with-pin-pa-15.php
http://www.batteryfast.co.uk/laptop-ac-adapter/dell/dell-19V-3.16A-60w-5.5mm-2.5mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/dell/dell-20V-3.5A-70w-horseshoe-style-special-for-dell-pa-6.php
http://www.batteryfast.co.uk/laptop-ac-adapter/delta/delta-19V-3.42A-65w-5.5mm-2.5mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/fujitsu/fujitsu-19V-4.74A-90w-5.5mm-2.5mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/hp/hp-18.5V-3.5A-65w-4.8mm-1.7mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/hp/hp-19V-4.74A-90w-4.8mm-1.7mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/ibm/ibm-20V-3.25A-65w-7.9mm-5.5mm-DC-with-pin-inside.php
http://www.batteryfast.co.uk/laptop-ac-adapter/liteon/liteon-19V-3.42A-65w-5.5mm-2.5mm-white.php
http://www.batteryfast.co.uk/laptop-ac-adapter/liteon/liteon-19V-3.95A-75w-5.5mm-2.5mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/liteon/liteon-19V-4.74A-90w-5.5mm-2.5mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/samsung/samsung-19V-3.16A-60w-5.5mm-3.4mm-pin-inside.php
http://www.batteryfast.co.uk/laptop-ac-adapter/sony/sony-19.5V-4.7A-90w-6.5mm-4.4mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/toshiba/toshiba-15V-3A-45w-6.3mm-3.0mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/toshiba/toshiba-15V-5A-75w-6.3mm-3.0mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/toshiba/toshiba-15V-6A-90w-6.3mm-3.0mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/toshiba/toshiba-15V-8A-120w-special-4-hole.php
http://www.batteryfast.co.uk/laptop-ac-adapter/toshiba/toshiba-19V-3.42A-65w-5.5mm-2.5mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/toshiba/toshiba-19V-4.74A-90w-5.5mm-2.5mm.php
http://www.batteryfast.co.uk/laptop-ac-adapter/universal/universal-12-20V-90W-universal.php
http://www.batteryfast.co.uk/dell/inspiron-1300.htm dell inspiron 1300 battery
http://www.batteryfast.co.uk/laptop-ac-adapter/apple/apple-24V-1.875A-45w-9.5mm-3.5mm-big-head.php
http://www.batteryfast.co.uk/dell/inspiron-b120.htm dell inspiron b120 battery
http://www.batteryfast.co.uk/dell/inspiron-b130.htm dell inspiron b130 battery
http://www.batteryfast.co.uk/dell/xps-1330.htm dell xps 1330 battery
http://www.batteryfast.co.uk/dell/xps-m1330.htm dell xps m1330 battery
9 月 21 日

引用通告

此日志的引用通告 URL 是:
http://seanmcleod.spaces.live.com/blog/cns!B5D803CBC24E8221!291.trak
引用此项的网络日志