如何使用PHPWord将外部图像添加到word文档?

时间:2018-01-10 06:13:09

标签: php docx phpword

我可以使用嵌入图像创建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存档中。

但我不需要下载图片。如何插入与外部资源相关的图像?

0 个答案:

没有答案