Skip to content

Instantly share code, notes, and snippets.

@ksob
Created July 23, 2014 07:57
Show Gist options
  • Save ksob/777472bed4cee4241b74 to your computer and use it in GitHub Desktop.
Save ksob/777472bed4cee4241b74 to your computer and use it in GitHub Desktop.
Prawn declarations print PDF
pdf.font "app/assets/fonts/verdana.ttf"
pdf.font_size 12
@background = "app/assets/declarations/vat-7.png"
#pdf.canvas { pdf.image(@background, :width => pdf.bounds.width) } if @background
pdf.image(@background, :width => pdf.bounds.width + 30, :at => [-15,pdf.bounds.height + 40])
pdf.draw_text "999999999999", :at => [50,705]
pdf.draw_text "Urząd Skarbowy w Sochaczewie", :at => [45,590]
pdf.draw_text "12345,89", :at => [430,0]
pdf.start_new_page(:layout => :portrait)
pdf.image(@background, :width => pdf.bounds.width + 30, :at => [-15,pdf.bounds.height + 40])
pdf.draw_text "12345,89", :at => [430,0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment