Transform images into pixelated versions using canvas
npm install 8bit8Bit is a javascript module that converts an image into a pixelated version using canvas
npm install 8bit
bower install 8bit
``javascript
var eightBit = require('8bit'); // only needed for NPM installs
var img = new Image();
img.onload = function () {
eightBit(document.getElementById('mycanvas'), img, 10);
};
img.src = 'http://foobar.com/your_image.png';
`
- eightBit(canvas, image, scaleFactor)canvas
- - canvas element that will be used to place the pixelated version of the imageimage
- - image HTMLElement to pixelatescaleFactor` - Number between 0 and 100, lower is more pixelated.
-
MIT (see LICENSE file)