tcpdf生成获取水平线
tcpdf generation getting horizontal line
我正在生成一个包含一些数据的 pdf 文件。我在生成的 pdf 中得到一条水平线。为什么我得到这个我找不到。任何人都可以在我错的地方帮助我。这是我的代码。一些代码进入 for 循环。
<?php
$start=180001;
$stop=180005;
require_once('../tcpdf/tcpdf.php');
require_once('../tcpdf/fonts/times.php');
$file = new TCPDF();
$file->SetTitle ( 'Blank OMR generation' );
$file->SetFont ( 'times', '', 20 );
for($i=$start;$i<=$stop;$i++)
{
}
$file->Output( 'blank_omr.pdf', 'I' );
?>
尝试禁用 headers,如文档示例 https://tcpdf.org/examples/example_002/:
$file->setPrintHeader(false);
我正在生成一个包含一些数据的 pdf 文件。我在生成的 pdf 中得到一条水平线。为什么我得到这个我找不到。任何人都可以在我错的地方帮助我。这是我的代码。一些代码进入 for 循环。
<?php
$start=180001;
$stop=180005;
require_once('../tcpdf/tcpdf.php');
require_once('../tcpdf/fonts/times.php');
$file = new TCPDF();
$file->SetTitle ( 'Blank OMR generation' );
$file->SetFont ( 'times', '', 20 );
for($i=$start;$i<=$stop;$i++)
{
}
$file->Output( 'blank_omr.pdf', 'I' );
?>
尝试禁用 headers,如文档示例 https://tcpdf.org/examples/example_002/:
$file->setPrintHeader(false);