Skip to content

Instantly share code, notes, and snippets.

@pseudosavant
Last active April 19, 2021 22:28
Show Gist options
  • Save pseudosavant/16800f2b801e5a75efa7ff1c605190c9 to your computer and use it in GitHub Desktop.
Save pseudosavant/16800f2b801e5a75efa7ff1c605190c9 to your computer and use it in GitHub Desktop.
async method for creating a data URL from a canvas
function canvasToDataURL(canvas, type='image/webp', option=0.1) {
const promise = new Promise((resolve) => {
requestAnimationFrame(() => resolve(canvas.toDataURL(type, option)));
});
return promise;
}
/*
Examples:
const dataUrl = await canvasToDataURL(myCanvas); // Use defaults
const dataUrl = await canvasToDataURL(myCanvas, 'image/jpeg', 0.75); // JPEG 75% quality
const dataUrl = await canvasToDataURL(myCanvas, 'image/png'); // PNG, no quality possible
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment