TCPDF中的自定义HTML页脚

时间:2019-02-26 11:26:53

标签: php html tcpdf

我正在尝试在TCPDF中创建信函模板,但是却在页脚中苦苦挣扎。

我添加了以下内容

$footertext="Registered Charity no XXX. Company Limited by Guarantee registered in England and Wales no XXX. <br>
Registered Office: ADDRESS HERE";

然后在PDF创建部分中添加以下内容

public function Footer() {
        // Position at 15 mm from bottom
        $this->SetY(-15);
        // Set font
        $this->SetFont('helvetica', '', 8);
        // Page number
        $this->writeHTML($footertext, false, true, false, true);   
    }

但是什么都没显示?

1 个答案:

答案 0 :(得分:1)

在创建footer函数之前,您必须创建fPDF的实例。

require('fpdf.php');
class PDF extends FPDF {
    //
    // This class extends FPDF so we may customize the header and footer
    // of the PDFs that are created
    //

    function Footer() {
        $this->SetFont('helvetica', '', 8);
        // Page number
        $this->writeHTML($footertext, false, true, false, true);   
    }  // end of the Footer function
}  // end of the PDF class