0.0.2 • Published 3 years ago

to-image-data v0.0.2

Weekly downloads
-
License
CC0-1.0
Repository
github
Last release
3 years ago

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, ...] }