diff --git a/examples/example_057.php b/examples/example_057.php new file mode 100644 index 0000000..389f6f6 --- /dev/null +++ b/examples/example_057.php @@ -0,0 +1,113 @@ +SetCreator(PDF_CREATOR); +$pdf->SetAuthor('Nicola Asuni'); +$pdf->SetTitle('TCPDF Example 057'); +$pdf->SetSubject('TCPDF Tutorial'); +$pdf->SetKeywords('TCPDF, PDF, example, test, guide'); + +// set default header data +$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE, PDF_HEADER_STRING); + +// set header and footer fonts +$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN)); +$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA)); + +// set default monospaced font +$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED); + +//set margins +$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT); +$pdf->SetHeaderMargin(PDF_MARGIN_HEADER); +$pdf->SetFooterMargin(PDF_MARGIN_FOOTER); + +//set auto page breaks +$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM); + +//set image scale factor +$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO); + +//set some language-dependent strings +$pdf->setLanguageArray($l); + +// --------------------------------------------------------- + +// set font +$pdf->SetFont('helvetica', '', 14); + +// add a page +$pdf->AddPage(); + +$pdf->setCellHeightRatio(3); + +$pdf->SetXY(17, 50); + +$pdf->Cell(35, 0, 'Cell Top', 1, $ln=0, 'C', 0, '', 0, false, 'T'); +$pdf->Cell(35, 0, 'Font Top', 1, $ln=0, 'C', 0, '', 0, false, 'A'); +$pdf->Cell(35, 0, 'Font Baseline', 1, $ln=0, 'C', 0, '', 0, false, 'L'); +$pdf->Cell(35, 0, 'Font Bottom', 1, $ln=0, 'C', 0, '', 0, false, 'D'); +$pdf->Cell(35, 0, 'Cell Bottom', 1, $ln=0, 'C', 0, '', 0, false, 'B'); + + + +$pdf->SetXY(30, 70); + +$pdf->Cell(50, 0, 'Text Top', 1, $ln=0, 'C', 0, '', 0, false, 'T', 'T'); +$pdf->Cell(50, 0, 'Text Center', 1, $ln=0, 'C', 0, '', 0, false, 'T', 'M'); +$pdf->Cell(50, 0, 'Text Bottom', 1, $ln=0, 'C', 0, '', 0, false, 'T', 'B'); + + +$linestyle = array('width' => 0.1, 'cap' => 'butt', 'join' => 'miter', 'dash' => '', 'phase' => 0, 'color' => array(255, 0, 0)); +$pdf->Line(15, 50, 195, 50, $linestyle); + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +// reset pointer to the last page +$pdf->lastPage(); + +// --------------------------------------------------------- + +//Close and output PDF document +$pdf->Output('example_057.pdf', 'I'); + +//============================================================+ +// END OF FILE +//============================================================+ +?>