Skip to content

Instantly share code, notes, and snippets.

View sushil-2803's full-sized avatar
🎯
Focusing

Sushil Dubey sushil-2803

🎯
Focusing
View GitHub Profile
@sushil-2803
sushil-2803 / canvas_to_img.txt
Last active March 11, 2023 15:47
Convert HTML canvas to IMG
const can=document.getElementsByTagName('canvas')
const img1 = can[1].toDataURL("image/png").replace("image/png", "image/octet-stream");
window.location.href = img1;