0.1.1 • Published 2 months ago

image-codecs v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

image-codecs

Pure JS cross platform image encoder/decoder.

Usage

import { encode, decode } from 'image-codecs';

const imageData = decode(buffer);
// Return: { width, height, data: Uint8Array }

const buffer = encode(imageData, 'jpeg'); // or 'bmp', 'png'
// Return: Buffer

Supported formats

  • JPEG
  • BMP
  • PNG
0.1.1

2 months ago

0.1.0

2 months ago