PHP 中的 FPDF 单元格内部换行符

发布于 2025-01-19 15:38:54 字数 923 浏览 0 评论 0原文

在FPDF中,有任何方法可以添加Insite $ PDF-> cell() fpdf php中的线路断裂。我也在尝试多电焊,但是形成和图像产生过多的问题我可以欺骗并在单元格中添加“/n”新线,并具有总结功能

pdf应该看起来像

现在如何实际生成PDF

我如何匹配两个

$pdf->Ln();

$current_x = $start_x;
$current_y += 0;

$pdf->SetFont('Arial', '', 10);
foreach ($result as $row) {

    $pdf->SetX(15);

 
    $pdf->Cell(20, 24, $row["id"], 'TB', '', 'C');
    $pdf->Cell(54, 24, 'Item'."\n".'RestOf', 'TB', '', '');
    $pdf->Cell(30, 24, $pdf->Image($image3, $pdf->GetX(), $pdf->GetY(), 25), 'TB', '', 'C', false);

    $pdf->Cell(25, 24, 'QTY', 'TB', 0, '');
    $pdf->Cell(25, 24, 'PRICE ', 'TB', 0, '');
    $pdf->Cell(25, 24, 'TOTAL', 'TB', 0, '');

    $pdf->Ln();
}

In FPDF there is any way to add InSite $pdf->Cell() Line Break In FPDF PHP. I am also trying MultiCell but formating and image creating a too much problems can I trick and add "/n" new line in cell with wrap-up functionality

PDF Should Be Look Like This

How Actually Fpdf Generate PDF Now

How can I match both

$pdf->Ln();

$current_x = $start_x;
$current_y += 0;

$pdf->SetFont('Arial', '', 10);
foreach ($result as $row) {

    $pdf->SetX(15);

 
    $pdf->Cell(20, 24, $row["id"], 'TB', '', 'C');
    $pdf->Cell(54, 24, 'Item'."\n".'RestOf', 'TB', '', '');
    $pdf->Cell(30, 24, $pdf->Image($image3, $pdf->GetX(), $pdf->GetY(), 25), 'TB', '', 'C', false);

    $pdf->Cell(25, 24, 'QTY', 'TB', 0, '');
    $pdf->Cell(25, 24, 'PRICE ', 'TB', 0, '');
    $pdf->Cell(25, 24, 'TOTAL', 'TB', 0, '');

    $pdf->Ln();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文