如何在PHPOffice / PHPWord模板上添加/设置图像?
作者:互联网
我在PHPWord上有一个模板实例.是否可以替换或添加图像?有点像setImageValue吗?
$phpWord = new \PhpOffice\PhpWord\Template('a.docx');
$phpWord->setImageValue('IMAGE_PLACEHOLDER', 'a.jpg');
$phpWord->saveAs('b.docx');
这样的事情可能吗?
解决方法:
以下代码是来自TotPeRo的更新版本(再次感谢您的代码!),最后一个phpOffice(0.11)已经进化了一点
/**
* Set a new image
*
* @param string $search
* @param string $replace
*/
public function setImageValue($search, $replace)
{
// Sanity check
if (!file_exists($replace))
{
return;
}
// Delete current image
$this->zipClass->deleteName('word/media/' . $search);
// Add a new one
$this->zipClass->addFile($replace, 'word/media/' . $search);
}
可以用:
$document->setImageValue('image1.jpg', 'my_image.jpg');
标签:php,phpword 来源: https://codeday.me/bug/20190928/1828251.html