我尝试在浏览器中呈现pdf文件。所以我使用了mozilla-pdf.js
,它在firefox中工作得很好但是当我尝试用chrome渲染PDF文件时它只是显示黑页。
请帮助在Chrome浏览器中呈现此PDF文件。
答案 0 :(得分:2)
为什么不使用FPDF或TCPDF之类的内容生成PDF服务器,然后让Chrome使用自己的PDF查看器?
以下是在PHP浏览器中打开并显示pdf的代码
$file='./files/the.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="the.pdf"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
@readfile($file);
答案 1 :(得分:0)