将 HTML 表单转换为 PDF

发布于 2024-12-10 04:36:58 字数 73 浏览 0 评论 0原文

如何将 html 表单转换为 PDF。我想用 Prawn 来达到这个目的。

指出任何相关的链接或示例将会非常有帮助。

How do I convert a html form to PDF. I would like to use Prawn for the purpose.

Pointing to any relevant links or examples would be very helpful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

轮廓§ 2024-12-17 04:36:58

为什么你想限制自己使用不适合任务的技术(Prawn)(它不适合使用 HTML 生成 PDF)?

您可能想查看PDFKit,因为它似乎专门设计用于使用强大的现有功能从 HTML 创建 PDF图书馆。

超短版本(两行!):

kit = PDFKit.new("http://google.com")
kit.to_file('/path/to/save/google.pdf')

在此处阅读更多相关信息:
http://thinkrelevance.com/blog/2010 /06/15/rethinking-pdf-creation-in-ruby.html

查看 RailsCast:http://railscasts.com/episodes/220-pdfkit

Why would you want to limit yourself to a technology (Prawn) not appropriate to the task (it's not geared towards using HTML to generate the PDF)?

You might want to check out PDFKit instead, as it seems specifically designed to create PDFs from HTML, using powerful existing libraries.

Super short version (two lines!):

kit = PDFKit.new("http://google.com")
kit.to_file('/path/to/save/google.pdf')

Read more about it here:
http://thinkrelevance.com/blog/2010/06/15/rethinking-pdf-creation-in-ruby.html

Check out the RailsCast: http://railscasts.com/episodes/220-pdfkit

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文