Initializes a output matrix of size rows*columns and initially set all color information to black.
Source
OutputMatrix(int this.rows, int columns) :
this._columns = columns * OFFSET {
this._content = new Uint8ClampedList(rows * _columns);
// set all pixel to black
clear();
}