Skip to content

Instantly share code, notes, and snippets.

@surendrans
Last active April 23, 2019 09:05
Show Gist options
  • Save surendrans/5786f520f41854399848 to your computer and use it in GitHub Desktop.
Save surendrans/5786f520f41854399848 to your computer and use it in GitHub Desktop.
Prawn PDF
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