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