File: rvg_stroke_dasharray.rb

package info (click to toggle)
librmagick-ruby 2.13.1-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,444 kB
  • ctags: 1,716
  • sloc: ansic: 16,755; ruby: 9,730; makefile: 16; sh: 12
file content (12 lines) | stat: -rw-r--r-- 419 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#! /usr/local/bin/ruby -w
require 'rvg/rvg'

rvg = Magick::RVG.new(200, 100) do |canvas|
            canvas.background_fill = 'white'
            canvas.rect(150, 50, 25, 25).round(6).
                    styles(:fill=>'none', :stroke=>'purple', :stroke_width=>10, :stroke_dasharray=>[10,5])
            canvas.rect(199, 99).styles(:fill=>'none', :stroke=>'blue')
      end

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