TCPDF多页脚

时间:2014-10-30 16:20:11

标签: php footer tcpdf

我正在使用TCPDF生成PDF文档。我遇到的问题是我试图在每页添加不同的页脚。显然,TCPDF仅为单个页脚提供解决方案。

每个页脚只包含基本的html代码,没有任何样式。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您可以像这样关闭默认页脚:

$pdf->SetPrintFooter(false);

像这样创建自己的:

$footer = 'yau man footer stuff';

然后创建自己的页脚功能:

public function _footer($input) {
    $text = $input;

    $pdf->setY(-15); // or whatever location your footer should be displayed.

    $pdf->Cell ( // or another method like Write(), WriteHTML() ..
        $width = 0, // width of the cell, not the input
        $height = 0, // height of the cell..
        $x,
        $y,
        $text = '', // your input.
        $border = 0,
        $ln = 0,
        $fill = false,
        $reseth = true,
        $align = '',
        $autopadding = true 
    );
}

通过调用$ pdf-> _footer($ footer);你创建自己的页脚