pdf下载 html2pdf
我正在使用 html2pdf 类来生成 pdf。在我的问题中,它为 html 代码生成 pdf,但它没有提供下载该 pdf 的对话框选项。请帮助我的情况如下。
<?php
ob_start();
include(dirname(__FILE__).'/res/pdf_demo.php');
$content = ob_get_clean();
// conversion HTML => PDF
require_once(dirname(__FILE__).'/../html2pdf.class.php');
try
{
$html2pdf = new HTML2PDF('P','A4', 'fr', false, 'ISO-8859-15');
$html2pdf->pdf->SetDisplayMode('fullpage');
$html2pdf->writeHTML($content, isset($_GET['vuehtml']));
$html2pdf->Output('pdf_demo.pdf');
}
catch(HTML2PDF_exception $e) { echo $e; }
?>
i am using html2pdf class to generate pdf. in my problem its generate pdf for the html code but it not give the dialog box option to download that pdf. plz help my cose is following.
<?php
ob_start();
include(dirname(__FILE__).'/res/pdf_demo.php');
$content = ob_get_clean();
// conversion HTML => PDF
require_once(dirname(__FILE__).'/../html2pdf.class.php');
try
{
$html2pdf = new HTML2PDF('P','A4', 'fr', false, 'ISO-8859-15');
$html2pdf->pdf->SetDisplayMode('fullpage');
$html2pdf->writeHTML($content, isset($_GET['vuehtml']));
$html2pdf->Output('pdf_demo.pdf');
}
catch(HTML2PDF_exception $e) { echo $e; }
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
从文档中,方法输出
From the documentation, method Output
将此行
$html2pdf->Output('pdf_demo.pdf');
更改为$html2pdf->Output('pdf_demo.pdf', 'D');
它将强制浏览器自动下载 pdf 文件。Change this line
$html2pdf->Output('pdf_demo.pdf');
to$html2pdf->Output('pdf_demo.pdf', 'D');
and it will force browser to automatically download the pdf file.将 PDF 发送到具有特定名称的浏览器
强制浏览器下载具有特定名称的 PDF 文件
在服务器上写入 PDF 文件的内容
注意,你服务器上的这个写法一定要谨慎使用。不对文件的存在进行验证
检索 PDF 的内容,然后做任何你想做的事情
Send PDF to browser with a specific name
Force the browser to download the PDF file with a specific name
Write the contents of a PDF file on the server
Attention, this writing on your server must be used with caution. No verification is made on the existence of the file
Retrieve the contents of the PDF and then do whatever you want
要从浏览器提供下载,您需要添加附件标题...
在页面开头添加上述代码,然后继续进行 html2pdf 转换。
To offer download from your browser u need add the header for being attachment...
Add the above code at the start of the page and then proceed with the html2pdf conversion..