to-image-data
v0.0.2
Published
Convert Nested Numerical Arrays into ImageData Data Array
Downloads
11,372
Maintainers
Readme
to-image-data
Convert Nested Numerical Arrays into ImageData
features
- Handles Numerical Arrays in Any Layout
- Handles Missing Alpha Band
install
npm install to-image-data
usage
import toImageData from "to-image-data";
const bands = [
[123, 42, 42, ... ], // red
[44, 84, 12, ... ], // green
[48, 72, 52, ... ], // blue
];
const imageData = toImageData(bands);
// { height: 768, width: 1024, data: Uint8ClampedArray[123, 44, 48, 255, 42, 84, 72, 255, ...] }