Lesen Sie Visio Formdaten in PHP

Aspose.Diagram – Alle Shape-Eigenschaften lesen

So lesen Sie alle Formeigenschaften mitAspose.Diagram Java für PHP , Anrufread_all_shape_properties Methode vonReadShapeData Modul. Hier sehen Sie Beispielcode.

PHP-Code

 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 – Lesen Sie eine Shape-Eigenschaft nach Namen

So lesen Sie eine Formeigenschaft nach Namen mitAspose.Diagram Java für PHP , Anrufread_shape_property_by_name Methode vonReadShapeData Modul. Hier sehen Sie Beispielcode.

PHP-Code

 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;

}

}

Laufcode herunterladen

Download**Visio Formdaten lesen (Aspose.Diagram)**von einer der unten genannten Social-Coding-Sites: