1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# encoding: utf-8
#
# Demonstrates Document#stroke_bounds, which will stroke a rectange outlining
# the boundaries of the current bounding box. This is useful for debugging
# and can also be used as a light-weight and lower level alternative to
# Cells.
#
# Feature borrowed from Josh Knowle's pt at:
# http://github.com/joshknowles/pt/tree/master
#
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
require 'prawn'
Prawn::Document.generate("stroke_bounds.pdf") do
stroke_bounds
bounding_box [100,500], :width => 200, :height => 300 do
padded_box(10) do
text "Hey there, here's some text. " * 10
end
stroke_bounds
end
end |