Sha256: ffe63f94e5c8143c2c73e8487afbab992d3cf0cc6658ba94623c9d65949fedc7

Contents?: true

Size: 785 Bytes

Versions: 6

Compression:

Stored size: 785 Bytes

Contents

require 'rvg/rvg'

Magick::RVG.dpi = 90

TEXT_STYLES = { writing_mode: 'lr',
                glyph_orientation_horizontal: 0,
                fill: 'red4',
                font_weight: 'bold',
                font_size: 16 }

TEXT_STYLES2 = { writing_mode: 'lr',
                 glyph_orientation_horizontal: 180,
                 fill: 'green',
                 font_weight: 'bold',
                 font_size: 16 }

rvg = Magick::RVG.new(3.in, 1.in).viewbox(0, 0, 300, 100) do |canvas|
  canvas.background_fill = 'white'

  canvas.text(15, 40, ':glyph_orientation_horizontal=0').styles(TEXT_STYLES)
  canvas.text(15, 80, ':glyph_orientation_horizontal=180').styles(TEXT_STYLES2)

  canvas.rect(299, 99).styles(fill: 'none', stroke: 'blue')
end

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rmagick-4.1.0.rc2 doc/ex/writing_mode02.rb
rmagick-4.1.0.rc1 doc/ex/writing_mode02.rb
rmagick-4.0.0 doc/ex/writing_mode02.rb
rmagick-3.2.0 doc/ex/writing_mode02.rb
rmagick-3.1.0 doc/ex/writing_mode02.rb
rmagick-3.0.0 doc/ex/writing_mode02.rb