module ChunkyPNG::Canvas::Drawing

def point(x, y, color)

Sets a point on the canvas by composing a pixel with its background color.
def point(x, y, color)
  set_pixel(x, y, ChunkyPNG::Color.compose(color, get_pixel(x, y)))
end