vote up 0 vote down star

Hi there,

A Ruby on Rails app will have access to a number of images and fonts. The images are components of a visual layout which will be stored separately as a set of rules. The rules specify document dimensions along with which images are used and where. The app needs to take these rules, fetch the images, and generate a PDF that is ready for local printing or emailing.

The fonts will also be important. The user needs to customize the layout by inputting text which will be included in the PDF. The PDF must therefore also contain the desired font so that the document renders identically across different machines.

Each PDF may have many pages. Each page may have different dimensions but this is not essential. Either way, the ability to manipulate the dimensions and margins given by the PDF is essential.

The only thing that needs to be regularly changed is the text. If this is takes too much development then the app can store the layouts in 3rd party PDFs and edit the textual content directly. Eventually though, this will prove too restrictive on the apps intended functionality so I would prefer the app to generate the PDF's itself.

I have never worked with PDFs before and, for the most part, I've never had to output anything to the user outside their monitor. A printed medium could require a very different approach to get the best results. If anyone has any advice on how to model the PDF format this it would be really appreciated. The technical aspects of printing such as bleed, resolution and colour have already been factored in to the layouts and images.

I am aware that PDF is a proprietary file format and I want to use free or open source software. I have seen a number of Ruby libraries for generating PDF files but because I am new on this scene I have no way to reliably compare them and too little time to implement and test them all. I also have the option of using C to handle this feature and if this is process intensive then that might be preferred.

What should I be thinking about and how should I be planning to implement this?

flag

3 Answers

vote up 0 vote down check

Generating PDFs is a bit annoying but there are a lot of things out there doing that such as prawn or prince.

I like the second option because you can use HTML/CSS to generate your PDF but I never tested it. Prawn has proven helpful and effective.

link|flag
Yes I've also been looking at prince for run of the mill "view to pdf" jobs. For the task in hand though, prawn has all the necessary functionality and seems to make it simpler than i'd expected. – dsclose Sep 9 at 16:01
According to the link you gave me (for example) prince passes the acid2 test. It seems like anything you've got in HTML you can have in PDF for the cost of a gem. Sweet! – dsclose Sep 9 at 16:04
Yes prince looks pretty impressive :) – marcgg Sep 9 at 16:39
vote up 1 vote down

I worked on a project that generated some very simple PDFs a few months ago. I thought it was a total pain in the ass, but it got done thanks to: Prawn and prawnto. Prawn is a PDF library and prawnto is a handy Rails plugin.

Good luck.

link|flag
"I thought it was a total pain in the ass, but it got done thanks to: Prawn and prawnto." Just reading that right now is a weight off my shoulders :) – dsclose Sep 9 at 16:05
vote up 1 vote down

There are a few different Railscasts using PDF::Writer and Prawn.

link|flag
+1 for those screen casts m8, a great resource :-) – dsclose Sep 9 at 15:50

Your Answer

Get an OpenID
or

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