在 PHP 中检索 Visio 形状信息
Contents
[
Hide
]
Aspose.Diagram - 检索 Visio 形状信息
检索 Visio 形状信息使用Aspose.Diagram Java 用于 PHP 只需调用获取形状信息模块。在这里您可以看到示例代码。
PHP代码
# Create instance of Diagram
$diagram = new Diagram($dataDir."Drawing1.vsd");
$shapes = $diagram->getPages()->getPage(0)->getShapes();
$i = 0;
while ($i<(int)(string)$shapes->getCount()) {
$shape = $shapes->get($i);
\# Display information about the shapes
print "Shape ID : " . (string)$shape->getID().PHP_EOL;
print "Name : " . (string)$shape->getName().PHP_EOL;
print "Master Shape : ".(string)$shape->getMaster()->getName().PHP_EOL;
$i += 1;
}
下载运行代码
下载**检索 Visio 形状信息 (Aspose.Diagram)**来自以下任何社交编码网站: