0

我使用以下代码使用 php 将 html 转换为 doc。它在 pc 上运行良好,但是当从任何移动设备访问时,文本部分显示正常,但嵌入图像不显示。它显示 img src 链接,即http ://domain/image.jpg但不是图像。我该如何解决这个问题?

<? header("Content-Type: application/vnd.ms-word");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("content-disposition: attachment;filename=Report.doc");
?>
4

1 回答 1

0

这里的最后一个示例中,尝试像这样将图像添加到您的文档中

$source = file_get_contents('/path/to/my/images/earth.jpg');
$textrun->addImage($source);
于 2020-05-14T12:58:14.270 回答