Sha256: e0de70667cb5f1be84b1ffb1e77a4933cb52fe5b344a35664a95354ffe5085d7
Contents?: true
Size: 982 Bytes
Versions: 6
Compression:
Stored size: 982 Bytes
Contents
# encoding: utf-8 # # Bounding Boxes accept an optional <code>:height</code> parameter. Unless it # is provided the bounding box will be stretchy. It will expand the height to # fit all content generated inside it. # require File.expand_path(File.join(File.dirname(__FILE__), %w[.. example_helper])) filename = File.basename(__FILE__).gsub('.rb', '.pdf') Prawn::ManualBuilder::Example.generate(filename) do y_position = cursor bounding_box([0, y_position], :width => 200, :height => 100) do text "This bounding box has a height of 100. If this text gets too large " + "it will flow to the next page." transparent(0.5) { stroke_bounds } end bounding_box([300, y_position], :width => 200) do text "This bounding box has variable height. No matter how much text is " + "written here, the height will expand to fit." text " _" * 100 text " *" * 100 transparent(0.5) { stroke_bounds } end end
Version data entries
6 entries across 6 versions & 2 rubygems