Created
March 25, 2025 04:31
-
-
Save greggman/727f6a69064d1ccf42500d8a68333e63 to your computer and use it in GitHub Desktop.
URL.revokeObjectURL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*bug-in-github-api-content-can-not-be-empty*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*bug-in-github-api-content-can-not-be-empty*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ctx = document.createElement('canvas').getContext('2d'); | |
ctx.fillStyle = 'red'; | |
ctx.fillRect(0, 0, 300, 150); | |
ctx.fillStyle = 'yellow'; | |
ctx.fillText('Hello World', 20, 30); | |
const blob = await new Promise(resolve => ctx.canvas.toBlob(resolve)); | |
const url = URL.createObjectURL(blob); | |
const img = new Image(); | |
img.src = url; | |
await img.decode(); | |
URL.revokeObjectURL(url); | |
document.body.append(img); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"name":"URL.revokeObjectURL","settings":{},"filenames":["index.html","index.css","index.js"]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment