1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <?
ob_start();
// Vérifie quelle document est demander BC, Fct...
require_once('/cmsClass/TCPDF/config/lang/eng.php');
require_once('/cmsClass/TCPDF/tcpdf.php');
// create new PDF document
$pdf = new TCPDF('P', 'mm', 'A4', true, 'UTF-8', false);
// set document information
$pdf->SetCreator(PDF_CREATOR);
// set font
$pdf->SetFont('helvetica', '', 16);
// add a page
$pdf->AddPage();
// print a line using Cell()
$pdf->Cell(0, 12, 'Example 001 - àèéìòù', 1, 1, 'C');
$pdf->Cell(15, 12, '4 ароматические композиции для сезонного и особого применения. В каждую входят 5-6 эфирных масел, имеющих сертификаты о природном происхождении BIO и/или B.D.I.H', 1, 1, 'C');
//Close and output PDF document
$pdf->Output('example_001.pdf', 'I');
ob_end_flush();
?> |
Partager