JSPM

neuquant

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 48
  • Score
    100M100P100Q115245F
  • License MIT

JavaScript port of the NeuQuant image quantization algorithm

Package Exports

  • neuquant

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (neuquant) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

neuquant

A JavaScript port of Anthony Dekker's NeuQuant image quantization algorithm including a pixel-stream interface.

Installation

npm install neuquant

Example

var neuquant = require('neuquant');

// get a palette and indexed pixel data for input RGB image
var res = neuquant.quantize(pixels, quality);
// => { palette: <Buffer ...>, indexed: <Buffer...> }

// streaming interface example
fs.createReadStream('in.jpg')
  .pipe(new JPEGDecoder)
  .pipe(new neuquant.Stream)
  .pipe(new GIFEncoder)
  .pipe(fs.createWriteStream('out.gif'));

API

getPalette(pixels, quality = 10)

Returns a buffer containing a palette of 256 RGB colors for the input RGB image. The quality parameter is set to 10 by default, but can be changed to increase or decrease quality at the expense of performance. The lower the number, the higher the quality.

index(pixels, palette)

Returns a new buffer containing the indexed pixel data for the input image using the given palette, which is a buffer obtained from the above method.

quantize(pixels, quality = 10)

Combines the above two methods and returns an object containing both a palette buffer and the indexed pixel data at once.

Stream

As shown in the above example, a streaming API can also be used. You can pipe data to it, including multi-frame data, and it will produce an indexed output chunk for each frame. You can access the palette for each frame by listening for frame events on the stream.

Authors

  • The original NeuQuant algorithm was developed by Anthony Dekker.

  • The JavaScript port of NeuQuant was originally done by Johan Nordberg for GIF.js.

  • Streaming interface, wrapper API, and code cleanup by Devon Govett.

License

MIT