Export Visio Diagram to HTML in PHP

Aspose.Diagram - Export Visio Diagram to HTML

To Export Visio Diagram to HTML using Aspose.Diagram Java for PHP, simply invoke ExportToHtml module. Here you can see example code.

PHP Code

 # Call the diagram constructor to load diagram from a VSD file

$diagram = new Diagram($dataDir."drawing.vsd");

\# Save as Html

$saveFileFormat=new SaveFileFormat();

$diagram->save($dataDir."Diagram.html", $saveFileFormat->HTML);

print "Exported visio diagram to HTML.".PHP_EOL;

Download Running Code

Download Export Visio Diagram to HTML (Aspose.Diagram) from any of the below mentioned social coding sites: