I need to port a complex report to PHP with TCPDF. The report is vertically divided in several sections. Every section consists of 2-3 blocks of text, of different heights. I implemented this using one call to WriteCell() for every block of text. At the last block of every section, I set the argument "ln" to 1, so that the next WriteCell will start on a new section. This works well when the last WriteCell in a section is the longest text; otherwise, the next section will overlap. See code below: in section A, the last block has 3 lines of text and is the longest of the section, so section A and section B are correctly separated; in section B, the first block is longer than the second (i.e. last), so section B and C overlap. How do I assure proper spacing between sections?
<?php
require_once('tcpdf/config/lang/eng.php');
require_once('tcpdf/tcpdf.php');
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->AddPage();
// Section A
$pdf->MultiCell( 50, 0, "Line1\nLine2", 1, "L", 0, 0 ) ;
$pdf->MultiCell( 50, 0, "Line1\nLine2\nLine3", 1, "L", 0, 0 ) ;
// this is the last block, is longer than the other 2, so ok!
$pdf->MultiCell( 0, 0, "Line1\nLine2\nLine3", 1, "L", 0, 1 ) ;
// Section B
// this block is longer than the last one
$pdf->MultiCell( 50, 0, "Line1\nLine2\nLine3", 1, "L", 0, 0 ) ;
// Last block is shorter than the previous one, so section B and C overlap
$pdf->MultiCell( 0, 0, "Line1\nLine2", 1, "L", 0, 1 ) ;
// Section C
$pdf->MultiCell( 50, 0, "Line1\nLine2", 1, "L", 0, 0 ) ;
$pdf->MultiCell( 50, 0, "Line1\nLine2\nLine3", 1, "L", 0, 0 ) ;
$pdf->MultiCell( 0, 0, "Line1\nLine2", 1, "L", 0, 1 ) ;
$pdf->Output( "test.pdf", 'I' );
?>