jcblw / image-to-blob

Simple utility to convert img urls to blobs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Image to Blob Build Status

Greenkeeper badge

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.

About

Simple utility to convert img urls to blobs


Languages

Language:JavaScript 100.0%