1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
<?php
include '../fpdf/fpdf.php';
include '../fpdf-easytable-master/exfpdf.php';
include '../fpdf-easytable-master/easyTable.php';
$pdf=new exFPDF();
$pdf->AddPage();
$pdf->SetFont('helvetica','',10);
$table=new easyTable($pdf, '{130, 20}','align:C{LC};border:1; border-color:#a1a1a1; ');
$table->rowStyle('align:{CCCR};valign:M;bgcolor:#000000; font-color:#ffffff; font-family:times; font-style:B;');
$table->easyCell('Description');
$table->easyCell('Quantity');
$table->printRow(); |
Partager