module ChunkyPNG::Canvas::Operations

def flip_vertically!

Other tags:
    See: #flip_vertically -

Returns:
  • (ChunkyPNG::Canvas) - Itself, but flipped
def flip_vertically!
  for y in 0...height do
    replace_row!(y, row(y).reverse)
  end
  return self
end