Sha256: c830560be45a9589d2fc6a321daa1dd288aceae2d30fda2c155a348a699f6ce7
Contents?: true
Size: 811 Bytes
Versions: 8
Compression:
Stored size: 811 Bytes
Contents
# encoding: utf-8 # # Pass an image path to the <code>:background</code> option and it will be used # as the background for all pages. # This option can only be used on document creation. # require File.expand_path(File.join(File.dirname(__FILE__), %w[.. example_helper])) img = "#{Prawn::DATADIR}/images/letterhead.jpg" Prawn::Document.generate("background.pdf", :background => img, :margin => 100 ) do text "My report caption", :size => 18, :align => :right move_down font.height * 2 text "Here is my text explaning this report. " * 20, :size => 12, :align => :left, :leading => 2 move_down font.height text "I'm using a soft background. " * 40, :size => 12, :align => :left, :leading => 2 end
Version data entries
8 entries across 8 versions & 2 rubygems