Sha256: a11db7e95e70739af4ff8d7d86ef73c99d24ea8535e5e1c3a34fbab8e4bb2e91

Contents?: true

Size: 895 Bytes

Versions: 2

Compression:

Stored size: 895 Bytes

Contents

# frozen_string_literal: true

# 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

2 entries across 2 versions & 1 rubygems

Version Path
prawn-2.4.0 manual/bounding_box/stretchy.rb
prawn-2.3.0 manual/bounding_box/stretchy.rb