12

Is there an easy way to convert a WPF visual into an image? If so, what's the code?

Dave Clemmer
  • 3,741
  • 12
  • 49
  • 72
tom greene
  • 5,361
  • 9
  • 39
  • 52
  • The title on this question doesn't seem to match the question. A control and a visual of the control are not the same. – Aaron Thomas Jun 09 '15 at 15:17

1 Answers1

12

It's not terribly difficult although you will probably want to wrap up functionality. I would take a look at RenderTargetBitmap the MSDN page has example usage.

The article How to: Create a Bitmap from a Visual is linked near the bottom of the page.

Quintin Robinson
  • 81,193
  • 14
  • 123
  • 132