html2canvas not rendering image (externally hosted images)
问题 I have created a game in which users pick 4 images from 4 separate slideshows to create a composite image, which I then want to be able to export to a 'gallery' function on my site. I am attempting to use html2canvas but am encountering some problems this is my jquery: var shotit = function() { $('.bodyWrap').html2canvas({ onrendered : function(canvas) { var img = canvas.toDataURL(); $('<img>',{src:img}).appendTo($('body')); } }); } body wrap is a really long html element with lots of child