Package Exports
- @canvas/image-data
- @canvas/image-data/browser.js
- @canvas/image-data/index
- @canvas/image-data/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@canvas/image-data) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ImageData
An ImageData implementation for usage outside of the browser.
Installation
npm install --save @canvas/image-dataUsage
const ImageData = require('@canvas/image-data')
const img = new ImageData(2, 4)
console.log(img.width)
//=> 2
console.log(img.height)
//=> 4
console.log(img.data)
//=> Uint8ClampedArray [ 0, 0, 0, 0, 0, ... ]Hacking
The tests are made to be run against both this implementation and Chrome's implementation to make sure that we behave in the same way. You can run the tests in Chrome by spinning up a local web server and open test.html.