class ChunkyPNG::Canvas
def assert_size!(matrix_width, matrix_height)
def assert_size!(matrix_width, matrix_height) raise ChunkyPNG::ExpectationFailed, "The width of the matrix does not match the canvas width!" if width != matrix_width raise ChunkyPNG::ExpectationFailed, "The height of the matrix does not match the canvas height!" if height != matrix_height return true end