0

所以基本上我现在在搞 LWJGL 一段时间了,我突然停下来,周围有很多烦恼glReadPixels()
以及为什么它只会从左下 -> 右上角读取。
所以我在这里回答我自己的问题,因为我弄清楚了所有这些东西,
我希望我的发现可能对其他人有用。

作为旁注,我正在使用:

glOrtho(0, WIDTH, 0 , HEIGHT, 1, -1);
4

2 回答 2

3

所以这是我的屏幕捕获代码,可以在任何 LWJGL 应用程序 C 中实现:

//=========================getScreenImage==================================//
    private void screenShot(){
             //Creating an rbg array of total pixels
             int[] pixels = new int[WIDTH * HEIGHT];
             int bindex;
             // allocate space for RBG pixels
             ByteBuffer fb = ByteBuffer.allocateDirect(WIDTH * HEIGHT * 3);

             // grab a copy of the current frame contents as RGB
             glReadPixels(0, 0, WIDTH, HEIGHT, GL_RGB, GL_UNSIGNED_BYTE, fb);

             BufferedImage imageIn = new BufferedImage(WIDTH, HEIGHT,BufferedImage.TYPE_INT_RGB);
             // convert RGB data in ByteBuffer to integer array
             for (int i=0; i < pixels.length; i++) {
                 bindex = i * 3;
                 pixels[i] =
                     ((fb.get(bindex) << 16))  +
                     ((fb.get(bindex+1) << 8))  +
                     ((fb.get(bindex+2) << 0));
             }
             //Allocate colored pixel to buffered Image
             imageIn.setRGB(0, 0, WIDTH, HEIGHT, pixels, 0 , WIDTH);

             //Creating the transformation direction (horizontal)
             AffineTransform at =  AffineTransform.getScaleInstance(1, -1);
             at.translate(0, -imageIn.getHeight(null));

             //Applying transformation
             AffineTransformOp opRotated = new AffineTransformOp(at, AffineTransformOp.TYPE_BILINEAR);
             BufferedImage imageOut = opRotated.filter(imageIn, null);

             try {//Try to screate image, else show exception.
                 ImageIO.write(imageOut, format , fileLoc);
             }
             catch (Exception e) {
                 System.out.println("ScreenShot() exception: " +e);
             }
         }

我希望这很有用。
对于代码的任何问题或意见,请随意询问/建议。C:
拥抱,
罗斯。

于 2012-12-11T11:06:58.370 回答
1

抱歉回复晚了,但这适用于仍在寻找解决方案的任何人。

public static void saveScreenshot() throws Exception {
    System.out.println("Saving screenshot!");
    Rectangle screenRect = new Rectangle(Display.getX(), Display.getY(), Display.getWidth(), Display.getHeight());
    BufferedImage capture = new Robot().createScreenCapture(screenRect);
    ImageIO.write(capture, "png", new File("doc/saved/screenshot.png"));
}
于 2014-06-28T17:31:54.570 回答