簡體   English   中英

FPDF中的FPDF分頁符

[英]FPDF page break in fpdf

我正在使用PHP和FPDF生成帶有項目列表的PDF。 我的問題是,項目無法轉到第二頁或第三頁。

我想在pdf的第二頁中打印下一個數據塊。 有人請幫助我。 我已經用過setautopage break()但不能正常工作。
請幫忙!

       <?php

        require('fpdf.php');

        class PDF extends FPDF {

            function Header() { 

                $this->SetFont('Arial','B',10);    
                $this->Rect(50,30,100,30,'F');
                $this->Text(80,45,"3D");
                $this->SetXY(20,20);
                $this->Cell(30,10,'A',1,0,'L');             
                $this->SetXY(80,20);
                $this->Cell(30,10,'B',1,0,'L');                                         
                $this->SetXY(80,60);
                $this->Cell(30,10,'C',1,1,'L');             
                $this->SetXY(150,60);
                $this->Cell(30,10,'D',1,1,'L');             
            }   

            function Footer() {
                $this->SetY(-12);
                $this->Cell(169,20,'Page '.$this->PageNo().'/{nb}',0,0,'C');   
            }

            $pdf=new PDF();
            $pdf->AddPage(); 
            $pdf->SetFont('Arial','B',16);
            $pdf->AliasNbPages();
            $pdf->Output();

為此 ,您將需要使用GetYAddpage

Use GetY to get the current position, subtract it from the height of your document. If that is less than 6x (you have 6 rows) your multicell height, then force a page break by using AddPage.

在這里查看詳細答案

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM