// set default header data
$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE . ' 010', 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 (optional)
if (@file_exists(dirname(__FILE__) . '/lang/eng.php')) {
    require_once dirname(__FILE__) . '/lang/eng.php';
    $pdf->setLanguageArray($l);
}
// ---------------------------------------------------------
// print TEXT
$pdf->PrintChapter(1, 'LOREM IPSUM [TEXT]', 'data/chapter_demo_1.txt', false);
// print HTML
$pdf->PrintChapter(2, 'LOREM IPSUM [HTML]', 'data/chapter_demo_2.txt', true);
// ---------------------------------------------------------
// Close and output PDF document
$pdf->Output('example_010.pdf', 'I');
//============================================================+
// END OF FILE
//============================================================+
Ejemplo n.º 2
0
$pdf->SetMargins(10, 4, 0, true);
$pdf->SetHeaderMargin(0);
$pdf->SetFooterMargin(0);
//set auto page breaks
$pdf->SetAutoPageBreak(TRUE, 0);
$result = getLocalitati();
$text = "";
$i = 0;
while ($row = mysql_fetch_assoc($result)) {
    $i++;
    if ($i % 4 == 0 || $i % 8 == 0) {
        $text = $text . "<div align=\"center\"><strong>= COLET CADOU, GRATUIT =</strong></div><br /><strong><u><i>Destinatar:</i></u></strong><br />Reprezentantul localitatii<br />" . $row["localitate"] . "<br />in Consiliul Primariei (sau Consilierului local)<br />loc. " . $row["localitate"] . "<br /><table><tr><td align=\"left\">jud. " . $row["judet"] . "</td><td align=\"right\"><img src=\"imprimate.png\" width=\"50\"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td></tr></table>";
    } else {
        $text = $text . "<div align=\"center\"><strong>= COLET CADOU, GRATUIT =</strong></div><br /><strong><u><i>Destinatar:</i></u></strong><br />Reprezentantul localitatii<br />" . $row["localitate"] . "<br />in Consiliul Primariei (sau Consilierului local)<br />loc. " . $row["localitate"] . "<br /><table><tr><td align=\"left\">jud. " . $row["judet"] . "</td><td align=\"right\"><img src=\"imprimate.png\" width=\"60\"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td></tr></table>";
    }
    if ($i % 8 == 1 || $i % 8 == 5) {
        $text .= "<br />";
    }
    if ($i % 8 == 0) {
        $pdf->PrintChapter($text, true);
        $text = "";
    }
}
if ($i % 8 != 0) {
    $pdf->PrintChapter($text, true);
}
//Close and output PDF document
$pdf->Output('etichete.pdf', 'I');
//============================================================+
// END OF FILE
//============================================================+