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