Created
February 19, 2020 16:06
-
-
Save jeckep/0cc2e4544fa242ee33bdfcc09d59a247 to your computer and use it in GitHub Desktop.
Save log as png from brandcrowd.com
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
var c = document.getElementById("js-maker-canvas"); | |
var c2 = document.createElement('canvas'); | |
document.body.appendChild(c2); | |
c.toBlob = c2.toBlob; | |
var saveData = (function () { | |
var a = document.createElement("a"); | |
document.body.appendChild(a); | |
a.style = "display: none"; | |
return function (blob, fileName) { | |
var url = window.URL.createObjectURL(blob); | |
a.href = url; | |
a.download = fileName; | |
a.click(); | |
window.URL.revokeObjectURL(url); | |
}; | |
}()); | |
c.toBlob(function(blob) { | |
saveData(blob, "logo.png"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment