Rails:如何将模型详细信息打印到A4 PDF页面?
在我的工作管理应用程序中,我想为客户准备一张 A4 页收据。
因此,我需要以某种方式将 Job
模型的详细信息打印到单个 A4 PDF 页面。
Rails 中有任何内置工具用于此目的吗?
如果不是,最好的方法是什么?
In my Job Management application I would like to prepare an A4 page receipt to customer.
Thus, I need to print somehow Job
model's details to a single A4 PDF page.
Are the any built-in tools in Rails for this purpose ?
If no, what would be the best way to go ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基本上有两个选项:(任何 PDF 创建都需要 gem - Rails 没有默认的 PDF 创建)。
使用Prawn创建纯PDF,您必须使用Prawn API完成所有格式化
创建一个HTML 版本的收据并将其转换为 PDF,PDFkit 是执行此操作的更好的工具之一。它使用 Web-kit 支持的浏览器引擎。
它们都工作得很好,对于一页文档,我通常使用 PDFkit 来转换 HTML,对于包含很多页面的较大文档,我使用 Prawn,因为它可以提供更小的文件大小并更好地处理多个页面。
我的建议是制作 HTML 收据并将其显示在屏幕上,并为用户提供使用 保存 PDF 版本的选项PDFkit。
编辑:Windows 安装。 (未经测试 - Windows 和我已经分手。)
下载 wkhtmltopdf 的 Windows 安装程序:win- wkhtmltopdf
现在创建一个初始化文件,例如
pdfkit_config.rb 中的 config/intializers/pdfkit_config.rb 在本地计算机上设置 wkhtmltopdf 的绝对路径:
对于您的生产环境,您实际上可以在存储库中拥有 wkhtmltopdf 的副本,当然是unix版本。 (记得在 git add 之前先 chmod +x )
Basically there is two options: (any PDF creation requires a gem - no default PDF creation for rails).
Create a pure PDF using Prawn, You have to do all the formatting using the Prawn API
Create a HTML version of your receipt and convert it to PDF, One of the better gems to do this is PDFkit. which uses a web-kit powered browser engine.
They both work good, For one page documents I usually use PDFkit to convert HTML and for larger documents that are going have lots of pages I use Prawn because it gives you a smaller file size and handles multiple pages better.
My suggestion would be to make a HTML receipt and display it on the screen and give the user an option to save a PDF version using PDFkit.
EDIT: windows install. (not tested - windows and I have parted company.)
Download the windows installer for wkhtmltopdf: win-wkhtmltopdf
now create an initializer file, e.g. config/intializers/pdfkit_config.rb
in pdfkit_config.rb set the absolute path to wkhtmltopdf on your local machine:
for your production ENV you can actually just have a copy of wkhtmltopdf in you repo, a unix version of course. (remember to chmod +x it before you git add it)
有一个名为 prawn 的 gem 可以帮助生成 PDF。这是一个使用它来获得一些想法的教程:
http://railstips.org/blog/archives/2008/10/13/how-to-generate-pdfs-in-rails-with-prawn/
Theres a gem called prawn that helps with PDF generation. Here is a tutorial using it for some ideas:
http://railstips.org/blog/archives/2008/10/13/how-to-generate-pdfs-in-rails-with-prawn/