我正在尝试将包含图像的单元格与包含与图像相关的详细信息的多单元格对齐,以便图像和详细信息将并排显示。在网上搜索后,我找到了一些方法来做到这一点。(我从数据库中调用了详细信息):
$pdf = new PDF();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont('Times','',12);
$image_height = 37;
$image_width = 37;
foreach($inventories as $key => $inventories) :
$image = $inventories['image'];
$resourceID = $inventories['resourceID'];
$learningcentre = $inventories['learningcentre'];
$title = $inventories['title'];
$quantity = $inventories['quantity'];
$description = $inventories['description'];
$pdf->Cell( 40, 20, $pdf->Image($imagesDirectory.$image, $pdf->GetX(), $pdf->GetY(), $image_height, $image_width), 0, 0, 'L');
$pdf->MultiCell(140,8,$resourceID."\n".$title."\n".$learningcentre."\n".$quantity."\n".$description, 1,1);
$pdf->Ln();
endforeach;
但是,当结果到达页面末尾时,图像会被截断,详细信息单元格将被推送到下一页,如下图所示
我是 FPDF 新手,一直在尝试寻找解决方案,但无济于事。任何帮助将不胜感激。谢谢!