Sha256: 664e2c41f847f606fc3e60fa03d26f2529bf4f1e323042033385db7a258e5126

Contents?: true

Size: 594 Bytes

Versions: 13

Compression:

Stored size: 594 Bytes

Contents

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

# Demonstrate the HatchFill class

Cols = 300
Rows = 100

Background = 'white'
Foreground = 'LightCyan2'

fill = Magick::HatchFill.new(Background, Foreground)
img = Magick::ImageList.new
img.new_image(Cols, Rows, fill)

# Annotate the filled image with the code that created the fill.

ann = Magick::Draw.new
ann.annotate(img, 0,0,0,0, "HatchFill.new('#{Background}', '#{Foreground}')") do
  self.gravity = Magick::CenterGravity
  self.fill = 'black'
  self.stroke = 'transparent'
  self.pointsize = 14
end
#img.display
img.write('hatchfill.gif')
exit

Version data entries

13 entries across 13 versions & 3 rubygems

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