How to save part of a diagram to image format in WinForms Diagram?
Saving a part of a diagram to image format:
Syncfusion® diagram supports saving a part of a diagram in image format. To achieve this requirement invoke the Diagram’s ExportDiagramToGraphics method with desired area and Graphics class object as an argument.
The below code snippet shows how to select a part of diagram and exporting it in image format.
[C#]
Image img = null; Graphics gfx; RectangleF rectBounding = RectangleF.Empty; gfx = Graphics.FromImage(img); //selecting desired area from the diagram rectBounding = new RectangleF(100,100,500,500); this.diagram1.ExportDiagramToGraphics(gfx, rectBounding); //saving the diagram in image format Bitmap bmp = (Bitmap)img; bmp.Save(strFileName, ImageFormat.Png);
[VB]
Dim img As Image = Nothing Dim gfx As Graphics Dim rectBounding As RectangleF = RectangleF.Empty gfx = Graphics.FromImage(img) 'selecting desired area from the diagram rectBounding = New RectangleF(100,100,500,500) Me.diagram1.ExportDiagramToGraphics(gfx, rectBounding) 'saving the diagram in image format Dim bmp As Bitmap = CType(img, Bitmap) bmp.Save(strFileName, ImageFormat.Png)
Conclusion
I hope you enjoyed learning about how to save part of a diagram to image format in WinForms Diagram.
You can refer to our WinForms Diagram feature tour page to know about its other groundbreaking feature representations. You can also explore our WinForms Diagram documentation to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!