AddPage() in tcpdf automatically calls Header and Footer. How do I eliminate/override this?

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Use the SetPrintHeader(false) and SetPrintFooter(false) methods before calling AddPage(). Like this:

$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, 'LETTER', true, 'UTF-8', false);
$pdf->SetPrintHeader(false);
$pdf->SetPrintFooter(false);
$pdf->AddPage();
link|improve this answer
This post explains how to customize it: codeigniter.com/forums/viewthread/120962/#869737 – d2burke May 13 '11 at 23:39
feedback

How do I eliminate/override this?

Also, Example 3 in the TCPDF docs shows how to override the header and footer with your own class.

link|improve this answer
feedback

// set default header data $pdf->SetHeaderData('', PDF_HEADER_LOGO_WIDTH, 'marks', '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));

With the help of above functions you can change header and footer.

link|improve this answer
Thanks for your belated answer. I had wanted to eliminate the Header/Footer, and Brian's way did it. – ChuckO Oct 15 '10 at 12:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.