Sha256: 880654683c46efa301939136bd165cb7f46b75d8fe68f2277c6faecaaca24e90
Contents?: true
Size: 811 Bytes
Versions: 2
Compression:
Stored size: 811 Bytes
Contents
# encoding: utf-8 # # This example demonstrates how to make use of Prawn's repeating element # support. Note that all repeated elements are generated using XObjects, so # they should be pretty efficient. # # require "#{File.dirname(__FILE__)}/../example_helper.rb" Prawn::Document.generate("repeat.pdf", :skip_page_creation => true) do repeat :all do text "ALLLLLL", :at => bounds.top_left end repeat :odd do text "ODD", :at => [0,0] end repeat :even do text "EVEN", :at => [0,0] end repeat [1,2] do text "[1,2]", :at => [100,0] end repeat 2..4 do text "2..4", :at => [200,0] end repeat(lambda { |pg| pg % 3 == 0 }) do text "Every third", :at => [250, 20] end 10.times do start_new_page text "A wonderful page", :at => [400,400] end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
prawn-core-0.7.2 | examples/general/repeaters.rb |
prawn-core-0.7.1 | examples/general/repeaters.rb |