i cant seem to download html2canvas to my desktop when their are other images in div why cant i download html2canvas image with other images?
if you have trouble undestanding what i just said please visit this page to test it out also feel free to ask more questions thank you. https://torcdesign.com/sis/ i keep getting this error (Uncaught (in promise) DOMException: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported.)
var download = document.getElementById("download"),
result = document.getElementById("previewImage");
function renderContent() {
html2canvas(document.getElementById("firstshirt"), {
allowTaint: true
}).then(function(canvas) {
result.appendChild(canvas);
download.style.display = "inline"; download.href = result.children[0].toDataURL();
});
}
function downloadImage() {
}
document.getElementById("btn-Preview-Image").onclick = renderContent;
download.onclick = downloadImage
Here is the answer...
Just copy and past it..
I hope its helpful to you..