module ChunkyPNG::Canvas::Drawing

def compose_pixel_unsafe(x, y, color)

Returns:
  • (Integer) - The composed color.

Parameters:
  • () --
def compose_pixel_unsafe(x, y, color)
  set_pixel(x, y, ChunkyPNG::Color.compose(color, get_pixel(x, y)))
end