Skip to content
Advertisement

html2canvas not capturing image

html2canvas.js not capturing image. it leaves white space where the image occurs.

function capture()
{
    html2canvas(document.body, {
        allowTaint: true,
        logging:true,
        onrendered: function(canvas) {
        imagestring = canvas.toDataURL("image/png");
        console.log(imagestring);
        document.body.appendChild(canvas);
        }
    });
}

I have tried a lot but i cannot find solution .

Help is appreciated 🙂

Advertisement

Answer

It works, when I host it in the server. The security restrictions causes it to fail.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement