Sha256: cf7ae2c3f5e24ab834010ba69b0b7ad5caac84c5482fa512d0b057ec14b1907e
Contents?: true
Size: 711 Bytes
Versions: 13
Compression:
Stored size: 711 Bytes
Contents
#!/usr/bin/env ruby -w require 'rmagick' # Demonstrate the Image#color_floodfill method before = Magick::Image.new(200,200) { self.background_color = 'white' } before.border!(1,1,'black') circle = Magick::Draw.new circle.fill('transparent') circle.stroke_width(2) circle.stroke('black') circle.circle(100,100,180,100) circle.fill('plum1') circle.stroke('transparent') circle.circle( 60,100, 40,100) circle.circle(140,100,120,100) circle.circle(100, 60,100, 40) circle.circle(100,140,100,120) circle.draw(before) before.write('color_floodfill_before.gif') aquamarine = Magick::Pixel.from_color('aquamarine') after = before.color_floodfill(100,100, aquamarine) after.write('color_floodfill_after.gif') exit
Version data entries
13 entries across 13 versions & 3 rubygems