You can read more details at: Convert Visio VSD or VSDX or VDX in Java
Last active
March 16, 2022 08:18
-
-
Save aspose-com-gists/3abe6e4ac9727d6b8e2d268a3d74b607 to your computer and use it in GitHub Desktop.
Convert VSD or VSDX Diagram to VDX Programmatically in Java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Call the diagram constructor to load diagram from a VSD file | |
Diagram diagram = new Diagram("ExportToVDX.vsd"); | |
// Convert VSD to VDX | |
diagram.save("VSDtoVSDX_out.vdx", SaveFileFormat.VDX); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Call the diagram constructor to load diagram from a VSDX file | |
Diagram diagram = new Diagram("ExportToVDX.vsdx"); | |
// Convert VSDX to VDX | |
diagram.save("VSDXtoVSDX_out.vdx", SaveFileFormat.VDX); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment