无法使用mpdf 6.1加载PDF文档

时间:2018-11-14 17:02:41

标签: html codeigniter google-chrome pdf mpdf

我在系统中使用codeigniter,并使用mpdf 6.1生成pdf。每次打开新标签进行预览时,我在Chrome浏览器“ 无法加载PDF文档”中遇到错误。怎么了我要打印的HTML代码:

include_once APPPATH . 'third_party/mPDF/mpdf.php';

$title= 'customer';
$html .= '<html>';
$html .= '<body>';
$html .= '<table>';
$html .= '</table>';
$html .= '</body>';
$html .= '</html>';
$mpdf = new mPDF('c', 'A4', '', '', 10, 10, 55, 20, 10, 10);
$mpdf->SetProtection(array('print'));
$mpdf->SetDisplayMode('fullpage');
$mpdf->WriteHTML($html);
$mpdf->setTitle($title);
$mpdf->Output(url_title($title.'.pdf'), 'i');

谢谢:)

0 个答案:

没有答案