The Ruby On Rails Wiki lists a couple of libraries that facilitate PDF generation in Rails. I need to print out address labels (in letter format, thus 12-15 addresses per page) and cannot decide which one to use. Any recommendations?
feedback
|
|
The best I've seen so far is Prawn: | |||
feedback
|
|
Prawn with Prawnto for sure. The DSL is a real treat, as is the simplicity of being able to treat PDF as any other format in a respond_to format block:
I'm not sure whether PDF::Writer is as elegant. I wrote a very basic tutorial on Prawn and Prawnto for Rails beginners here: | |||||||
feedback
|
|
There's also RTeX. That works well if you're willing to translate to LaTeX first. LaTeX is a very good way to store marked-up documents. It just depends on how static each document is. If most of the document is dynamic, you might do better with Prawn or PDF::Writer. If most of it is static, with just a couple of text-replacements for each, LaTeX might be a better choice. | |||
|
feedback
|
|
Prawn is the way to go. Now with prawn-grids it is really easy to do. Check out the fill article here: http://www.ducksoupsoftware.com/blog/200907/rails_labels.html The code example from the site:
| |||
|
feedback
|
|
If you're not doing anything too complex, You could also use HTMLDOC, which converts basic HTML to PDF. This prevents you from having to learn more proprietary layout syntax(like in the case of Prawn). It might save you some headaches :) Here's a link to the ruby gem for HTMLDOC: Also, here's a good guide for rendering a view in rails to pdf using HTMLDOC: | |||
|
feedback
|
|
I've used both PDF::Writer and Prawn and find Prawn much more pleasant to use. Check out Ruby Mendicant for a comparison that demonstrates the joys of Prawn w/r/t PDF::Writer. Actually, just check out Ruby Mendicant anyway for a great design pattern for right livelihood as a developer. | ||||
|
feedback
|
|
Though not completely ruby, you could use OpenOffice .odt to generate PDFs by combining serenity and docsplit. http://github.com/kremso/serenity http://documentcloud.github.com/docsplit/ Or you could use the clamsy gem which uses odt and cups-pdf to generate the PDF. | |||
|
feedback
|