Ersetzen Sie eine Bildform des Visio Diagram in PHP
Contents
[
Hide
]
Aspose.Diagram - Ersetzen Sie eine Bildform von Visio Diagram
So ersetzen Sie eine Bildform von Visio mit DiagramAspose.Diagram Java für PHP , einfach aufrufenBildform ersetzen Modul. Hier sehen Sie Beispielcode.
PHP-Code
# Create instance of Diagram
$diagram = new Diagram($dataDir."Drawing.vsd");
\# convert image into bytes array
$fi = new File($dataDir."star.png");
$files=new Files();
$file_content = $files->readAllBytes($fi->toPath());
$shapes = $diagram->getPages()->getPage("Flow 1")->getShapes();
$i = 0;
$typeValue=new TypeValue();
while ($i<(int)(string)$shapes->getCount()) {
$shape = $shapes->get($i);
\# Filter shapes by type Foreign
if ($shape->getType() == $typeValue->FOREIGN){
\# replace picture shape
$shape->getForeignData()->setValue($file_content);
}
$i+=1;
}
\# Save diagram
$saveFileFormat=new SaveFileFormat();
$diagram->save($dataDir."ReplacePictureShape.vdx", $saveFileFormat->VDX);
print "Replaced picture shape successfully!".PHP_EOL;
Laufcode herunterladen
Download**Ersetzen Sie eine Bildform des Visio Diagram (Aspose.Diagram)**von einer der unten genannten Social-Coding-Sites: