Skip to content

Instantly share code, notes, and snippets.

@greggman
Created March 25, 2025 04:31
Show Gist options
  • Save greggman/727f6a69064d1ccf42500d8a68333e63 to your computer and use it in GitHub Desktop.
Save greggman/727f6a69064d1ccf42500d8a68333e63 to your computer and use it in GitHub Desktop.
URL.revokeObjectURL
/*bug-in-github-api-content-can-not-be-empty*/
/*bug-in-github-api-content-can-not-be-empty*/
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);
{"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