在Windows下模拟打印屏幕



我知道我们可以用以下代码模拟打印屏幕:

 robot.keyPress(KeyEvent.VK_PRINTSCREEN);

那么如何返回一些CCD_ 1呢?

我在谷歌上找到了一个名为getClipboard()的方法,但Netbeans在这个方法上给我返回了一些错误(找不到符号)。

很抱歉问这个问题,但有人能给我一个工作代码,告诉我如何从这个键返回并按下BufferedImage,然后我可以保存它吗?

这不一定会给您一个BufferedImage,但它将是一个Image。这利用了CCD_ 6。

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());

相关内容

  • 没有找到相关文章

最新更新