除了页码之外,删除tcpdf中的底线

时间:2015-04-08 09:34:45

标签: php tcpdf

我使用TCPDF生成PDF文件。我想删除底线,为此我使用$pdf->SetPrintFooter(false);它正在运行,但在底线之后它显示的页码如此1/1,现在我只想删除底线页码除外。在TCPDF中是否有替代方案。

2 个答案:

答案 0 :(得分:0)

所以,如果我理解,你想要那样的东西 - > http://www.tcpdf.org/examples/example_003.pdf

代码在这里 - > http://www.tcpdf.org/examples/example_003.phps

我隔离了你需要的代码

// Page footer
public function Footer() {
    // Position at 15 mm from bottom
    $this->SetY(-15);
    // Set font
    $this->SetFont('helvetica', 'I', 8);
    // Page number
    $this->Cell(0, 10, 'Page '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');
}

如果您在询问

之前搜索有关TCPDF搜索here的内容

答案 1 :(得分:0)

创建对象后,您需要调用以下命令:

<p class="text-justify">This is a text with the class of text-justify</p>
<p>This is a text without the class of text-justify</p>
<p class="text-justify">This is a text with the class of text-justify</p>