Reputation: 3234
Is it possible to create a screenshot from the current page the user is on? (It's for an Intranet enviroment).
I know this is not possible with JavaScript alone, but is it possible with Flash or maybe an Java applet?
I have been searching around but I couldn't find anything.
Thanks.
Upvotes: 1
Views: 364
Reputation: 51445
A software product like Easy Capture allows Windows users to take a screen shot of the full screen, which can be useful in debugging.
Upvotes: 0
Reputation: 1085
You can send the page url to server side script or to an app on the server and return the full page screenshot image
Upvotes: 0
Reputation: 10949
It might be possible to do in a Java applet that is signed. The Robot class has a method that makes it possible to capture the screen; Robot.createScreenCapture
Upvotes: 3