image-array
v0.0.3
Published
Converts images to and from several formats.
Downloads
8
Maintainers
Readme
image-array
Converts images to and from several formats.
Table of contents
Installation
To install the library, run:
$ npm install image-array
or with JSDelivr:
<script src="https://cdn.jsdelivr.net/npm/image-array@latest/file"></script>
Importing
With require
:
const Converter = require("image-array");
With import
:
import Converter from "image-array";
Usage
Instantiating an Image
import Converter from "image-array";
const image = new Parser(
[type], // A data type ("grid", "canvas", "dataURL", "path", or "buffer")
[data] // Data in the predefined format
)
Converting an Image
import Converter from "image-array";
const image = new Converter([type], [data])
const canvas = image.toCanvas({width, height}) // Width and height are optional
const dataURL = image.toDataURL()
const buffer = image.toBuffer()
const grid = image.toGrid([format], [transparency]) // "format" is either "hex" or "rgb"
Output
Writing the image to a file
import Converter from "image-array";
const image = new Converter([type], [data])
image.write('./image.png')
Getting Image Data
import Converter from "image-array";
const image = new Converter([type], [data])
console.log(image.cache) // All stored data for the image, updating as more generative methods are called
// -> { grid, canvas, dataURL, buffer }