Interactive demo 📦📦 📦
A JavaScript library for reducing image colors and dithering them to fit (color) eInk displays with optimal visual quality.
We are using it for our eInk picture frames at paperlesspaper.
The library works with both front end js (using the Browser Canvas API) and node.js (using node-canvas)
Btw. you can order our new Spectra 6 eInk picture frame here. 🎉
You can easily add your own displays and use custom color tables.
- Dithering Algorithms: Multiple high-quality dithering options to improve color blending and gradients.
- Color Calibration: Match device-specific color characteristics for more accurate results.
| ditheringType | string | "errorDiffusion" | The main dithering algorithm. Options: errorDiffusion, ordered, random, quantizationOnly. |
| errorDiffusionMatrix | string | "floydSteinberg" | Error diffusion kernel. Options: floydSteinberg, falseFloydSteinberg, jarvis, stucki, burkes, sierra3, sierra2, sierra2-4a. |
| serpentine | boolean | false | If true, alternates scan direction for each row (serpentine scanning) in error diffusion. |
| orderedDitheringType | string | "bayer" | Type of ordered dithering. Currently only bayer is supported. |
| orderedDitheringMatrix | [number, number] | [4, 4] | Size of the Bayer matrix for ordered dithering. |
| randomDitheringType | string | "blackAndWhite" | Type of random dithering. Options: blackAndWhite, rgb. |
| palette | string/array | "default" | Palette to use for quantization. Can be a string (predefined) or a custom array of colors. |
| sampleColorsFromImage | boolean | false | If true, generates palette by sampling colors from the image. |
| numberOfSampleColors | number | 10 | Number of colors to sample from the image if sampleColorsFromImage is true. |
Add these options to your ditherImage call to customize dithering behavior for your use case.
eInk displays often render colors less vibrantly than their digital values suggest (e.g., a device red like #ff0000 may appear duller in reality). By calibrating with real-world color measurements, the library ensures that dithering and color reduction use the actual appearance of colors on your target display. After processing, you can map the calibrated colors back to the device's required values.
Dithering helps create the illusion of intermediate colors by distributing quantization errors across neighboring pixels. This is especially important for eInk displays with limited color palettes.
| floydSteinberg | Classic Floyd-Steinberg error diffusion. Distributes error to four neighbors. Visually pleasing. |
| falseFloydSteinberg | Simplified Floyd-Steinberg. Distributes error to three neighbors. Faster, slightly different look. |
| jarvis | Jarvis, Judice, and Ninke. Spreads error over three rows for smooth gradients, more blurring. |
| stucki | Similar to Jarvis, different weights. Balances smoothness and sharpness. |
| burkes | Simplified Stucki. Fewer neighbors, less computation, good results. |
| sierra3 | Sierra-3 (original). High-quality, less blurring than Jarvis. |
| sierra2 | Reduced Sierra-3. Fewer neighbors, faster, less diffusion. |
| sierra2-4a | Lightweight, fast. Distributes error to three neighbors. Good for speed-critical use. |
You can use your own custom color palette by passing an array of colors to the palette option. Colors should be provided as hex strings (e.g., #FF0000).
Example:
Contributions and feedback are welcome!
.png)

![Test flight of yet another clone of Möwe, the wing used by Nausicaä [video]](https://www.youtube.com/img/desktop/supported_browsers/firefox.png)
