Sha256: d0568d962ea18858200e61167d88bbb997515baa72c949fbd0fb5f2bd64f1925

Contents?: true

Size: 1.13 KB

Versions: 8

Compression:

Stored size: 1.13 KB

Contents

# encoding: utf-8
# 
# The <code>font_size</code> method works just like the <code>font</code>
# method.
#
# In fact we can even use <code>font</code> with the <code>:size</code> option
# to declare which size we want.
#
# Another way to change the font size is by supplying the <code>:size</code>
# option to the text methods.
#
# The default font size is <code>12</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
  text "Let's see which is the current font_size: #{font_size.inspect}"
  
  move_down 10
  font_size 16
  text "Yeah, something bigger!"
  
  move_down 10
  font_size(25) { text "Even bigger!" }
  
  move_down 10
  text "Back to 16 again."
  
  move_down 10
  text "Single line on 20 using the :size option.", :size => 20
  
  move_down 10
  text "Back to 16 once more."
  
  move_down 10
  font("Courier", :size => 10) do
    text "Yeah, using Courier 10 courtesy of the font method."
  end
  
  move_down 10
  font("Helvetica", :size => 12)
  text "Back to normal"
end

Version data entries

8 entries across 8 versions & 2 rubygems

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