我知道我们可以使用以下代码模拟打印屏幕:
robot.keyPress(KeyEvent.VK_PRINTSCREEN);
..但是如何返回一些BufferedImage
?
我在Google上找到了一个名为getClipboard()
的方法,但Netbeans在这个方法上给我一些错误(无法找到符号)。
我很遗憾地问这个问题,但有人可以告诉我一个关于如何从这个键返回的工作代码按BufferedImage
我可以保存吗?
答案 0 :(得分:8)
这不一定会为您提供BufferedImage
,但它会是Image
。这利用Toolkit.getSystemClipboard
。
final Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
if (clipboard.isDataFlavorAvailable(DataFlavor.imageFlavor)) {
final Image screenshot = (Image) clipboard.getData(DataFlavor.imageFlavor);
...
}
如果确实需要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());