PDF打印错误

时间:2011-09-30 13:01:51

标签: php tcpdf

我正在使用TCPDF生成自定义大小的PDF文件以生成Courier Receipts。要打印此收据,我使用带有连续信纸的点阵打印机。根据TCPDF,页面高度为4英寸(288.000),但acrobat阅读器显示最小高度为4.12英寸。因此,在打印时,每个页面都会被打印机弹出4毫米,我的数据在收到时会向下移动4毫米。

$pdf->AddPage('L', 'CUSTOM_PAGE');
$pdf->writeHTMLCell($w=94, $h=34, $x=15, $y=23, $from, $border=0, $ln=0, $fill=0,     $reseth=true, $align='', $autopadding=true);

$pdf->writeHTMLCell($w=94, $h=34, $x=120, $y=23, $to, $border=0, $ln=0, $fill=0, $reseth=true, $align='', $autopadding=true); 
$pdf->lastPage(true);
$pdf->SetAutoPageBreak(true,0.00);

以上是我生成PDF的代码。

0 个答案:

没有答案