Is it possible to to take a screenshot of a webpage with javascript and then submit that back to the server? I'm not so concerned with browser security issues etc as the implementation would be for HTA. But is it possible?
|
closed as not constructive by Will♦ Nov 27 '12 at 13:59
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I have done this for an HTA by using an ActiveX control. It was pretty easy to build the control in VB6 to take the screenshot. I had to use the keybd_event API call because SendKeys can't do PrintScreen. Here's the code for that:
That only gets you as far as getting the window to the clipboard. Another option, if the window you want a screenshot of is an HTA would be to just use an XMLHTTPRequest to send the DOM nodes to the server, then create the screenshots server-side. |
||||
|
Google is doing this in Google+ and a talented developer reverse engineered it and produced http://html2canvas.hertzen.com/ . To work in IE you'll need a canvas support library such as http://excanvas.sourceforge.net/ |
|||||
|
|
Pounder's if this is possible to do by setting the whole body elements into a canvase then using canvas2image ? |
|||||||||||
|
|
Another possible solution that I've discovered is http://www.phantomjs.org/ which allows one to very easily take screenshots of pages and a whole lot more. Whilst my original requirements for this question aren't valid any more (different job), I will likely integrate PhantomJS into future projects. |
|||||
|
|
This might not be the ideal solution for you but might still be worth mentioning. Snapsie is an open source, ActiveX object that enables Internet Explorer screenshots to be captured and saved. Once the dll is registered on the client, you should be able to capture the screenshot and upload the file to the server withing javascript. Drawbacks: needs to register the dll at the client and works only with IE. |
|||
|
|
|
We had a similar requirement for reporting bugs. Since it was for Intranet scenario, we were able to use browser addons (like Fireshot for Firefox, IE Screenshot for IE) |
|||
|
|
|
A possible way to do this, if running on windows and have .NET installed you can do:
And then via PHP you can do:
Then you have the screenshot in the server side. |
||||
|
|
The SnapEngage uses Java Applet (1.5+) to make a browser screenshot. AFAIK java.awt.Robot should do the job - the user has just to permit the applet to do it (once). And I have just found a post about it: |
|||
|
|
|
You can achieve that using HTA and vbscript. Just call an external tool to do the screenshotting. I forgot what the name is, but on Vista there is a tool to do screenshots. You don't even need an extra install for it. As for as automatic - totally depends on the tool you use. If it has an API, I am sure you can trigger the screenshot and saving process through a couple VB calls without the user knowing that you did what you did. Since you mentioned HTA, I am assuming you are on Windows and (probably) know your environment (e.g. OS and version) very well. |
|||
|
|
I have come across GrabzIt before that allows you to quickly take screenshots of web pages using their Javascript API and display it straight in your web page. Heres an example:
|
|||||
|
protected by rynah Jan 6 '12 at 4:22
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.