Created
July 23, 2014 07:57
-
-
Save ksob/777472bed4cee4241b74 to your computer and use it in GitHub Desktop.
Prawn declarations print PDF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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