Convert a Visio Shape To Svg
Contents
[
Hide
]
**Convert a visio shape to svg **
The ToSvg method exposed by the Shape class can be used to convert to svg.
The code below shows how to:
- Load a sample diagram.
- get a particular page.
- get a particular shape.
- convert shape to svg.
Shape to Svg
Use the following code in your java application to convert a visio shape to svg.
// For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(ShapeToSvg.class);
// Call a Diagram class constructor to load the VSDX diagram
Diagram diagram = new Diagram(dataDir + "ShapeToSvg.vsdx");
// Get a particular page
Page page = diagram.getPages().get(0);
// Get a particular shape
Shape shape = page.getShapes().get(0);
// Shape to Svg
SVGSaveOptions option = new SVGSaveOptions();
shape.toSvg("out.svg",option);