module ChunkyPNG::Canvas::Operations

def check_size_constraints!(other, offset_x, offset_y)

def check_size_constraints!(other, offset_x, offset_y)
  raise "Background image width is too small!"  if width  < other.width  + offset_x
  raise "Background image height is too small!" if height < other.height + offset_y
end