image-to-blob
v0.2.0
Published
a small util to convert image urls to blobs
Downloads
272
Readme
Image to Blob
Image to Blob is a simple utility that will convert images to blobs this can be used for urls to images, that are not cross domain, and IMG DOM node. Its intended to be used with Browserify.
Install
$ npm install image-to-blob
Example Usage
var imageToBlob = require( 'image-to-blob' ),
foo = document.getElementById( 'foo' ),
DOMURL = window.URL || window.webkitURL || window;
function appendBlob( err, blob ) {
if ( err ) {
console.error( err );
return;
}
console.log( blob );
var img = document.createElement( 'img' );
img.src = DOMURL.createObjectURL( blob );
document.body.appendChild( img );
}
imageToBlob( foo, appendBlob );
imageToBlob( './bar.svg', appendBlob );
This will convert SVG images to pngs.