Get ImageData in cross-platform
$ yarn add pixel
# or
$ npm install pixel --save
<script src="https://unpkg.com/pixel"></script>
<script>
console.log(pixel); //function
</script>
return images
is Array contains one or more ImageData
.
Return the
object
instead ofImageData
at Node.js
file
is...
- string: url (e.g.
http[s]://...
) - string: datauri (e.g.
data:image/...
) - string: path (e.g.
/path/to/file
) - string: binary (unless above)
- object: Blob/File
- object: Buffer/ArrayBuffer/Uint8Array/Uint8ClampedArray
- object: HTMLImageElement
- gif (static/animation)
- png (static/animation)
- jpeg
- bitmap (24bit or less)
- webp (static/animation)