Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.41 KB

README.md

File metadata and controls

44 lines (35 loc) · 1.41 KB

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.