Does anyone have recommendations on screen recording software to
capture Java2D-based software on the windows platform?
The few I had on hand would not record the panel contents, and I don't
want to corrupt, er.. install lots of programs to find one that will
work.
Thanks in advance...
Bryan
Hal Rosser - 19 Mar 2007 02:05 GMT
> Does anyone have recommendations on screen recording software to
> capture Java2D-based software on the windows platform?
[quoted text clipped - 6 lines]
>
> Bryan
here's one
http://www.camstudio.org/
lists@gotcomm.com - 21 Mar 2007 03:04 GMT
> here's onehttp://www.camstudio.org/
Thanks, I'll give it a try.
brian.vanheesch@gmail.com - 19 Mar 2007 10:34 GMT
On Mar 19, 12:18 am, l...@gotcomm.com wrote:
> Does anyone have recommendations on screen recording software to
> capture Java2D-based software on the windows platform?
[quoted text clipped - 6 lines]
>
> Bryan
Not sure if this is what you are looking for:
java.awt.Robot robot = new Robot ( getGraphicsConfiguration
( ).getDevice ( ) ) ;
BufferedImage capture = robot.createScreenCapture ( new Rectangle
( windowRect.x ,
windowRect.y , windowRect.width , windowRect.height ) ) ;
will screen capture (from the main screen) within java code.