Skip to content

Instantly share code, notes, and snippets.

@jeckep
Created February 19, 2020 16:06
Show Gist options
  • Save jeckep/0cc2e4544fa242ee33bdfcc09d59a247 to your computer and use it in GitHub Desktop.
Save jeckep/0cc2e4544fa242ee33bdfcc09d59a247 to your computer and use it in GitHub Desktop.
Save log as png from brandcrowd.com
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