HTML2PDF图片代码无效

时间:2018-02-01 11:30:15

标签: php html fpdf

我有以下HTML代码以pdf格式显示但图片代码无效

$html.= "<h2>Header</h2>\n";
$html.= "<p>Text</p>\n";
$html.= "<img src=" . $path1 .">\n";

 $pdf=new PDF_HTML();
    $pdf->SetFont('Arial','',12);
    $pdf->WriteHTML($html);
    $pdf->Output('F',$filename);

1 个答案:

答案 0 :(得分:0)

您必须使用pdf-&gt; image来显示图像。例如: -

$pdf->Image('logo.png',10,10,-300);

对于引用,您可以学习here