Last active
March 16, 2022 08:18
Revisions
-
aspose-com-gists revised this gist
Mar 16, 2022 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ You can read more details at: [Convert Visio VSD or VSDX or VDX in Java](https://blog.aspose.com/2022/02/25/convert-vsd-vsdx-to-vdx-java/) -
aspose-com-gists created this gist
Feb 28, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ // 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ // 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);