I am using TCPDF to generate PDFs. The PDF uses a PDF-template via the fpdi-class. Some of the generated PDFs are onepaged. But sometimes I have a second page. I use $pdf->MultiCell to output my content. The page-break works fine via $pdf->SetAutoPageBreak(true).

Now my problem: I need a different top-margin on the second page. What I tried so far is the use of the AcceptPageBreak()-function - unfortunaly with no success.

With the following code-snipped I managed to change the margin on the second page. But it adds one empty page at the end of the PDF.

public function AcceptPageBreak() {

    $this->SetMargins(24, 65, 24, true);
    $this->AddPage();        
    return false;

}

I tried to remove the last page with $pdf->deletePage but it does not work. I tried to insert some conditions into the function:

public function AcceptPageBreak() {
    if (1 == $this->PageNo()) {
        $this->SetMargins(24, 65, 24, true);
        $this->AddPage();        
        return false;
    } else {
        return false;
    }

}

This works fine for PDFs with text for 2 pages. But now I get allways two paged PDFs - even if I have just a small text. It seems that the function "AcceptPageBreak()" is called every time the PDF is generated.

How can I prevent the empty page at the end of my PDF?

link|improve this question
feedback

1 Answer

I finally found a solution to my own question. Maybe it's interesting for someone else with the same problem.

I took the function AcceptPageBreak() like posted above (Version 1). After saving the PDF I import the PDF into a new PDF without the last page and save the new PDF.

Here the code:

 $pdf = new MYPDF();  

 $pdf->SetMargins(24, 54);        

 $pdf->AddPage();

 ...

 $pdf->MultiCell('0', '', $text, '', 'L');

 $pdf->lastPage();

 $lastPage = $pdf->PageNo() + 1;

 $pdf->Output($filePath, 'F');

 // remove last page

 $finalPdf = new FPDI();
 $finalPdf->setSourceFile($filePath);

 for ($i=1; $i < $lastPage; $i++) {
     $finalPdf->AddPage();
     $tplIdx = $finalPdf->importPage($i);
     $finalPdf->useTemplate($tplIdx);            
 }
 $finalPdf->Output($filePath, 'F');

Hope it helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.