我可以使用嵌入图像创建word文档:
// Remote image
$source = 'http://php.net/images/logos/php-med-trans-light.gif';
$section->addText("Remote image from: {$source}");
$section->addImage($source);
在这种情况下,图像将使用file_get_contents()
下载(不会超时!)并包含在docx存档中。
但我不需要下载图片。如何插入与外部资源相关的图像?