Leer Visio datos de forma en PHP
Contents
[
Hide
]
Aspose.Diagram - Leer todas las propiedades de forma
Para leer todas las propiedades de forma usandoAspose.Diagram Java para PHP , llamarread_all_shape_properties método deLeerFormaDatos módulo. Aquí puedes ver el código de ejemplo.
Código 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 - Leer una propiedad de forma por nombre
Para leer una propiedad de forma por nombre usandoAspose.Diagram Java para PHP , llamarleer_forma_propiedad_por_nombre método deLeerFormaDatos módulo. Aquí puedes ver el código de ejemplo.
Código 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;
}
}
Descargar código de ejecución
Descargar**Leer Visio Datos de forma (Aspose.Diagram)**de cualquiera de los sitios de codificación social mencionados a continuación: