Docs

Bitmap.prototype.pixels

The raw pixel data of the bitmap as a Uint8Array in RGBA format.

Example

let bitmap = new Bitmap(2, 2)
bitmap.pixels.length
16
let bitmap = new Bitmap(1, 1)
bitmap.pixels[0] = 255  // Red
bitmap.pixels[1] = 0    // Green
bitmap.pixels[2] = 0    // Blue
bitmap.pixels[3] = 255  // Alpha
bitmap.pixels
Uint8Array [255, 0, 0, 255]
let bitmap = new Bitmap(2, 1)
bitmap.pixels.byteLength
8