我正在使用mPDF库从HTML页面生成PDF文件.它在firefox中工作得很好,但它不是在chrome浏览器中显示PDF文件.
我在chrome中生成PDF时出现以下错误.
以下是我使用mPDF生成PDF的代码
ob_clean(); header('Content-type: application/pdf'); header('Content-Disposition: inline; filename="' . $yourFileName . '"'); header('Content-Transfer-Encoding: binary'); header('Accept-Ranges: bytes'); $mpdf = new PDF( 'c','A4','','',15, 15,10,14,0,0); $mpdf->useOnlyCoreFonts = false; $mpdf->SetDisplayMode('real'); $mpdf->list_indent_first_level = 0; // 1 or 0 - whether to indent the first level of a list $stylesheet = file_get_contents(APPPATH . 'third_party/mpdf/style.css'); $mpdf->WriteHTML($stylesheet,1); $mpdf->WriteHTML($html); $mpdf->Output();
小智.. 6
这可能是生成的pdf的问题.如果它适用于Firefox,请下载该文件并尝试打开它.如果你电脑中的pdf查看器输出损坏的pdf,那么你可能需要调整你的代码.我面临同样的问题.由于pdf损坏,Chrome无法打开它.
希望我的回答能让你进入调试之旅.干杯.:d
这可能是生成的pdf的问题.如果它适用于Firefox,请下载该文件并尝试打开它.如果你电脑中的pdf查看器输出损坏的pdf,那么你可能需要调整你的代码.我面临同样的问题.由于pdf损坏,Chrome无法打开它.
希望我的回答能让你进入调试之旅.干杯.:d
就我而言,当前页面的html是通过pdf发送的(当我使用简单的文本编辑器打开pdf时就可以看到它)。
发送标头前冲洗 + ob_clean的解决方案
ob_clean(); flush(); header("Content-type:application/pdf"); header("Content-Disposition:attachment;filename='downloaded.pdf'"); echo $result; exit;