I´m trying this simple script:

require 'prawn'

template_file_name = File.join(File.dirname(__FILE__), 'template.pdf')
pdf_file = Prawn::Document.new(:template => template_file_name)
pdf_file.text('Hello World')
pdf_file.render_file('output.pdf')

There is a template.pdf file in the same dir as the script but the output.pdf comes only with the Hello Wordl

Is there anything else that I should be concerned of?

Thanks

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Templates were introduced only in prawn 0.10.1 as stated by Daniel Nelson here.

link|improve this answer
I have Prawn 0.12.0 and am experiancing the same problem. – Jan Dec 28 '11 at 17:17
feedback

Your Answer

 
or
required, but never shown

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