Sha256: a6ad53ff6257e834197fe422a752de48d70e481e8540971c0ec16e37b8c0952b

Contents?: true

Size: 1.24 KB

Versions: 15

Compression:

Stored size: 1.24 KB

Contents

require 'rvg/rvg'

def example(cols, rows)
    rvg = Magick::RVG.new(cols, rows) do |canvas|
        canvas.background_fill = 'white'
        canvas.desc = <<-'END_DESC'
            Example ViewBox - uses the viewBox attribute to automatically create an
            initial user coordinate system which causes the graphic to scale to fit
            into the viewport no matter what size the viewport is.
            END_DESC

        canvas.viewbox(0, 0, 1500, 1000)
        canvas.preserve_aspect_ratio('none')

        # This rectangle goes from (0,0) to (1500,1000) in user space.
        # Because of the viewBox attribute above,
        # the rectangle will end up filling the entire area
        # reserved for the SVG content.
        canvas.rect(1500, 1000).styles(:fill=>'yellow',:stroke=>'blue',:stroke_width=>12)

        # A large, red triangle
        canvas.path("M 750,100 L 250,900 L 1250,900 z").styles(:fill=>'red')

        # A text string that spans most of the viewport
        canvas.text(100, 600, 'Stretch to fit').styles(:font_size=>200, :font_style=>'normal', :font_weight=>'normal', :font_family=>'Verdana')

    end
    return rvg.draw
end

example(300, 200).write('ViewBox_300x200.gif')
example(150, 200).write('ViewBox_150x200.gif')

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
rmagick-2.13.4 doc/ex/ViewBox.rb
rmagick-2.13.3 doc/ex/ViewBox.rb
rmagick-2.13.3.rc1 doc/ex/ViewBox.rb
rmagick-2.13.2 doc/ex/ViewBox.rb
rdp-rmagick-0.0.0 doc/ex/ViewBox.rb
rmagick-2.13.1 doc/ex/ViewBox.rb
rmagick-2.12.2 doc/ex/ViewBox.rb
rmagick-2.12.1 doc/ex/ViewBox.rb
rmagick-2.12.0 doc/ex/ViewBox.rb
rmagick-2.11.1 doc/ex/ViewBox.rb
rmagick-2.10.0 doc/ex/ViewBox.rb
rmagick-2.11.0 doc/ex/ViewBox.rb
rmagick-2.9.0 doc/ex/ViewBox.rb
rmagick-2.9.1 doc/ex/ViewBox.rb
rmagick-2.9.2 doc/ex/ViewBox.rb