Is there a way to watermark an existing pdf in ruby ?

I want to add a dynamically generated text,

Thanks,

link|improve this question

74% accept rate
feedback

2 Answers

Check out Prawn(http://github.com/sandal/prawn) for just ruby and Prawnto(http://github.com/thorny-sun/prawnto) for Ruby on Rails.

You are probably going to want to either use the image embedding functionality or the background image functionality.

Here's an example of using a background image http://cracklabs.com/prawnto/code/prawn_demos/source/general/background

link|improve this answer
Prawn is only able to embed images to a fresh pdf created with prawn not an existing one ... so it doesn't work for me. – Mike Jun 4 '10 at 8:06
ah, missed the existing part in your post. Sorry about that. I don't believe there is, unless you were to convert it to an image and then watermark it. – Nick Hammond Jun 5 '10 at 22:53
Actually, it seems that Prawn can edit an existing PDF if you use that PDF as a template: groups.google.com/group/prawn-ruby/browse_thread/thread/… & github.com/yob/prawn/tree/templates_2010 . I have not personally used these, but the information seems somewhat recent? – Riley Dutton Mar 7 '11 at 14:56
feedback

Use Ruport.

1st result for Googling ruby pdf watermark.

link|improve this answer
Duh... just shows the limits of Google. I'm looking for the same thing, and Ruport is not it. – John Jun 1 '10 at 13:17
+ruby +pdf +watermark -ruport :-) – Steve Weet Jun 3 '10 at 7:16
Ruport uses PDF::Writer. PDF::Writer only creates PDFs. No go. – Mark Storer Feb 9 '11 at 21:24
feedback

Your Answer

 
or
required, but never shown

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