Add text to existing pdf using ruby -


i have rails application joining count of pdf files. need add numbering joined pdf using ruby.

is there state of art way add text or other content existing pdf file using ruby?

this solution worked me...

prawn::document.generate("output.pdf", :template => "/path/to/template.pdf")   text "this text in copied pdf.", :align => :center end 

Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -