Establezca los datos de relleno de Visio Shape en PHP
Contents
[
Hide
]
Aspose.Diagram - Establecer Visio Datos de relleno de forma
Para configurar los datos de relleno de la forma Visio usandoAspose.Diagram Java para rubí , simplemente invocarEstablecerFormaRellenarDatos módulo. Aquí puedes ver el código de ejemplo.
Código PHP
# Create instance of Diagram
$diagram = new Diagram($dataDir."Drawing.vsd");
$shapes=$diagram->getPages()->getPage(0)->getShapes();
$i = 0;
while ($i<sizeof($shapes->getCount())) {
$shape = $shapes->get($i);
if ($shape->getNameU() == "rectangle" && $shape->getID() == 1) {
$shape->getFill()->getFillBkgnd()->setValue($diagram->getPages()->getPage(0)->getShapes()->getShape(0)->getFill()->getFillBkgnd()->getValue());
$shape->getFill()->getFillForegnd()->setValue("#ebf8df");
}
$i += 1;
}
\# Save diagram
$saveFileFormat=new SaveFileFormat();
$diagram->save($dataDir."SetShapeFillData.vdx",$saveFileFormat->VDX);
print "Set visio shape's fill data.".PHP_EOL;
}
Descargar código de ejecución
Descargar**Establecer Visio Datos de relleno de la forma (Aspose.Diagram)**de cualquiera de los sitios de codificación social mencionados a continuación: