- 可能此查询已经在电路上,但我无法在任何地方找到答案。 -
我设计了一个Java3D对象,它由不同的形状组成,具有不同的颜色和闪电效果。现在我想将此对象导出为BufferedImage。有没有办法做到这一点。请分享你的想法。
感谢
答案 0 :(得分:1)
如果我理解你的问题,听起来你想截取当前3D场景的截图?如果是这样,您可能需要查看java.awt.Robot类,如下所示:
Robot robot = new Robot();
// Capture the screen shot of the area of the screen defined by the rectangle
BufferedImage bi=robot.createScreenCapture(new Rectangle(100,100));
ImageIO.write(bi, "jpg", new File("C:/imageTest.jpg"));
来源:http://www.java-tips.org/java-se-tips/java.awt/how-to-capture-screenshot.html