我正在尝试在FPDF中构建徽标,但我想在其旁边添加一个文本。我正在使用此库http://www.fpdf.org/en/script/script70.php
$pdf=new PDF_HTML_Table();
$pdf->AddPage();
$Image1 = '../../assets/LogoSystemName.png';
$pdf->Image($Image1, 5, null, 50); //Image
$pdf->SetFont('Arial','',10);
$pdf->WriteHTML("Rubric for event: ".$soc['event_name']." <br> test
<br>$htmlTable<br>End of the table.");
$pdf->Output();