Here is my code:
html2canvas($("#divImage"), {
onrendered: function(canvas) {
console.log ("w: " + canvas.width + "h: " + canvas.height);
window.open(canvas.toDataURL());
}
});
This code gives me a very low resolution image using a laptop (chrome or safari) and gives me a blank image on the iPad. The height and width that comes back in the console is 400x400px which is the size displayed on the page. The image it self has 1000x1000px. I've looked around and found some posts about it but none of had a solution. Thanks.