在PHPWord中插入图像并设置为背景[重复]

yzuktlbb  于 2023-06-28  发布在  PHP
关注(0)|答案(1)|浏览(181)

此问题已在此处有答案

How to add/set images on PHPOffice/PHPWord Template?(9个回答)
5天前关闭。
我想插入一个图像到我的docx与PHPWord和设置为背景或发送到后面。但是文件中给出的代码似乎不起作用,并且有一些错误。我希望你们能帮我解决问题。谢谢你!
下面是我的示例代码,关于我的PHPWord问题。

$templateProcessor = new TemplateProcessor('Template.docx');

$templateProcessor->setImageValue('UserLogo', array('path' => 'images/background.jpg', 'width' => 100, 'height' => 100, 'ratio' => false));

    return array('path' => SlowFeatureImageGenerator::make(), 'width' => 100, 'height' => 100, 'ratio' => false);
});

我是PHPWord新手。

相关问题