打印发票时,我在pdf中遇到阿拉伯字符问题 这个问题似乎与zend的pdf lib有关 所以我决定使用tcpdf
现在大多数关于此的博客只是解释了你的lib的tcpdf步骤,并从你的代码中调用它
但我不知道在哪里调用它并用它来创建我的自定义pdf然后输出pdf
我试图从此文件中的get Pdf函数调用它
应用程序/代码/核心/法师/销售/型号/订购/ PDF / Invoice.php
但是我没有工作,它给了我一个错误,说某些事情已经过时了
我应该在哪里使用tcpdf lib并禁用默认pdf zend lib的功能?
感谢
答案 0 :(得分:0)
通过下面的stackoverflow链接,只为你的基金会提出这个问题.....
create a pdf with tcpdf in magento
这将为您提供直接解决方案 ....
http://www.ashrafulabedein.com/use-tcpdf-magento/
$tcpdf = new TCPDF_TCPDF();
//your htmls here
$html = '<h1> hello world </h1>';
$tcpdf->AddPage();
$tcpdf->writeHTML($html, true, false, true, false, '');
$tcpdf->lastPage();
$tcpdf->Output('report_per_route_'.time().'.pdf', 'I');