Is there a way to watermark an existing pdf in ruby ?
I want to add a dynamically generated text,
Thanks,
|
Is there a way to watermark an existing pdf in ruby ? I want to add a dynamically generated text, Thanks, |
|||
|
|
|
This will do it:
However, in my testing the output file size was huge with the latest Gem version of Prawn (0.12), but after pointing my Gemfile at the master branch on github, all worked fine. |
|||
|
|
|
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 |
|||||||
|
|
Another option is to use PDFTK. It can be used to add a watermark and create a new PDF. Maybe prawn will do the same thing with it's templating.
Some more info: http://rhodesmill.org/brandon/2009/pdf-watermark-margins/ There is a ruby wrapper gem called active_pdftk which supports backgrounding, so you don't have to do the shell commands yourself. |
||||
|
|
|
Use Ruport. 1st result for Googling |
|||||||
|