File: rect02.rb

package info (click to toggle)
ruby-rmagick 6.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,232 kB
  • sloc: cpp: 19,563; ruby: 17,147; sh: 88; javascript: 36; makefile: 13
file content (20 lines) | stat: -rw-r--r-- 600 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
require 'rvg/rvg'

Magick::RVG.dpi = 90

rvg = Magick::RVG.new(12.cm, 4.cm) do |canvas|
  canvas.viewbox(0, 0, 1200, 400)
  canvas.background_fill = 'white'
  canvas.desc = 'Example rect02 - rounded rectangles'

  # Show outline of canvas using 'rect' method
  canvas.rect(1195, 395, 1, 1).styles(fill: 'none', stroke: 'blue', stroke_width: 2)

  canvas.rect(400, 200, 100, 100).round(50).styles(fill: 'green')

  canvas.g.translate(700, 210).rotate(-30) do |grp|
    grp.rect(400, 200, 0, 0).round(50).styles(fill: 'none', stroke: 'purple', stroke_width: 30)
  end
end

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