How to remove line below header and above $html in TCPDF?

Leo Delkin picture Leo Delkin · May 15, 2012 · Viewed 18.2k times · Source

How to remove line below header and above $html in TCPDF?

http://www.tcpdf.org/examples/example_001.pdf

tcpdf.org/examples.php (examples with PDF ang PHP code!)

in this example this is line below http://www.tcpdf.org and above Welcome to TCPDF. How can i remove this?

Answer

jnhghy - Alexandru Jantea picture jnhghy - Alexandru Jantea · Feb 7, 2014

As shown on the tcpdf website - examples in exemple 002 there is no header and here is the php code example.

The "magic" is done by this code:

// remove default header/footer
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);

and that is it! Hope it helps