Skip to content

Instantly share code, notes, and snippets.

@owencm
Created January 12, 2019 18:01
Show Gist options
  • Select an option

  • Save owencm/ecc4589e67abb22cca29ea2b565db8e6 to your computer and use it in GitHub Desktop.

Select an option

Save owencm/ecc4589e67abb22cca29ea2b565db8e6 to your computer and use it in GitHub Desktop.

Revisions

  1. owencm created this gist Jan 12, 2019.
    11 changes: 11 additions & 0 deletions blob-to-image.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    const blobToImage = (blob) => {
    return new Promise(resolve => {
    const url = URL.createObjectURL(blob)
    let img = new Image()
    img.onload = () => {
    URL.revokeObjectURL(url)
    resolve(img)
    }
    img.src = url
    })
    }