Sha256: b74de859d3e58f60f6de3b8a7fecaeda3eb83ba867d70a8e39bd72373b6b0be0

Contents?: true

Size: 864 Bytes

Versions: 3

Compression:

Stored size: 864 Bytes

Contents

# 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_relative '../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

3 entries across 3 versions & 1 rubygems

Version Path
prawn-2.2.2 manual/bounding_box/stretchy.rb
prawn-2.2.1 manual/bounding_box/stretchy.rb
prawn-2.2.0 manual/bounding_box/stretchy.rb