Skip to content

Instantly share code, notes, and snippets.

View asantos00's full-sized avatar
πŸ’­
Always up to discuss interesting ideas πŸ˜‰

Alexandre Santos asantos00

πŸ’­
Always up to discuss interesting ideas πŸ˜‰
View GitHub Profile
@uupaa
uupaa / canvas.toDataURL.image.webp.md
Last active April 11, 2021 13:37
canvas.toDataURL("image/webp");
<canvas id="canvas"></canvas>
<script>
var ctx = canvas.getContext("2d");
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 8, 8);

var webp = canvas.toDataURL("image/webp"); // Chrome only?
var png  = canvas.toDataURL("image/png");
var jpg = canvas.toDataURL("image/jpeg");