A display frame.
new Frame(data);data—Array<Pixel>The frame's 1-dimensional (left-to-right, top-to-bottom) data array. Any index afterScreen Width * Screen Heightwill not be displayed; no max size is enforced.
Convert a string to a frame.
static fromString(string)string—stringThe string to convert.
FrameThe generated Frame.
Convert a 2D array of Pixels to a Frame.
static from2DArray(array)array—Array<Array<Pixel>>The array to convert.