Matthijn
Matthijn

Reputation: 3234

Can I enable intranet users to take screenshot of the current page via the browser?

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

Answers (3)

Gilbert Le Blanc
Gilbert Le Blanc

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

isa
isa

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

Kaj
Kaj

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

Related Questions