HTML5 print screen automatically

Is it possible or is there any html5/javascript/jquery library that allows me to take a print from the window or a div and automatically save without needing the user's permission?

Already tried window.print() but it asks for user permission

Note: I want to save as image not send to printer

 12
Author: Silvio Andorinha, 2014-02-25

1 answers

There is an open source project called html2canvas that converts the view from a DOM object into a canvas and with that you can retrieve it in Image Form.

I advise read the documentation for better clarification, the project is very good, worth seeing. I think the primary thing you want to do is in that library.

 13
Author: Tuyoshi Vinicius, 2014-06-05 19:28:22