Sha256: c06b4d940ab81604fc36f9039e491570bf1bfa1dfd7689d281ef4b5819f670c3

Contents?: true

Size: 818 Bytes

Versions: 13

Compression:

Stored size: 818 Bytes

Contents

#!/usr/bin/env ruby -w
require 'rmagick'

# Demonstrate the "path" drawing primitive.

imgl = Magick::ImageList.new
imgl.new_image(450, 200, Magick::HatchFill.new('white','lightcyan2'))

gc = Magick::Draw.new

# Draw "pie chart"
gc.fill('red')
gc.stroke('blue')
gc.stroke_width(2)
gc.path('M110,100 h-75 a75,75 0 1,0 75,-75 z')
gc.fill('yellow')
gc.path('M97.5,87.5 v-75 a75,75 0 0,0 -75,75 z')

# Draw wiggly line
gc.fill_opacity(0)
gc.stroke('#00cd00')
gc.stroke_width(3)
gc.path('M200,175 l 25,-12.5 ' \
                'a12.5,12.5 -15 0,1 25,-12.5 l 25,-12.5 ' \
                'a12.5,25   -15 0,1 25,-12.5 l 25,-12.5 ' \
                'a12.5,37.5 -15 0,1 25,-12.5 l 25,-12.5 ' \
                'a12.5,50   -15 0,1 25,-12.5 l 25,-12.5')

gc.draw imgl
imgl.border!(1,1, 'lightcyan2')

imgl.write('arcpath.gif')

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
rmagick-windows-2.16.5 doc/ex/arcpath.rb
rmagick-windows-2.16.4 doc/ex/arcpath.rb
rmagick-windows-2.16.3 doc/ex/arcpath.rb
rmagick-windows-2.16.2 doc/ex/arcpath.rb
rmagick-windows-2.16.1 doc/ex/arcpath.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/rmagick-2.16.0/doc/ex/arcpath.rb
rmagick-2.16.0 doc/ex/arcpath.rb
rmagick-2.15.4 doc/ex/arcpath.rb
rmagick-2.15.3 doc/ex/arcpath.rb
rmagick-2.15.2 doc/ex/arcpath.rb
rmagick-2.15.1 doc/ex/arcpath.rb
rmagick-2.15.0 doc/ex/arcpath.rb
rmagick-2.14.0 doc/ex/arcpath.rb