استبدل شكل صورة Visio Diagram في PHP
Contents
[
Hide
]
Aspose.Diagram - استبدال شكل صورة Visio Diagram
لاستبدال شكل صورة Visio Diagram باستخدامAspose.Diagram Java لـ PHP ، ببساطة استدعاءاستبدل الصورة وحدة. هنا يمكنك أن ترى رمز المثال.
كود PHP
# 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;
قم بتنزيل كود التشغيل
تحميل**استبدال شكل صورة Visio Diagram (Aspose.Diagram)**من أي من مواقع الترميز الاجتماعي المذكورة أدناه: