我正在寻找一种方法来获取任何正在运行的directX游戏的Java应用程序的屏幕截图。我使用以下代码
Robot robot = new Robot();
GraphicsConfiguration config = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration();
BufferedImage screenshot = robot.createScreenCapture(config.getBounds());
ImageIO.write(screenshot,"png", file);
这款游戏适用于任何地方,但在DirectX游戏中。我不熟悉Java,甚至不太熟悉DirectX,我只是想调整这段代码。我google了很多,但一切都只是导致了我已经拥有的相同代码。
你知道另一种截取DirectX游戏截图的方法吗?
感谢。
答案 0 :(得分:-1)
调用GraphicsDevice#getFullScreenWindow
可能会有效,但我还没有真正测试过此代码。
BufferedImage screenshot;
GraphicsDevice gd = GraphicsEnvironment
.getLocalGraphicsEnvironment()
.getDefaultScreenDevice();
Window window = gd.getFullScreenWindow();
if(window == null) {
Robot robot = new Robot();
GraphicsConfiguration config = gd.getDefaultConfiguration();
screenshot = robot.createScreenCapture(config.getBounds());
} else {
screenshot = new BufferedImage(window.getWidth(),
window.getHeight(),
BufferedImage.TYPE_INT_RGB);
window.paint(screenshot.getGraphics());
}
ImageIO.write(screenshot, "png", file);