1

我正在尝试将包含图像的单元格与包含与图像相关的详细信息的多单元格对齐,以便图像和详细信息将并排显示。在网上搜索后,我找到了一些方法来做到这一点。(我从数据库中调用了详细信息):

$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 新手,一直在尝试寻找解决方案,但无济于事。任何帮助将不胜感激。谢谢!

4

1 回答 1

0

我自己是 FPDF 菜鸟,但您尝试过 AcceptPageBreak 功能吗?

像这样的东西(从 fpdf 网站复制):

function AcceptPageBreak()
{
    // Method accepting or not automatic page break
    if($this->col<2)
    {
    // Go to next column
    $this->SetCol($this->col+1);
    // Set ordinate to top
    $this->SetY($this->y0);
    // Keep on page
    return false;
    }
    else
    {
    // Go back to first column
    $this->SetCol(0);
    // Page break
    return true;
    }
}

作为参考,fpdf 教程真的很有帮助。我怀疑这个特别会帮助你做你正在做的事情。

于 2013-09-05T19:41:44.150 回答