Sha256: 903526ba40cd0081b9b50ef6ee62d6b54af0c4dd478da45c4af411c9da9f7392
Contents?: true
Size: 714 Bytes
Versions: 67
Compression:
Stored size: 714 Bytes
Contents
#! /usr/local/bin/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
67 entries across 67 versions & 2 rubygems