使用TCPDF自定义页眉页脚

新建一个php类型文件,我取名为pdf.php:

require('tcpdf.php');
class PDF extends TCPDF
{
function Header() //设定页眉
{
$this->SetFont('stsongstdlight','',10);
$this->Write(10,'IPv6协议一致性测试报告','',false,'C');

$this->Ln(20);
}

function Footer() //设定页脚
{
$this->SetY(-15);
$this->SetFont('stsongstdlight','',10);
$this->Cell(0,10,'第'.$this->PageNo().'页',0,0,'R');
}
}

我因为是在class.php类型文件require('tcpdf/pdf.php');  //注意自己的文件路径

所以在report.class.php中添加:

         $pdf->setPrintHeader(true); //设置打印页眉
         $pdf->setPrintFooter(true); //设置打印页脚

(如果添加在  $pdf->AddPage();前,则是从上一个页面开始,如果实在其之后,则是从下一页面开始显示)
 

你可能感兴趣的:(IPv6)