vote up 2 vote down star

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?

flag

Can you clarify why you want to do this? Perhaps there are alternative solutions to taking screenshots. – andyuk Sep 13 '08 at 10:31
I also agree with @andyuk. – Codeslayer Sep 13 '08 at 10:40
I'm looking at having the user roughly design what they want, a bit of a sketch and a bit of a drag 'n drop of objects. I then want this "design" to be used as some part of the instructions in a production process. It is definitely a user-involved step, nothing clandestine here :) – Scott Bennett-McLeish Sep 13 '08 at 15:08

6 Answers

vote up 3 vote down check

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:

Declare Sub keybd_event Lib "user32" _
(ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)

Public Const CaptWindow = 2

Public Sub ScreenGrab()
   keybd_event &H12, 0, 0, 0
   keybd_event &H2C, CaptWindow, 0, 0
   keybd_event &H2C, CaptWindow, &H2, 0
   keybd_event &H12, 0, &H2, 0
End Sub

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

is there are particular reason why you want to use javascript & send it back to the server? If you want to see your website rendered by different browsers, you could use http://browsershots.org/

link|flag
vote up 1 vote down

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)

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

re the user design step - Have you considered something like http://www.balsamiq.com/products/mockups ?

link|flag
I appreciate your answer and I'm familiar with balsamiq but that isn't what I want, it is to be integrated with an ERP. – Scott Bennett-McLeish Sep 15 '08 at 2:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.