Last active
April 23, 2019 09:05
-
-
Save surendrans/5786f520f41854399848 to your computer and use it in GitHub Desktop.
Prawn PDF
This file contains 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
def header pdf | |
pdf.repeat :all do | |
pdf.bounding_box([0, 720], :width => 540, :height => 720) do | |
pdf.stroke_bounds | |
pdf.cell :content => "<b><font size='17'>Company Name PTE LTD</font></b> | |
email: [email protected] web: www.sptiele.com", | |
:inline_format => true, | |
:leading => 10, | |
:width => pdf.bounds.width, | |
:height => 110, | |
:align => :center, | |
:text_color => "000000", | |
:borders => [:bottom], | |
:border_width => 1, | |
:border_color => 'C0C0C0', | |
:padding_top => 12 | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment