Sha256: 17a591b99189f04c39f7ce31437393ebcf77b1b71bf2ac3493b9c044d5fd78c1

Contents?: true

Size: 712 Bytes

Versions: 5

Compression:

Stored size: 712 Bytes

Contents

# encoding: utf-8
#
# This example demonstrates the use of the new :background option when
# generating a new Document.  Image is assumed to be pre-fit for your page
# size, and will not be rescaled.
#
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
require "prawn"

img = "#{Prawn::BASEDIR}/data/images/letterhead.jpg"

Prawn::Document.generate("background.pdf", :background => img) do
  text_options.update(:size => 18, :align => :right)
  text "My report caption"
  text_options.update(:size => 12, :align => :left, :spacing => 2)
  move_down font.height * 2
  text "Here is my text explaning this report. " * 20
  move_down font.height
  text "I'm using a soft background. " * 40
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
kavu-prawn-core-0.4.100 examples/general/background.rb
kavu-prawn-core-0.4.99 examples/general/background.rb
prawn-0.3.0 examples/general/background.rb
prawn-0.4.0 examples/general/background.rb
prawn-0.4.1 examples/general/background.rb