Method: Magick::Image#color_point
- Defined in:
- lib/rmagick_internal.rb
#color_point(x, y, fill) ⇒ Object
Set the color at x,y
788 789 790 791 792 |
# File 'lib/rmagick_internal.rb', line 788 def color_point(x, y, fill) f = copy f.pixel_color(x, y, fill) f end |