Export Visio Diagram to Image in PHP
Contents
[
Hide
]
Aspose.Diagram - Export Visio Diagram to Image
To Export Visio Diagram to Image using Aspose.Diagram Java for PHP, simply invoke ExportToImage 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 PNG
$saveFileFormat=new SaveFileFormat();
$diagram->save($dataDir."Diagram.png", $saveFileFormat->PNG);
print "Exported visio diagram to PNG.".PHP_EOL;
Download Running Code
Download Export Visio Diagram to Image (Aspose.Diagram) from any of the below mentioned social coding sites: