Skip to content
/ dither3x Public

Generate accurate Windows 3.x dither patterns for any colour in-browser

License

Notifications You must be signed in to change notification settings

mwh/dither3x

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Generate accurate Windows 3.x dither patterns for any solid colour

import dither from "./dither.js";
const dataURI = dither(128, 31, 190);
element.style.backgroundImage = `url(${dataURI})`;

The dither function takes an additional argument to specify the pixel size (default 1). The resulting image will be (8 * px)x(8 * px).

Instead of three integer components, a seven-character #abcdef hex colour specifier can be given as the first argument.

A matrix function is also exported, and returns an 8x8 array of hex colour strings instead of an image.

The algorithm in use is adapted from expired US Patent 5485558, with some corrections for bugs.

A live tool using this library is accessible at https://mwh.nz/dither/

About

Generate accurate Windows 3.x dither patterns for any colour in-browser

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published