magento使用的TCPDF中的缩进问题?

时间:2015-05-28 11:46:59

标签: php html magento pdf tcpdf

我正在使用TCPDF在magento中生成PDF。使用HTML看起来很好,因为它可以根据需要生成电子邮件退出,也可以生成PDF。但问题出现在PDF的第二页,其中存在缩进问题。像:

enter image description here

您可以看到该表正在从第二页开始向前迈出一步。知道为什么这很开心。

这是我的代码:

$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;
    }

任何解决方案的家伙?

0 个答案:

没有答案