blockify-mc
v1.0.1
Published
Replaces the pixels of an image with Minefcraft blocks!
Downloads
3
Readme
blockify
Replaces pixels in an image with Minecraft blocks!
Usage
// {image} can be a buffer, url to file, or image url
await blockify(image)
// returns an image buffer
Example
const blockify = require('blockify');
const fs = require('fs');
fs.writeFileSync('exampleBlockified.png', await blockify('./example.png'));