我遇到了下一个问题:
我尝试在一个 magento phtml 中查看 pdf,这是我的代码:
$fileName = Mage::getConfig()->getOptions()->getMediaDir()."/pdf/Gutschein-v2.pdf";
$pdf = new FPDI();
$pdf->addPage();
$pdf->setSourceFile($fileName);
$tplIdx = $pdf->importPage(1);
// use the imported page and place it at point 10,10 with a width of 100 mm
$pdf->useTemplate($tplIdx, 10, 10, 100);
// now write some text above the imported page
$pdf->SetFont('Helvetica');
$pdf->SetTextColor(255, 0, 0);
$pdf->SetXY(30, 30);
$pdf->Write(0, 'This is just a simple text');
//ob_start();
$pdf->Output();
//ob_end_flush();
当我评论 ob_start(); 我在屏幕上看到下一个错误:FPDF 错误:一些数据已经输出,无法发送 PDF 文件
当我没有评论我看到正常的 pdf 格式但没有看到我的 pdf 的白页时,我尝试使用纯 php 来做到这一点,一切都很好,例如: http: //milton.bommelme.com/fpdf/pdf。 php
但是对于magento,有些东西不是直觉,也许我不知道如何加载pdf或其他东西。我对magento很陌生。
谢谢你。