28require_once(
'tcpdf_include.php');
35$pdf->SetAuthor(
'Nicola Asuni');
36$pdf->SetTitle(
'TCPDF Example 028');
37$pdf->SetSubject(
'TCPDF Tutorial');
38$pdf->SetKeywords(
'TCPDF, PDF, example, test, guide');
41$pdf->setPrintHeader(
false);
42$pdf->setPrintFooter(
false);
57if (@file_exists(dirname(__FILE__).
'/lang/eng.php')) {
58 require_once(dirname(__FILE__).
'/lang/eng.php');
59 $pdf->setLanguageArray(
$l);
64$pdf->SetDisplayMode(
'fullpage',
'SinglePage',
'UseNone');
67$pdf->SetFont(
'times',
'B', 20);
69$pdf->AddPage(
'P',
'A4');
70$pdf->Cell(0, 0,
'A4 PORTRAIT', 1, 1,
'C');
72$pdf->AddPage(
'L',
'A4');
73$pdf->Cell(0, 0,
'A4 LANDSCAPE', 1, 1,
'C');
75$pdf->AddPage(
'P',
'A5');
76$pdf->Cell(0, 0,
'A5 PORTRAIT', 1, 1,
'C');
78$pdf->AddPage(
'L',
'A5');
79$pdf->Cell(0, 0,
'A5 LANDSCAPE', 1, 1,
'C');
81$pdf->AddPage(
'P',
'A6');
82$pdf->Cell(0, 0,
'A6 PORTRAIT', 1, 1,
'C');
84$pdf->AddPage(
'L',
'A6');
85$pdf->Cell(0, 0,
'A6 LANDSCAPE', 1, 1,
'C');
87$pdf->AddPage(
'P',
'A7');
88$pdf->Cell(0, 0,
'A7 PORTRAIT', 1, 1,
'C');
90$pdf->AddPage(
'L',
'A7');
91$pdf->Cell(0, 0,
'A7 LANDSCAPE', 1, 1,
'C');
97$pdf->setPage(1,
true);
99$pdf->Cell(0, 0,
'A4 test', 1, 1,
'C');
101$pdf->setPage(2,
true);
103$pdf->Cell(0, 0,
'A4 test', 1, 1,
'C');
105$pdf->setPage(3,
true);
107$pdf->Cell(0, 0,
'A5 test', 1, 1,
'C');
109$pdf->setPage(4,
true);
111$pdf->Cell(0, 0,
'A5 test', 1, 1,
'C');
113$pdf->setPage(5,
true);
115$pdf->Cell(0, 0,
'A6 test', 1, 1,
'C');
117$pdf->setPage(6,
true);
119$pdf->Cell(0, 0,
'A6 test', 1, 1,
'C');
121$pdf->setPage(7,
true);
123$pdf->Cell(0, 0,
'A7 test', 1, 1,
'C');
125$pdf->setPage(8,
true);
127$pdf->Cell(0, 0,
'A7 test', 1, 1,
'C');
134$pdf->Output(
'example_028.pdf',
'I');
PHP class for generating PDF documents without requiring external extensions.
const PDF_PAGE_FORMAT
Page format.
const PDF_CREATOR
Document creator.
const PDF_MARGIN_BOTTOM
Bottom margin.
const PDF_FONT_MONOSPACED
Default monospaced font name.
const PDF_MARGIN_TOP
Top margin.
const PDF_PAGE_ORIENTATION
Page orientation (P=portrait, L=landscape).
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.