📜  以 blob 形式获取图像 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:04.255000             🧑  作者: Mango

代码示例1
fetch("url-to-image")
  .then(function(response) {
    return response.blob()
  })
  .then(function(blob) {
    // here the image is a blob
  });