Sha256: 584042d09978a30cc3734d1a3be229f37411a7c86643fffafa1ec53495b63b3f

Contents?: true

Size: 779 Bytes

Versions: 3

Compression:

Stored size: 779 Bytes

Contents

require 'rvg/rvg'
include Magick

RVG.dpi = 90

TEXT_STYLES = {:writing_mode=>'tb',
               :glyph_orientation_vertical=>0,
               :fill=>'red4',
               :font_weight=>'bold',
               :font_size=>16}

TEXT_STYLES2 = {:writing_mode=>'tb',
               :glyph_orientation_vertical=>90,
               :fill=>'green',
               :font_weight=>'bold',
               :font_size=>16}

rvg = RVG.new(1.25.in, 7.in).viewbox(0,0,125,700) do |canvas|
    canvas.background_fill = 'white'

    canvas.text(40, 15, ":glyph_orientation_vertical=0").styles(TEXT_STYLES)
    canvas.text(80, 25, ":glyph_orientation_vertical=90").styles(TEXT_STYLES2)

    canvas.rect(124, 698).styles(:fill=>'none',:stroke=>'blue')
end

rvg.draw.write('writing_mode01.gif')

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rmagick-1.8.1 doc/ex/writing_mode01.rb
rmagick-1.8.2 doc/ex/writing_mode01.rb
rmagick-1.8.3 doc/ex/writing_mode01.rb