Sha256: 19395fbaa58f8090009586011f44de680dd673cb1990b219ed733146e35d951e
Contents?: true
Size: 645 Bytes
Versions: 2
Compression:
Stored size: 645 Bytes
Contents
# 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 text "Hey there, here's some text. " * 10 stroke_bounds end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kavu-prawn-core-0.4.100 | examples/graphics/stroke_bounds.rb |
kavu-prawn-core-0.4.99 | examples/graphics/stroke_bounds.rb |