Sha256: 05bd6398bf5c0f566c4c509aec24df3b7f61ebee9917731ebba7fe21221b9b8c
Contents?: true
Size: 579 Bytes
Versions: 13
Compression:
Stored size: 579 Bytes
Contents
#!/usr/bin/env ruby -w require 'rmagick' # Demonstrate the GradientFill class Rows = 100 Cols = 300 Start = '#900' End = '#000' fill = Magick::GradientFill.new(0, 0, 0, Rows, Start, End) img = Magick::Image.new(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, "GradientFill.new(0, 0, 0, #{Rows}, '#{Start}', '#{End}')") do self.gravity = Magick::CenterGravity self.fill = 'white' self.stroke = 'transparent' self.pointsize = 14 end #img.display img.write('gradientfill.gif') exit
Version data entries
13 entries across 13 versions & 3 rubygems