thumbdrop
v0.0.3
Published
dubdrop compatible task for reading an image file and creating a thumbnail.
Downloads
3
Readme
thumbdrop
dubdrop compatible task for reading an image file and creating a thumbnail.
Usage
Make sure you have dubdrop
installed.
npm install dubdrop
var dubdrop = require('dubdrop');
var thumbdrop = require('thumbdrop');
function handleThumb (err, $img) {
var $example = document.querySelector('body');
$example.appendChild($img);
}
var exampleInput = dubdrop('#file-input', {
'tasks': [
thumbdrop(handleThumb)
]
});
Contributing
Running example:
npm start