Skip to content

Instantly share code, notes, and snippets.

@conholdate-gists
Created October 29, 2024 20:36
Show Gist options
  • Save conholdate-gists/368fad132deabd930a82677101e766eb to your computer and use it in GitHub Desktop.
Save conholdate-gists/368fad132deabd930a82677101e766eb to your computer and use it in GitHub Desktop.
Convert Visio to HTML in Java | VSDX to HTML Webpage
// 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