npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

image-dither

v1.0.1

Published

low-level error diffusion image dithering implementation

Downloads

173

Readme

Image - Dither

Build Status

Low level engine for error diffusion image dithering. Takes a buffer or an array of rgba values and applies dithering. Options for dithering include the error diffusion matrix (some common matrices are built-in), color palette, color distance metric and output 'pixel' size.

Beware, this is not particulary optimized.

Installation

npm install image-dither
npm install vorpal

Getting Started

var Dither = require('image-dither');

var options = {matrix: Dither.matrices.atkinson};
var dither = new Dither(options);
var img = magicallyRetrieveBuffer('path/to/img.png');
var imgWidth = magicallyRetrieveWidth('path/to/img.png');

var ditheredImg = dither.dither(img, imgWidth);

Usage

The example folder contains helpful examples demonstrating basic usage as well as more complex stuff.

require('image-dither') returns the Dither class, whose instances provide the following methods:

dither(buffer, width, options)

This method takes a buffer or array representing the image to dither. The buffer is expected to consecutively store the channel values for all pixels. An example is the buffer used by jimp. The second argument is the width of the image - the engine needs to know where new lines start.

Returns an array of the channel values for all pixels of the new image and does not modify the passed buffer directly.

Options

The following options can be set by passing an options object to the Dither constructor, by accessing the options object exposed by each Dither instance, or by passing an options object to the dither()method.

The options passed to the methods only apply to this method call, and overrule the options set for the Dither instance.

step

The height and length for a 'pixel' in the output. Bigger step means lower resolution. Defaults to 1.

channels

The number of channels per pixel stored in the buffer. Defaults to 4.

diffusionFactor

The diffused error is multiplied with this factor before being added. Defaults to 0.9, which looks better most of the time.

clip(buffer, index)

This is called after setting the channel-values for a pixel in the error buffer, and can be used to e.g. clip values to fit into the color space dimensions. buffer[index] is the value for the first channel, buffer[index+1] for the second channel, and so on. Does nothing by default.

findColor(channelarray)

This function is called once for each pixel with the pixel's color (error diffusion included) and should return the color to use in the output image. Colors are passed (and expected) as an array with the values for each channel.

The implementation of this function is left to the user, and determines palette choice and color distance metric.

The default function expects and returns rgba values from 0 to 255 and returns either 0,0,0,255 or 255,255,255,255, based on brightness.

matrix

The error diffusion matrix. The following matrices, all taken from this helpful article on dithering, are built in:

  • Dither.matrices.atkinson
  • Dither.matrices.burkes
  • Dither.matrices.floydSteinberg
  • Dither.matrices.jarvisJudiceNinke
  • Dither.matrices.oneDimensional
  • Dither.matrices.sierraLite
  • Dither.matrices.sierra2
  • Dither.matrices.sierra3
  • Dither.matrices.stucki
  • Dither.matrices.none

Defaults to Dither.matrices.floydSteinberg.

To specify your own error diffusion matrices, take a look at the implementation of the matrices above in matrices.coffee. That should be easier than explaining it here.