PHP TCPDF remove header's bottom border

Bill picture Bill · Oct 31, 2011 · Viewed 45.9k times · Source

I am trying to create a header in TCPDF, however it always have a border underneath of it. Is there a way I can remove the bottom border?

Answer

András picture András · Jun 18, 2013

This works for some versions:

// Call before the addPage() method
$pdf->SetPrintHeader(false);
$pdf->SetPrintFooter(false);