Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 919 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 919 Bytes

pixasso

Javascript library for browsers to generate pixel arts from images with custom pixel size, zoom and color pick mode.

Usage

Download and include pixasso.min.js

<script src="pixasso.min.js"></script>
var img = document.createElement('img');
// img.src = ''

var options = {
  pixSize: 10, // pixSize > 0
  zoom: 10,    // zoom    > 0
  colorPickMode: pixasso.colorPickMode.JointColor // OR pixasso.colorPickMode.FirstColor
};

pixasso.createPixelArt(img, options.pixSize, options.zoom, options.colorPickMode);
//-> <img>

Example

Related

License

MIT