Last active
April 19, 2021 22:28
-
-
Save pseudosavant/16800f2b801e5a75efa7ff1c605190c9 to your computer and use it in GitHub Desktop.
async method for creating a data URL from a canvas
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
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