Sha256: 461d7d11bbfc5be67447e20e63b24ff34755404e924ca8638e040b03154a2663
Contents?: true
Size: 1.18 KB
Versions: 1
Compression:
Stored size: 1.18 KB
Contents
# frozen_string_literal: true # 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_relative '../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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
prawn-2.3.0 | manual/text/rendering_and_color.rb |