Prince 是在 Ruby on Rails 中创建 PDF 的最佳方式吗?
经过多次 Google 搜索,在 Rails 中从 HTML 和 CSS(相对于新的标记语言)创建 PDF 的方法似乎是使用 Prince。
我的非大型商业应用程序的许可价格为 3800 美元,我想知道这实际上是否是共识,或者人们有其他选择可以分享内容和方式。
After several Google searches, it appears that the way to create PDFs in Rails from HTML and CSS (versus a new markup language) is to use Prince.
With licensing at $3800 for my non-big-commercial app, I'm wondering if this is, in fact, consensus or people have an alternative they can share the whats and hows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您也可以查看虾。教程可以在 railscasts.com 上找到。
You may check out prawn too. Tutorial can be found on railscasts.com.
这可能符合要求:http://code.google.com/p/wkhtmltopdf/
This may fit the bill: http://code.google.com/p/wkhtmltopdf/
我们尝试了两种解决方案:
We tried tow solutions:
我使用 Rails 从各种数据源即时创建大量不同的 PDF 文件,包括最佳布局。我需要创建它们来向客户展示产品。
在尝试了上述所有工具后,Prince 是完成此任务的最佳工具。
I create tons of different PDF files on the fly from various data sources using Rails, including finest layout. I create need to create them for presenting products to customers.
After having tried all the tools mentioned above, Prince is the best tool for this task.
Prince 的渲染质量& CSS 支持(比某些浏览器更好)是它的主要卖点。如果您只生成具有简单布局的文档,请坚持使用 Prawn。
Prince's rendering quality & CSS support (better than some browsers) is its main selling point. If you're only generating documents with simple layouts, stick with Prawn.