此问题已在此处有答案:
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新手。
1条答案
按热度按时间wydwbb8l1#
我也有同样的问题,但我认为这将有助于我们在这里。How to add/set images on PHPOffice/PHPWord Template?