PHP'de Visio Diagram'in Resim Şeklini Değiştirme
Contents
[
Hide
]
Aspose.Diagram - Visio Diagram’in Resim Şeklini Değiştirme
Visio Diagram’in Resim Şeklini Değiştirmek İçinPHP için Aspose.Diagram Java , sadece çağırmakResim Şeklini Değiştir modül. Burada örnek kodu görebilirsiniz.
PHP Kodu
# 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;
Çalışan Kodu İndir
İndirmekVisio Diagram’in (Aspose.Diagram) Resim Şeklini Değiştirmeaşağıda belirtilen sosyal kodlama sitelerinin herhangi birinden: