29 require_once(
'tcpdf_include.php');
38 $y_start = $this->
GetY();
41 $this->
MultiCell(40, 0, $left, 1,
'R', 1, 2,
'',
'',
true, 0);
44 $y_end_1 = $this->
GetY();
49 $this->
MultiCell(0, 0, $right, 1,
'J', 0, 1, $this->
GetX() ,$y_start,
true, 0);
52 $y_end_2 = $this->
GetY();
55 if (max($page_end_1,$page_end_2) == $page_start) {
56 $ynew = max($y_end_1, $y_end_2);
57 } elseif ($page_end_1 == $page_end_2) {
58 $ynew = max($y_end_1, $y_end_2);
59 } elseif ($page_end_1 > $page_end_2) {
65 $this->
setPage(max($page_end_1,$page_end_2));
76 $pdf->SetAuthor(
'Nicola Asuni');
77 $pdf->SetTitle(
'TCPDF Example 020');
78 $pdf->SetSubject(
'TCPDF Tutorial');
79 $pdf->SetKeywords(
'TCPDF, PDF, example, test, guide');
103 if (@file_exists(dirname(__FILE__).
'/lang/eng.php')) {
104 require_once(dirname(__FILE__).
'/lang/eng.php');
105 $pdf->setLanguageArray(
$l);
111 $pdf->SetFont(
'helvetica',
'', 20);
115 $pdf->Write(0,
'Example of text layout using Multicell()',
'', 0,
'L',
true, 0,
false,
false, 0);
119 $pdf->SetFont(
'times',
'', 9);
125 $pdf->SetFillColor(255, 255, 200);
127 $text =
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed imperdiet lectus. Phasellus quis velit velit, non condimentum quam. Sed neque urna, ultrices ac volutpat vel, laoreet vitae augue. Sed vel velit erat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras eget velit nulla, eu sagittis elit. Nunc ac arcu est, in lobortis tellus. Praesent condimentum rhoncus sodales. In hac habitasse platea dictumst. Proin porta eros pharetra enim tincidunt dignissim nec vel dolor. Cras sapien elit, ornare ac dignissim eu, ultricies ac eros. Maecenas augue magna, ultrices a congue in, mollis eu nulla. Nunc venenatis massa at est eleifend faucibus. Vivamus sed risus lectus, nec interdum nunc. 129 Fusce et felis vitae diam lobortis sollicitudin. Aenean tincidunt accumsan nisi, id vehicula quam laoreet elementum. Phasellus egestas interdum erat, et viverra ipsum ultricies ac. Praesent sagittis augue at augue volutpat eleifend. Cras nec orci neque. Mauris bibendum posuere blandit. Donec feugiat mollis dui sit amet pellentesque. Sed a enim justo. Donec tincidunt, nisl eget elementum aliquam, odio ipsum ultrices quam, eu porttitor ligula urna at lorem. Donec varius, eros et convallis laoreet, ligula tellus consequat felis, ut ornare metus tellus sodales velit. Duis sed diam ante. Ut rutrum malesuada massa, vitae consectetur ipsum rhoncus sed. Suspendisse potenti. Pellentesque a congue massa.';
132 for (
$i = 0;
$i < 10; ++
$i) {
142 $pdf->Output(
'example_020.pdf',
'I');
const PDF_MARGIN_BOTTOM
Bottom margin.
const PDF_MARGIN_LEFT
Left margin.
const PDF_MARGIN_HEADER
Header margin.
const PDF_HEADER_STRING
Header description string.
const PDF_FONT_SIZE_MAIN
Default main font size.
SetXY($x, $y, $rtloff=false)
Defines the abscissa and ordinate of the current position.
const PDF_FONT_SIZE_DATA
Default data font size.
const PDF_FONT_NAME_MAIN
Default main font name.
GetX()
Returns the relative X value of current position.
PHP class for generating PDF documents without requiring external extensions.
const PDF_HEADER_LOGO_WIDTH
Header logo image width in user units.
const PDF_HEADER_LOGO
Deafult image logo used be the default Header() method.
const PDF_UNIT
Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch].
const PDF_IMAGE_SCALE_RATIO
Ratio used to adjust the conversion of pixels to user units.
getPage()
Get current document page number.
const PDF_PAGE_ORIENTATION
Page orientation (P=portrait, L=landscape).
setPage($pnum, $resetmargins=false)
Move pointer at the specified document page and update page dimensions.
const PDF_MARGIN_RIGHT
Right margin.
GetY()
Returns the ordinate of the current position.
const PDF_HEADER_TITLE
Header title.
const PDF_FONT_NAME_DATA
Default data font name.
const PDF_CREATOR
Document creator.
const PDF_PAGE_FORMAT
Page format.
const PDF_FONT_MONOSPACED
Default monospaced font name.
MultiCell($w, $h, $txt, $border=0, $align='J', $fill=false, $ln=1, $x='', $y='', $reseth=true, $stretch=0, $ishtml=false, $autopadding=true, $maxh=0, $valign='T', $fitcell=false)
This method allows printing text with line breaks.
const PDF_MARGIN_TOP
Top margin.
const PDF_MARGIN_FOOTER
Footer margin.