I need to make screenshot of website. I tried using html2canvas and all and it\'s working. But problem is i\'m using THREE.WebGLRenderer and THREE.CSS3DRenderer (for html in
I implemented this feature thanks to the file saver js lib
$("#btn_print").click(function() { Render.domElement.toBlob(function(blob) { saveAs(blob, "Final"); }); });
I hope this helps !