将 HTML 导出为 PDF
单击“导出”按钮时,我需要从现有的纯 HTML 文件生成 PDF 文件。由于我正在开发 php 项目,因此更可取的是可以在 java 项目中轻松使用的解决方案。
感谢所有的答案
I need to generate a PDF file from an existing pure HTML files when clicking 'Export' button. As I am working on the php project, a solution that can easily be used in a java-project is preferable.
Thanks for all the answers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定它与 PHP 的集成效果如何,但我使用 pandoc 进行各种文档转换。它可以处理 HTML 到 PDF。
http://johnmacfarlane.net/pandoc/
I'm not sure how well it would integrate into PHP, but I use pandoc for all sorts of document conversion. It can handle HTML to PDF.
http://johnmacfarlane.net/pandoc/
您可以使用这个库:html2pdf 或这个dompdf
You can use this library : html2pdf or this one dompdf
可能的解决方案,http://wkhtmltopdf.org/
这对于我使用过的其他 html 文档非常有效
Possible solution , http://wkhtmltopdf.org/
This works really well for other html docs I have used