class Magick::Image

def color_point(x, y, fill)

Set the color at x,y
def color_point(x, y, fill)
  f = copy
  f.pixel_color(x, y, fill)
  f
end