Given a random Visual (type of System.Windows.Media.Visual) how to create a visual that represent the visual in memory and save that back to some file?
the key here are a few classes
System.Windows.Media.DrawingVisual
System.Windows.Media.DrawingImage
System.Windows.Media.Imaging.RenderTargetBitmap
System.Windows.Media.Imaging.BitmapFrame
and the flow of the classes as such
Below is the code that demonstrate the whole process.
private static void ExampleCreateImage(System.Windows.Media.Visual visual, int width, int height) { var drawingVisual = new DrawingVisual(); var drawingImage = new DrawingImage(VisualTreeHelper.GetDrawing(visual)); using (var dc = drawingVisual.RenderOpen()) { var rectangle = new Rect { X = 0, Y = 0, Width = width, Height = height, }; dc.DrawRectangle(Brushes.White, null, rectangle); dc.DrawImage(drawingImage, rectangle); } System.Windows.Media.Imaging.RenderTargetBitmap rtb = new System.Windows.Media.Imaging.RenderTargetBitmap(width, height, 96d, 96d, PixelFormats.Default); rtb.Render(drawingVisual); System.Windows.Media.Imaging.PngBitmapEncoder encoder = new System.Windows.Media.Imaging.PngBitmapEncoder(); encoder.Frames.Add(System.Windows.Media.Imaging.BitmapFrame.Create(rtb)); using (System.IO.FileStream stream = new System.IO.FileStream(Environment.ExpandEnvironmentVariables(@"%temp%\print\MyDrawingImage.png"), System.IO.FileMode.OpenOrCreate)) { encoder.Save(stream); stream.Close(); } // to use you can call as follow //var frameworkElement = new FrameworkElement(); //ExampleCreateImage(frameworkElement, (int)frameworkElement.ActualWidth, (int)frameworkElement.ActualWidth); }
NOTE: only when the Visual is Actually System.Windows.Interop.HwndHost, then you will use the above technique.
If the Visual is a general Visual, other than System.Windows.Interop.HwndHost, you can use the VisualBrush.
Below the code show how you descriminate between HwndHost and other FrameworkElement, you can come up the Bitmap and serialization code which is missing in the previous example.
// @return a instance of IPrintImage public static IPrintImage CreatePrintImage(object container_) { if (Content != null) { var hwndHost = Content as System.Windows.Interop.HwndHost; if (hwndHost != null) { var drawingVisual = CreateDrawingImage(hwndHost, hwndHost.ActualWidth, hwndHost.ActualHeight); return new PrintImage(hwndHost) { DrawingVisual = drawingVisual }; } var content = Content as FrameworkElement; if (content != null) { var drawingVisual = CreateDrawingVisual(content, content.ActualWidth, content.ActualHeight); return new PrintImage(content) { DrawingVisual = drawingVisual }; } } return null; } public static DrawingVisual CreateDrawingVisual(FrameworkElement visual, double width, double height) { var drawingVisual = new DrawingVisual(); // open the Render of the DrawingVisual using (var dc = drawingVisual.RenderOpen()) { var vb = new VisualBrush(visual) { Stretch = Stretch.None }; var rectangle = new Rect { X = 0, Y = 0, Width = width, Height = height, }; // draw the white background dc.DrawRectangle(Brushes.White, null, rectangle); // draw the visual dc.DrawRectangle(vb, null, rectangle); } return drawingVisual; } public static DrawingVisual CreateDrawingImage(Visual visual, double width, double height) { return CreateDrawingImage(new DrawingImage(VisualTreeHelper.GetDrawing(visual)), width, height); } public static DrawingVisual CreateDrawingImage(System.Windows.Media.DrawingImage drawingImage, double width, double height) { //var image = new System.Windows.Controls.Image(); //image.Height = height; //image.Width = width; //image.Source = drawingImage; var drawingVisual = new DrawingVisual(); // open the Render of the DrawingVisual using (var dc = drawingVisual.RenderOpen()) { var rectangle = new Rect { X = 0, Y = 0, Width = width, Height = height, }; // draw the white background dc.DrawRectangle(Brushes.White, null, rectangle); //NOTE: // instead of Creating one VisualBrush, it create and use one DrawingImage // which works with WebBrowser and get the right image back, while // with the VisualBrush, it seems empty content is returned // dc.DrawImage(drawingImage, rectangle); } return drawingVisual; }