Search code examples
javascriptjqueryhtmlhtml2canvas

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 :)


Solution

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