R
Ricardo Pog
Hi folks(wharever it mean my english is so bad...)
the following code create a PDF:
#!/usr/bin/ruby
require 'pdf/writer'
pdf = PDF::Writer.new
pdf.text "Hello Matz", :font_size => 22
pdf.save_as "novo.pdf"
########################################
now I wanna save this pdf as a last page of a existing pdf.
any tips?
the following code create a PDF:
#!/usr/bin/ruby
require 'pdf/writer'
pdf = PDF::Writer.new
pdf.text "Hello Matz", :font_size => 22
pdf.save_as "novo.pdf"
########################################
now I wanna save this pdf as a last page of a existing pdf.
any tips?