Socket
Socket
Sign inDemoInstall

canvas-dither

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    canvas-dither

Black and White dithering for the canvas element


Version published
Weekly downloads
2.9K
decreased by-0.14%
Maintainers
1
Install size
9.84 kB
Created
Weekly downloads
 

Readme

Source

canvas-dither

Black and White dithering for the canvas element

Usage

First, install the package using npm:

npm install canvas-dither --save

Then, require the package and use it like so:

let Dither = require('canvas-dither');

// Assume we have an existing canvas element with a 2D context
// Retrieve the image data of the canvas
let image = context.getImageData(0, 0, canvas.width, canvas.height);

// Dither the data using the Atkinson algoritm
image = Dither.atkinson(image);

// Place the image data back on the canvas
context.putImageData(image, 0, 0);

This package contains the following algorithms:

Threshold

A simple threshold which will make all pixels with a luminance over the threshold white and under the threshold black.

Dither.threshold(imageData, threshold);

Bayer

Using a Bayer matrix the image is converted to black and white with a cross-hatch pattern.

Dither.bayer(imageData, threshold);

Floyd-Steinberg

Altough there is nothing random about this algorithm, the results looks like a random scattering of dots, making especially photos seem very natural.

Dither.floydsteinberg(imageData);

Bill Atikinson

An improved version of the Floyd-Steinberg algorithm created by Bill Atkinson of MacPaint fame. This algorithm creates less noise in almost white backgrounds compared to Floyd-Steinberg, but has more contrast as a result.

Dither.atkinson(imageData);

License

MIT

Keywords

FAQs

Last updated on 17 Aug 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc