0.2.0 • Published 9 years ago

image-to-blob v0.2.0

Weekly downloads
30
License
MIT
Repository
-
Last release
9 years ago

Image to Blob Build Status

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.