Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

get image as blob

fetch("url-to-image")
  .then(function(response) {
    return response.blob()
  })
  .then(function(blob) {
    // here the image is a blob
  });
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #image #blob
ADD COMMENT
Topic
Name
1+8 =