我正在使用TCPDF在Wordpress环境中生成pdf。但是,在本地计算机上下载后加载PDF或打开文件时遇到问题。
以下是我的代码示例:
$stylesheet_root = get_stylesheet_directory();
require_once($stylesheet_root.'/pdf/TCPDF-master/tcpdf.php');
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$pdf->SetTitle('Report');
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
// set auto page breaks
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
// set image scale factor
$pdf->setImageScale(2.1);
// set some language-dependent strings (optional)
if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {
require_once(dirname(__FILE__).'/lang/eng.php');
$pdf->setLanguageArray($l);
}
$pdf->AddPage('P');
$pdf->writeHTMLCell(60, 30, '', '20', '<img src="'.$imagehref.'"/> ');
$pdf->MultiCell(90, 30, "\n\n\n" . 'REPORT', 0, 'L', 0, 1, '', '', true);
// Multicell test
$pdf->MultiCell(10, 15, 'S/No', 1, 'C', 1, 0, '', '', true);
$pdf->MultiCell(25, 15, 'Total Price', 1, 'C', 1, 1, '', '', true);
$pdf->MultiCell(10, 30, $count, 0, 'C', 0, 0, $x, $y, true);
$pdf->MultiCell(25, 30, 'S$ ' . $totalProductPrice, 0, 'C', 0, 1, '', '', true);
// reset pointer to the last page
$pdf->lastPage();
ob_clean();
$pdf->Output('example_007.pdf', 'D');
ob_end_clean();
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。