I am looking to render a DrawingVisual (visual in the example) to a bitmap using RenderTargetBitmap with the view to set this bitmap as the background to a Canvas as below:

var bmp = new RenderTargetBitmap(2000,50,120,96,PixelFormats.Indexed2);
bmp.Render(visual);
var brush = new ImageBrush(bmp) {Stretch = Stretch.Fill};
Canvas.Background = brush;

When using PixelFormats.Default in the last parameter of RenderTargetBitmap the image renders as expected. However when I choose PixelFormats.Indexed2 (or any of the Indexed options) my code seems to exit the method without an exception, the bmp.Render line is never called and hence the image is not displayed on the Canvas.

Has anyone had any experience using the IndexedX pixel formats with RenderTargetBitmap?

Or.. does anyone have any tips for reducing the memory footprint of this image? It only uses 3 colors, so using a palette rather than 32bit rgb seemed the way to go.

Thanks in advance,

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

You can't. RenderTargetBitmap only supports the Pbgra32 pixel format. That's because WPF's rendering system works entirely in 32 bits per pixel. That's the format in which it generates images, and it's also the format in which it prefers images to be in if you want to render them. (If you provide it with a bitmap in any other format, it'll need to convert it into a 32 bit per pixel representation first.)

What are you planning to do with this bitmap? If you want to render it in a WPF application, it'll need to be converted to a 32bpp format first in any case, so you risk using more memory if you attempt to hold it internally in any other format. (You'll have your supposedly memory-efficient representation and the version WPF's actually able to work with.) Not to mention the extra CPU time spent converting between your chosen format and a format WPF can work with.

link|improve this answer
Thanks for the info Ian, I didn't realise that image had to be held in memory as Pbgra32 at some point in the render process. Looks like I am going to have to live with the extra memory usage. – Gavin S Dec 7 '10 at 0:13
Out of interest, the bitmap is going in a scrollviewer to provide a scrollable chart. I haven't been able to get the performance I want out of vector drawings, so have resorted to a bitmap. – Gavin S Dec 7 '10 at 0:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.