TCPDF 中的自定义 HTML 页脚

Custom HTML footer in 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);   
    }

但是没有任何显示?

您必须先创建一个 fPDF 实例,然后才能创建您的 footer 函数。

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