1.0.1 • Published 9 years ago

rgba-to-canvas v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

rgba-to-canvas

stable

Turns a flat array of RGBA pixels, like those in a Uint8ClampedArray, into a new Canvas.

Example

var rgbaToPixels = require('rgba-to-canvas')

var canvas = rgbaToPixels(pixels, [ 128, 128 ])
document.body.appendChild(canvas)

Usage

NPM

canvas = rgbaToPixels(array, shape)

For the given flat array of RGBA data (Uint8Array or Uint8ClampedArray), and the [width, height] shape, returns a new canvas with the specified pixels.

License

MIT, see LICENSE.md for details.