Extract All Images From a Visio Page in PHP
Contents
[
Hide
]
Aspose.Diagram - Extract All Images From a Visio Page
To Extract All Images From a Visio Page using Aspose.Diagram Java for PHP, simply invoke ExtractImages module. Here you can see example code.
PHP Code
# Create instance of Diagram
$diagram = new Diagram($dataDir."drawing.vsd");
$shapes = $diagram->getPages()->getPage("Flow 1")->getShapes();
$i = 0;
$typeValue=new TypeValue();
while ($i <(int)(string)$shapes->getCount()){
$shape = $shapes->get($i);
\# Filter shapes by type Foreign
if ($shape->getType()== $typeValue->FOREIGN){
\# create an image file
$fos = new FileOutputStream($dataDir."Image#{i}.bmp");
$fos->write($shape->getForeignData()->getValue());
$fos->close();
}
$i += 1;
}
print "Extracted images successfully!".PHP_EOL;
Download Running Code
Download Extract All Images From a Visio Page (Aspose.Diagram) from any of the below mentioned social coding sites: