rgba-to-canvas
v1.0.1
Published
gets a new Canvas from the given RGBA pixel array
Downloads
13
Maintainers
Readme
rgba-to-canvas
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
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.