我正在使用TCPDF在magento中生成PDF。使用HTML看起来很好,因为它可以根据需要生成电子邮件退出,也可以生成PDF。但问题出现在PDF的第二页,其中存在缩进问题。像:
您可以看到该表正在从第二页开始向前迈出一步。知道为什么这很开心。
这是我的代码:
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$pdf->SetAutoPageBreak(true , 5);
$pdf->SetMargins(2 , 5, 2);
$pdf->startPage();
$pdf->setImageScale(1.5);
$emailtext = Mage::helper('request4quote/email')->sendRequestProposalNotification($quote, false, true);
// echo $emailtext;
$pdf->writeHTML($emailtext, true, 0, true, true);
$pdf->endPage();
if ($storeid) {
$appEmulation->stopEnvironmentEmulation($initial);
}
$rfqfilename = 'rfq_' . $quote->getId() . '.pdf';
if(!$saveToDisk) {
return $pdf->Output($rfqfilename);
} else if ($saveToDisk){
$filePath = $this->getFilePath() . $rfqfilename;
$pdf->Output($filePath, 'F');
return $filePath;
}
任何解决方案的家伙?