是否可以使用 Zend_Pdf 将 HTML 转换为 pdf?
是否可以使用 Zend_Pdf 将 直接 HTML 转换为 pdf 文件?如果可以,我该怎么做?
Is possible convert directly HTML into a pdf file using Zend_Pdf?, if so, How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Zend_PDF
无法生成基于 HTML 的 PDF。但您可以渲染视图并使用其他库将其转换为 PDF。我已经用 TCPDF 做过这样的事情。下面的小代码片段:Zend_PDF
isn't able to generate PDF based on HTML. But you can render view and use other library for convert it to PDF. I've done such thing with TCPDF. Little code snippet below:查看 MPDF 。最终的一个。使用内联 css 创建 html,将其存储在一个 php 变量中并回显到 pdf 文件。你完成了!
Check out MPDF . The ultimate one. Create your html with inline css, store it in one php variable and echo to pdf file. you are done!!!
tcpdf 在处理 html 时有一点限制,wkhtmltopdf 使用 webkit
tcpdf is a little limited when it comes to html, wkhtmltopdf uses webkit
我使用过 dompdf https://github.com/dompdf/dompdf 它非常简单直接。它甚至可以读取/格式化 css。
i've used dompdf https://github.com/dompdf/dompdf its pretty easy and straight forward. it even reads/formats css.