Created
October 29, 2024 20:36
-
-
Save conholdate-gists/368fad132deabd930a82677101e766eb to your computer and use it in GitHub Desktop.
Convert Visio to HTML in Java | VSDX to HTML Webpage
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
// Load a diagram from a VSDX file | |
com.aspose.diagram.Diagram diagram = new com.aspose.diagram.Diagram("input.vsdx"); | |
// Save Visio VSDX as HTML | |
diagram.save("ExportToHTML.html", com.aspose.diagram.SaveFileFormat.HTML); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment