vote up 2 vote down star
3

I would like to create pdfs with ruby. One special need is embedding a picture into text (or a textblock), which means I need to be able to let the text flow around the image. E.g. the image should be in the rigth upper corner and the text should start left of the image and continue after the image by using the whole width of the page. How can I do this in ruby? Thank you for any suggestions!

flag

6 Answers

vote up 3 vote down check

Prawn to the rescue?

link|flag
Thank you for your suggestion. I already tried prawn, but unfortunately I was not succesfull. I could not place the image into the text. Do you know how to do it? – Adrian Apr 23 at 10:07
Prawn is great. – dylanfm Apr 26 at 10:04
After all, Prawn was the solution for my problem. Together with Prawn-layout and Prawn-format it is possible to place texts and images in a exact way, and textflow arround images is also possible. Thanks for all the suggestions! – Adrian May 8 at 7:52
vote up 3 vote down

In the past to get print quality PDFs in Ruby, I used rtex.

It's fast too, which is a real bonus.

link|flag
vote up 1 vote down

I like the html -> pdf approach. Although it is probably not the best option (prawn is) it makes it easy to design the pdf. See this website. You could also go for the approach documented at jimneath.org.

Good luck

link|flag
Thank you for your help. Unfortunately I need to create a pdf in print qualitiy. So I guess the html -> pdf approach won't be precise enough to do that. – Adrian Apr 23 at 12:00
vote up 1 vote down

iText is the heavyweight that will allow you to do anything you want with PDFs you can bridge to it with jRuby.

Another option I used was driving open office (it has a ui less option which you can automate from Ruby)

link|flag
vote up 1 vote down

How about having Ruby generate some LaTeX code, then use pdflatex to produce the PDF?

link|flag
vote up 0 vote down

Although I haven't done it myself I've seen people use a headless Open Office. You can control it from Ruby and use it to generate PDF files. You can even use an Open Office template and just fill in some elements into it.

link|flag

Your Answer

Get an OpenID
or

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