Sha256: 9314c4bc97ad359a81e1c0b3cff4882d3021c096ac9d84c3e15aeadd27a2db72
Contents?: true
Size: 863 Bytes
Versions: 4
Compression:
Stored size: 863 Bytes
Contents
# encoding: utf-8 # # This example shows the many ways of setting font sizes in Prawn # $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib')) require "prawn" Prawn::Document.generate "font_size.pdf", :page_size => "A4" do # Explicit global changes font 'Helvetica' self.font_size = 16 text 'Font at 16 point' # Transactional changes rolled back after block exit font_size 9 do text 'Font at 9 point' # single line changes, not persisted. text 'Font at manual override 20 point', :size => 20 text 'Font at 9 point' end # Transactional changes rolled back after block exit on full fonts. font("Times-Roman", :style => :italic, :size => 12) do text "Font in times at 12" font_size(16) { text "Font in Times at 16" } end text 'Font at 16 point' font "Courier", :size => 40 text "40 pt!" end
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
kavu-prawn-core-0.4.100 | examples/text/font_size.rb |
kavu-prawn-core-0.4.99 | examples/text/font_size.rb |
prawn-0.4.0 | examples/text/font_size.rb |
prawn-0.4.1 | examples/text/font_size.rb |