Remote Control Software
Hi there,
I'm building a desktop remote control application. I was looking at the Screen Grabber example ( http://java.sun.com/products/java-media/jmf/2.1.1/solutions/ScreenGrabber.html ) in order to be able to catch a desktop image and send it over the network. The example is using the robot.createScreenCapture(...) method to get the desktop image. This works fine if the image is small, but when it comes to grab a full screen image the program becomes terribly slow and it wastes a lot of memory. I suppose the caught image is not compressed at all and it is difficult to manage big images at a certain frame rate...
Is there any way to get a smaller desktop image in JAVA or I'm supposed to use some sort of native code and link it through JNI?
Thanks a lot

