1.0.0 • Published 8 years ago

@f/dataurl-to-blob v1.0.0

Weekly downloads
56
License
MIT
Repository
github
Last release
8 years ago

dataurl-to-blob

Build status Git tag NPM version Code style

Turn a dataurl into a blob in a cross-browser way. This code is based on blueimp's canvas-to-blob, with the important difference that it is not a polyfill, and that it can be required (though not used) on the server, which makes it more friendly to server-side rendering.

Installation

$ npm install @f/dataurl-to-blob

Usage

var toBlob = require('@f/dataurl-to-blob')

function canvasToBlob (canvas) {
  return toBlob(canvas.toDataURL('image/png'))
}

API

dataURLToBlob(dataURL)

  • dataURL - The dataURL string. This can be generated from a canvas by calling canvas.toDataURL("image/png").

Returns: A blob buffer of the raw image data

License

MIT