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.

link|improve this question

72% accept rate
feedback

1 Answer

up vote 2 down vote accepted

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

link|improve this answer
…or, if you're using Ruby on Rails, perhaps check out wicked_pdf. – Phrogz Oct 18 '11 at 3:07
sorry Phrogz :) I was just typing away.. didn't see that you suggested that too. +1 – Tilo Oct 18 '11 at 3:58
I added the RailsCasts link to your answer and deleted my answer – Tilo Oct 18 '11 at 4:05
Thanks a lot, that is very helpful – verdure Oct 18 '11 at 4:26
@Tilo Nice! Very community-oriented. – Phrogz Oct 18 '11 at 12:40
feedback

Your Answer

 
or
required, but never shown

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