Sha256: d1f5cf3bea8237e889e86e595c44614d023428b875c005c445a8cf7b84160247

Contents?: true

Size: 843 Bytes

Versions: 8

Compression:

Stored size: 843 Bytes

Contents

# encoding: utf-8
# 
# If you've read the basic concepts examples you probably know that the origin
# of a page is on the bottom left corner and that the content flows from top to
# bottom.
#
# You also know that a Bounding Box is a structure for helping the content flow.
#
# A bounding box can be created with the <code>bounding_box</code> method. Just
# provide the top left corner, a required <code>:width</code> option and an
# optional <code>:height</code>.
#
require File.expand_path(File.join(File.dirname(__FILE__),
                                   %w[.. example_helper]))

filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::Example.generate(filename) do
  bounding_box([200, cursor - 100], :width => 200, :height => 100) do
    text "Just your regular bounding box"
    
    transparent(0.5) { stroke_bounds }
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
prawn-1.0.0 manual/bounding_box/creation.rb
prawn-0.15.0 manual/bounding_box/creation.rb
prawn-0.14.0 manual/bounding_box/creation.rb
prawn-0.13.2 manual/bounding_box/creation.rb
prawn-0.13.1 manual/bounding_box/creation.rb
prawn-0.13.0 manual/bounding_box/creation.rb
prawn-1.0.0.rc2 manual/bounding_box/creation.rb
nurettin-prawn-1.0.0.rc1 manual/bounding_box/creation.rb