File: rendering_and_color.rb

package info (click to toggle)
ruby-prawn 1.3.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,936 kB
  • ctags: 802
  • sloc: ruby: 13,906; sh: 43; makefile: 15
file content (37 lines) | stat: -rw-r--r-- 1,281 bytes parent folder | download | duplicates (2)
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
# encoding: utf-8
#
# You have already seen how to set the text color using both inline formatting
# and the format text methods. There is another way by using the graphics
# methods <code>fill_color</code> and <code>stroke_color</code>.
#
# When reading the graphics reference you learned about fill and stroke. If you
# haven't read it before, read it now before continuing.
#
# Text can be rendered by
# being filled (the default mode) or just stroked or both filled and stroked.
# This can be set using the <code>text_rendering_mode</code> method or the
# <code>:mode</code> option on the text methods.
#
require File.expand_path(File.join(File.dirname(__FILE__),
                                   %w[.. example_helper]))

filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
  fill_color   "00ff00"
  stroke_color "0000ff"

  font_size(40) do
    # normal rendering mode: fill
    text "This text is filled with green."
    move_down 20

    # inline rendering mode: stroke
    text "This text is stroked with blue", :mode => :stroke
    move_down 20

    # block rendering mode: fill and stroke
    text_rendering_mode(:fill_stroke) do
      text "This text is filled with green and stroked with blue"
    end
  end
end