File: font_size.rb

package info (click to toggle)
ruby-prawn 1.0.0~rc1%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,248 kB
  • sloc: ruby: 17,499; sh: 44; makefile: 17
file content (40 lines) | stat: -rw-r--r-- 1,089 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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
#
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
  
  font("Helvetica", :size => 12)  # back to normal
end