我知道我们可以使用以下代码模拟打印屏幕:
robot.keyPress(KeyEvent.VK_PRINTSCREEN);
..但是如何返回一些BufferedImage
?
我在 Google 上找到了一些方法,getClipboard()
但 Netbeans 在这个方法上返回了一些错误(找不到符号)。
我很抱歉问这个问题,但是有人可以向我展示一个关于如何从这个按键返回的工作代码,BufferedImage
然后我可以保存吗?
我知道我们可以使用以下代码模拟打印屏幕:
robot.keyPress(KeyEvent.VK_PRINTSCREEN);
..但是如何返回一些BufferedImage
?
我在 Google 上找到了一些方法,getClipboard()
但 Netbeans 在这个方法上返回了一些错误(找不到符号)。
我很抱歉问这个问题,但是有人可以向我展示一个关于如何从这个按键返回的工作代码,BufferedImage
然后我可以保存吗?
这不一定会给你一个BufferedImage
,但它会是一个Image
. 这利用Toolkit.getSystemClipboard
.
final Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
if (clipboard.isDataFlavorAvailable(DataFlavor.imageFlavor)) {
final Image screenshot = (Image) clipboard.getData(DataFlavor.imageFlavor);
...
}
如果您确实需要 a BufferedImage
,请尝试以下操作...
final GraphicsConfiguration config
= GraphicsEnvironment.getLocalGraphicsEnvironment()
.getDefaultScreenDevice().getDefaultConfiguration();
final BufferedImage copy = config.createCompatibleImage(
screenshot.getWidth(null), screenshot.getHeight(null));
final Object monitor = new Object();
final ImageObserver observer = new ImageObserver() {
public void imageUpdate(final Image img, final int flags,
final int x, final int y, final int width, final int height) {
if ((flags & ALLBITS) == ALLBITS) {
synchronized (monitor) {
monitor.notifyAll();
}
}
}
};
if (!copy.getGraphics().drawImage(screenshot, 0, 0, observer)) {
synchronized (monitor) {
try {
monitor.wait();
} catch (final InterruptedException ex) { }
}
}
不过,我真的不得不问你为什么不只使用Robot.createScreenCapture
.
final Robot robot = new Robot();
final GraphicsConfiguration config
= GraphicsEnvironment.getLocalGraphicsEnvironment()
.getDefaultScreenDevice().getDefaultConfiguration();
final BufferedImage screenshot = robot.createScreenCapture(config.getBounds());