我一直在使用TCPDF。它使用简单,输出低尺寸PDF并正在积极开发中。 以下是一个页面的代码,该页面应该只有Hello World和页脚显示页码。但是我在页面顶部有一个额外的水平线。这让我烦恼。我该如何摆脱它?
<?php
require_once('config/lang/eng.php');
require_once('tcpdf.php');
// create new PDF document
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
// set document information
$pdf->SetCreator(PDF_CREATOR);
// set default header data
// set header and footer fonts
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
//set margins
//$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
//$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);//if i comment this out the lower line disappears
//set auto page breaks
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
//set image scale factor
//$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
//set some language-dependent strings
$pdf->setLanguageArray($l);
// ---------------------------------------------------------
// set font
$pdf->SetFont('helvetica', '', 10);
// add a page
$pdf->AddPage();
// define some HTML content with style
$html = <<<EOF
Hello World
EOF;
// output the HTML content
$pdf->writeHTML($html, true, false, true, false, '');
// reset pointer to the last page
$pdf->lastPage();
// ---------------------------------------------------------
//Close and output PDF document
$pdf->Output('example_061.pdf', 'I');
?>
解决方案:
$pdf->SetPrintHeader(false);
$pdf->SetPrintFooter(false);
答案 0 :(得分:35)
只需执行此操作$pdf->setPrintHeader(false);
,顶部的行就会消失
答案 1 :(得分:4)
水平线在默认的Header()上定义。 您可以像示例n一样覆盖Header()方法。 3或禁用标题,例如n。 2。 查看TCPDF网站http://www.tcpdf.org并咨询官方论坛以获取更多信息。
答案 2 :(得分:1)
如果这里的任何人都没有解决这个问题并且他们使用FPDI导入模板,请尝试查看FPDI计算的页面高度以及TCPDF的结果页面高度。对我来说他们不匹配,除了setPrintHeader(false)之外,为了摆脱黑线,我必须在页面高度上加8,并从useTemplate函数中的y-ordinate值中减去7,如下所示: / p>
$tplidx = $pdf->ImportPage($i);
$s = $pdf->getTemplateSize($tplidx);
// TCPDF STUFF, AddPage(), etc.
$pdf->useTemplate($tplidx,0,-7,$s['w'],$s['h']+8);