Skip to content

Instantly share code, notes, and snippets.

@malipetek
Created March 7, 2018 01:48
Show Gist options
  • Save malipetek/0feabeb75d17368c4aeb99e95ba3164e to your computer and use it in GitHub Desktop.
Save malipetek/0feabeb75d17368c4aeb99e95ba3164e to your computer and use it in GitHub Desktop.
function cloneCvsToImg(cvs, img){
cvs.toBlob(function(blob){
img.src = URL.createObjectURL(blob);
}, 'png');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment