vote up 2 vote down star
1

Hi,

Is there a way I can write the output of WPF say a canvas to a image file, jpg or the like.

I want to use WPF to create a background for me as I want to use the BitmapEffects for a rectangle and also radius the corners.

I want to use the bitmap in a webpage.

Is this possible?

Malcolm

flag

47% accept rate

4 Answers

vote up 4 vote down check

I have a blog post all about this here. Here's the code from the article:

   Rect rect = new Rect(canvas.RenderSize);
   RenderTargetBitmap rtb = new RenderTargetBitmap((int)rect.Right,
     (int)rect.Bottom, 96d, 96d, System.Windows.Media.PixelFormats.Default);
   rtb.Render(canvas);
   //encode as PNG
   BitmapEncoder pngEncoder = new PngBitmapEncoder();
   pngEncoder.Frames.Add(BitmapFrame.Create(rtb));

   //save to memory stream
   System.IO.MemoryStream ms = new System.IO.MemoryStream();

   pngEncoder.Save(ms);
   ms.Close();
   System.IO.File.WriteAllBytes("logo.png", ms.ToArray());
   Console.WriteLine("Done");
link|flag
vote up 0 vote down

When I print the write the image out it is correct but it is offset by the size of the margins.

link|flag
vote up 0 vote down

I think someone on the wpf blogroll blogged about it earlier today. When using stackpanels the layout-sweep messes upp the rendertargetbitmap stuff. så best practice is to create a visualbrush of the actual stuff and render that to a bitmapsource

ah. found it. Jaime Rodriguez blogged about it.

link|flag
vote up 2 vote down

The RenderTargetBitmap class will convert any WPF visual (including a canvas) into a bitmap.

link|flag

Your Answer

Get an OpenID
or

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