Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using FileReader's readAsDataURL() I can transform arbitrary data into a Data URL. Is there way to convert a Data URL back into a Blob instance using builtin browser apis?

share|improve this question

3 Answers

up vote 4 down vote accepted

If you want a Blob -> dataURL, checkout this utility method: https://github.com/ebidel/filer.js/blob/master/src/filer.js#L128

share|improve this answer
Thanks for the link — it looks like a great workaround for my needs. I wonder if the charset will work as part of the mimetype. – Shane Holloway Aug 29 '12 at 7:26

User Matt has proposed the following code a year ago ( How to convert dataURL to file object in javascript? ) which might help you

function dataURItoBlob(dataURI) {
  // convert base64 to raw binary data held in a string
  // doesn't handle URLEncoded DataURIs - see SO answer #6850276 for code that does this
  var byteString = atob(dataURI.split(',')[1]);

  // separate out the mime component
  var mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0]

  // write the bytes of the string to an ArrayBuffer
  var ab = new ArrayBuffer(byteString.length);
  var ia = new Uint8Array(ab);
  for (var i = 0; i < byteString.length; i++) {
      ia[i] = byteString.charCodeAt(i);
  }

  // write the ArrayBuffer to a blob, and you're done
  var bb = new BlobBuilder();
  bb.append(ab);
  return bb.getBlob(mimeString);
}
share|improve this answer
That looks very promising — I'll give it a try! – Shane Holloway Sep 6 '12 at 17:36

use

FileReader.readAsArrayBuffer(Blob|File)

rather than

FileReader.readAsDataURL(Blob|File)
share|improve this answer
I have to store it as a DataURL for an indefinite period in localStorage, so using the alternative ArrayBuffer path won't work. – Shane Holloway Aug 28 '12 at 23:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.