Class: Magick::SolidFill

Inherits:
Object
  • Object
show all
Defined in:
lib/rmagick_internal.rb

Overview

Fill class with solid monochromatic color

Instance Method Summary collapse

Constructor Details

#initialize(bgcolor) ⇒ SolidFill

Returns a new instance of SolidFill.



1939
1940
1941
# File 'lib/rmagick_internal.rb', line 1939

def initialize(bgcolor)
  @bgcolor = bgcolor
end

Instance Method Details

#fill(img) ⇒ Object



1943
1944
1945
1946
# File 'lib/rmagick_internal.rb', line 1943

def fill(img)
  img.background_color = @bgcolor
  img.erase!
end