Не удается прочитать изображение из интранета, экспорт PHP в слово - PullRequest
0 голосов
/ 17 мая 2018

Я хочу экспортировать свою страницу, включив мое изображение в Microsoft Word, Но у меня есть проблема, мое изображение не отображается словом Microsoft, а отображается только на веб-странице.

это мой код

<?php
    header('Content-type: application/x-msword');
    header("Content-Disposition: attachment; filename=myfile.doc" );
?>
     <!-- image from intranet -->
    <img src="http://192.168.100.97/i/xxx/header_surat_doc.jpg">

    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the `1500s` when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>

Но когда я загружаю файл word это изображение не показывают

enter image description here

Помоги мне. Спасибо в

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...