使用图像生成Doc文件

时间:2012-10-12 09:37:59

标签: php image file doc

<?php



    $docName = "testdoc";


    header("Expires: Mon, 26 Jul 2020 05:00:00 GMT"); 
    header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); 
    header("Cache-Control: no-store, no-cache, must-revalidate");
    header("Cache-Control: post-check=0, pre-check=0", false);
    header("Pragma: no-cache"); 

    header("Content-Type: application/msword; charset=ISO-8859-1");
    header("Content-Disposition: attachment; filename=\"".$docName.".doc"); 

    #/ Create and format your text using HTML, its simple stuff ... trial and error ;)
    echo '<img src="logo.gif" />';

?>

Soumya Sarkar

嗨我从谷歌获得以下代码,通过php生成一个Doc文件。但我无法在那里放任何图像。有人可以帮我吗?

2 个答案:

答案 0 :(得分:0)

它需要链接,您需要在线托管图像才能将图像显示在文档上。

试试这个并且它正在运行: -

echo "<img src='http://i.imgur.com/MJ5Sa.jpg' />";

答案 1 :(得分:0)

请点击以下链接。

http://phpword.codeplex.com/releases/view/49543

尝试。必须是有效的!