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
Post a Comment