Guest User

Untitled

a guest
Jul 18th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. require 'rubygems'
  2. require 'prawn'
  3.  
  4. Prawn::Document.generate 'test.pdf' do |pdf|
  5. pdf.stroke_color = 'FF0000'
  6.  
  7. pdf.bounding_box [0, pdf.bounds.top], :width => 20, :height => 20 do
  8. pdf.stroke_bounds
  9. end
  10. pdf.bounding_box [22, pdf.bounds.top], :width => 20, :height => 20 do
  11. pdf.stroke_bounds
  12. end
  13. end
Add Comment
Please, Sign In to add comment