
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
canvas-dither
Advanced tools
Black and White dithering for the canvas element
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:
A simple threshold which will make all pixels with a luminance over the threshold white and under the threshold black.
Dither.threshold(imageData, threshold);
Using a Bayer matrix the image is converted to black and white with a cross-hatch pattern.
Dither.bayer(imageData, threshold);
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);
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);
MIT
FAQs
Black and White dithering for the canvas element
The npm package canvas-dither receives a total of 14,452 weekly downloads. As such, canvas-dither popularity was classified as popular.
We found that canvas-dither demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket investigates hidden protestware in npm packages that blocks user interaction and plays the Ukrainian anthem for Russian-language visitors.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.