Given an Applet object, is it possible to programatically obtain a "screen shot" of the applet window (represented as say a BufferedImage)?
JApplet applet = this;
// ... code here ...
BufferedImage screenshotOfApplet = ...;
|
|
Given an Applet object, is it possible to programatically obtain a "screen shot" of the applet window (represented as say a BufferedImage)?
|
||
|
|
|
|
You could use After comments - If you just want the applet component - You can create a BufferedImage and paint to it - something like this:
I'm not sure if this would require the applet to be signed or not... |
|||
|
|
|
At least if you're only using Swing components, I suppose it would be possible to create a BufferedImage of the same size as the applet and call the applet's paint method with the Graphics object you can get from BufferedImage#getGraphics(). I have no template code here to test if it actually works, but I guess it's worth a try. |
||
|
|
|
|
Screen Image. Must admit I've never tried it on a JApplet before, but it works fine on JFrames and JDialogs. |
||
|
|
|
|
I think you want |
||
|
|