Skip to content

Instantly share code, notes, and snippets.

@charisTheo
Created October 12, 2021 11:05
Show Gist options
  • Save charisTheo/08d3c581925b9f0c589a1c4db53d5830 to your computer and use it in GitHub Desktop.
Save charisTheo/08d3c581925b9f0c589a1c4db53d5830 to your computer and use it in GitHub Desktop.
async function getImageBlobFromUrl(url) {
const fetchedImageData = await fetch(url)
const blob = await fetchedImageData.blob()
return blob
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment