Guest User

Untitled

a guest
Jul 16th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. require 'rubygems'
  2. require 'prawn'
  3.  
  4. Prawn::Document.generate("test.pdf") do
  5. font "#{Prawn::BASEDIR}/data/fonts/DejaVuSans.ttf"
  6. text "this is great" * 20
  7.  
  8. bounding_box [100,600], :width => 200 do
  9. text "The rain in spain falls mainly on the plains " * 5
  10. stroke do
  11. line bounds.top_left, bounds.top_right
  12. line bounds.bottom_left, bounds.bottom_right
  13. end
  14. end
  15.  
  16. bounding_box [100,500], :width => 200, :height => 200 do
  17. stroke do
  18. circle_at [100,100], :radius => 100
  19. line bounds.top_left, bounds.bottom_right
  20. line bounds.top_right, bounds.bottom_left
  21. end
  22.  
  23. bounding_box [50,150], :width => 100, :height => 100 do
  24. stroke_rectangle bounds.top_left, bounds.width, bounds.height
  25. end
  26. end
  27.  
  28. end
Add Comment
Please, Sign In to add comment