Complete website in Rs. 5,000 with Free Hosting & Domain. Offer ends in  00:00:00
Back to Blog

TCPDF Documentaion

Learn to use TCPDF within minutes with this short walkthrough guide.

Jan 9, 2023 Updated: Jan 9, 2023

Download TCPDF

Go to the github.com/tecnickcom/tcpdf and download the code. You can use this direct link to download zip file.

Minimal example

Here’s a very basic and only required code to create a pdf.

$path = getcwd() . '/TCPDF-main/tcpdf.php';
if ( file_exists($path) ) {
    require_once($path);
    $pdf = new TCPDF('P', 'mm', 'A4', true, 'UTF-8', false);
    $pdf->setPrintHeader(false); // remove default page header
    $pdf->SetFooterMargin(10); // add default page footer with margin
    $pdf->AddPage(); // adding a page
    $html = 'Hello World!';
    $pdf->writeHtml($html);
    $pdf->Output('example.pdf', 'I'); // sending pdf inline to browser
} else {
    error_log('TCPDF file not found.');
}

Complete Example

$path = getcwd() . '/TCPDF-main/tcpdf.php';
if ( file_exists($path) ) {
    require_once($path);
    $pdf = new TCPDF('P', 'mm', 'A4', true, 'UTF-8', false);
    $pdf->setPrintHeader(false); // remove default page header
    $pdf->SetFooterMargin(10); // add default page footer with margin
    $pdf->AddPage(); // adding a page
    $html = 'Hello World!';
    $pdf->writeHtml($html);
    $pdf->Output('example.pdf', 'I'); // sending pdf inline to browser
} else {
    error_log('TCPDF file not found.');
}

Set Margins

// set margins left, top, right
$pdf->SetMargins(5, 10, 5);
// set page header margin top
$pdf->SetHeaderMargin(25);
// set page footer margin bottom
$pdf->SetFooterMargin(8);

Set automatic page breaks

// set auto page breaks
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);

Add Font

$pdf->setFontSubsetting(true);
$pdf->SetFont('dejavusans', '', 12, '', true);

Create pdf file without header and footer date. You can optionally remove the header but keep the footer as it contains the number of page related data.

$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);

Output PDF file

Send the document to a given destination: string, local file or browser. In the last case, the plug-in of a browser to display pdf file may be used (if present) or a download (“Save as” dialog box) may be forced. The method first calls Close() if necessary to terminate the document.

  1. I: send the file inline to the browser (default).
  2. D: send to the browser and force a file download with the name given.
  3. F: save to a local server file with the name given by name.
  4. S: return the document as a string. name is ignored.
  5. FI: equivalent to F + I option.
  6. FD: equivalent to F + D option.
$pdf->Output('my-pdf-file.pdf', 'D');

Bonus Tips

Get current page number with $this->PageNo() as integer. This is useful when you want to align text to the right because $this->getAliasNumPage() does not return integer but returns a placeholder string ”{:pnp:}“.

class MyPDF extends TCPDF {
    function Footer(){
        $curr_page = $this->PageNo();
        $this->Cell(0, 0, 'Page ' . $curr_page, 'T', 1, 'R');
    }
}
Contact

Got A Question For Us?

Feel free to ask anything directly on call or fill the form and we will contact back within few hours.