在 PHP 中读取 Visio 形状数据
Contents
[
Hide
]
Aspose.Diagram - 读取所有形状属性
使用读取所有形状属性Aspose.Diagram Java 用于 PHP, 称呼读取所有形状属性的方法读取形状数据模块。在这里您可以看到示例代码。
PHP代码
public static function read_all_shape_properties($dataDir=null)
{
\# Create instance of Diagram
$diagram = new Diagram($dataDir . "Drawing.vsd");
$shapes = $diagram->getPages()->getPage(0)->getShapes();
$i = 0;
while ($i <(int)(string)$shapes->getCount()){
$shape = $shapes->get($i);
if ($shape->getName() == "Process") {
$j = 0;
while ($j<(int)(string)$shape->getProps()->getCount()) {
$property = $shape->getProps()->get($j);
print $property->getLabel()->getValue() . ": " . $property->getValue()->getVal();
$j += 1;
}
break;
}
$i += 1;
}
}
Aspose.Diagram - 按名称读取形状属性
要按名称读取形状属性,请使用Aspose.Diagram Java 用于 PHP, 称呼按名称读取形状属性的方法读取形状数据模块。在这里您可以看到示例代码。
PHP代码
public static function read_shape_property_by_name($dataDir=null){
\# Create instance of Diagram
$diagram=new Diagram($dataDir."Drawing.vsd");
$shapes=$diagram->getPages()->getPage(0)->getShapes();
$i = 0;
while($i<(int)(string)$shapes->getCount()) {
$shape = $shapes->get($i);
if ($shape->getName() == "Process") {
$property=$shape->getProps()->getProp("Cost");
print $property->getLabel()->getValue().": ".$property->getValue()->getVal().PHP_EOL;
}
$i+= 1;
}
}
下载运行代码
下载**读取 Visio 形状数据 (Aspose.Diagram)**来自以下任何社交编码网站: