HTML2PDF 图像标签不起作用

HTML2PDF Image tag not working

我有以下 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);

您必须使用 pdf->image 才能显示图像。例如:-

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

供参考,大家可以研究一下here