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

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