Establecer la altura y el ancho de una forma en PHP
Contents
[
Hide
]
Aspose.Diagram - Establecer la altura y el ancho de una forma
Para establecer la altura y el ancho de una forma usandoAspose.Diagram Java para PHP , simplemente invocarEstablecerFormaAlturaYAncho 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 ((string)$shape->getNameU()=="Process" && (int)(string)$shape->getID()==1) {
$shape->setWidth(2 * (int)(string)$shape->getXForm()->getWidth()->getValue());
$shape->setHeight(2 * (int)(string)$shape->getXForm()->getHeight()->getValue());
}
$i += 1;
}
\# Save diagram
$saveFileFormat=new SaveFileFormat();
$diagram->save($dataDir."SetShapeHeightAndWidth.vdx",$saveFileFormat->VDX);
print "Set height and width of shape.".PHP_EOL;
Descargar código de ejecución
Descargar**Establecer la altura y el ancho de una forma (Aspose.Diagram)**de cualquiera de los sitios de codificación social mencionados a continuación: