如何在html-> pdf类中包含图像。以下是我目前正在为之工作的代码:
<?php
session_start();
class PrintSomething
{
function requestPrintSomething()
{
ob_start();
$root = "../";
$content = "";
include $root."assets/library/html2pdf/html2pdf.class.php";
$content .= "<img source = ../assets/images/Some_logo.PNG>";
$content .= "<p>Something Date on " . $date . " at ".$time .":00 </p>";
$content .= "
<tr>
<td> ".$somethinga ."</td>
<td> ".$somethingb."</td>
</tr>
";
$content .= "
</table>
";
$html2pdf = new HTML2PDF('L');
$html2pdf->WriteHTML($content);
$html2pdf->Output('Something List '.date("Y-m-d").'.pdf');
exit;}}?>
有关图书馆的一些信息:/**
* HTML2PDF Librairy - main class
*
* HTML => PDF convertor
* distributed under the LGPL License
*
* @author Laurent MINGUET <webmaster@html2pdf.fr>
* @version 4.03
*/
我希望有人知道如何包含图片,因为我无法弄明白。我已经在html中尝试了图像源,但不知怎的,我有一个致命的错误。提前致谢!
答案 0 :(得分:1)
img标签无效,src是要使用的正确属性。
$content .= "<img src='http://your_full_path/assets/images/Some_logo.PNG'>";
还可以使用图像的完整路径。