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?

link|improve this question

69% accept rate
I'm on formatting holy crusade today :) – DrJokepu Jan 11 '09 at 18:35
Perhaps you were looking to generate PDFs, not "PFD"s – zenazn Jan 11 '09 at 18:50
feedback

7 Answers

up vote 21 down vote accepted

The best I've seen so far is Prawn:

link|improve this answer
thx! Prawn seems to be the way to go....especially with the prawnto plugin it's really easy to use – Sebastian Jan 11 '09 at 19:44
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:

respond_to do |format|
format.pdf { render :layout => false }

I'm not sure whether PDF::Writer is as elegant. I wrote a very basic tutorial on Prawn and Prawnto for Rails beginners here:

link|improve this answer
An excellent tutorial for first steps with Prawn, thx :) – ARemesal Jan 16 '09 at 0:02
2  
Looks like the link in this answer broke .. is there somewhere else the information can be found, @btw? – Tim Post Jun 9 '11 at 2:05
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.

link|improve this answer
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:

## Controller
prawnto :prawn => {:left_margin => 0.21975.in, 
                   :right_margin => 0.21975.in}

## View
pdf.define_grid(:columns => 3, :rows => 10, :column_gutter => 10)

pdf.grid.rows.times do |i|
  pdf.grid.columns.times do |j|
    b = pdf.grid(i,j)
    pdf.bounding_box b.top_left, :width => b.width, :height => b.height do
      pdf.text b.name
      pdf.stroke do
        pdf.rectangle(pdf.bounds.top_left, b.width, b.height)
      end
    end
  end
end
link|improve this answer
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:

link|improve this answer
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.

link|improve this answer
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.

http://github.com/ngty/clamsy

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.