1.0.0 • Published 3 years ago

@jswork/next-arraybuffer2blob v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

next-arraybuffer2blob

Arraybuffer to blob.

version license size download

installation

npm install -S @jswork/next-arraybuffer2blob

usage

import '@jswork/next-arraybuffer2blob';

socket.onmessage = function(msg) {
  var arrayBuffer = msg.data;
  var blob = nx.arraybuffer2blob(arrayBuffer);
  var image = document.getElementById('image');
  var reader = new FileReader();
  reader.onload = function(e) {
    // base64
    image.src = e.target.result;
  };
  reader.readAsDataURL(blob);
};

license

Code released under the MIT license.