I want to put an image as a background on every page. This is my code :
Prawn::Document.generate("#{Rails.root.to_s}/public/#{filename}.pdf", :page_size => [576,576], :left_margin => 50,:right_margin => 50, :page_layout => :portrait, :skip_page_creation => true, :skip_encoding => true ) do |pdf|
pdf.repeat :all do
pdf.image open(APP_CONFIG['site_url']+"/images/pdf/bg_blank_high.jpg"), :at => [-pdf.bounds.absolute_left, pdf.bounds.absolute_top], :width => 576, :height => 576
end
pdf.start_new_page(:margin => [75,50,50,50])
pdf.fill_color "8c8464"
pdf.text story.contents, :size => 12, :align => :left, :leading => 3
end
The problem is - image overrides the text in all pages.
Is there any way to put text over the image or make image 'send to back' or any other ideas?