OpenGL(LWJGL) - 获取纹理的像素颜色

时间:2015-07-29 20:08:33

标签: java opengl lwjgl

如何获取RGBA纹理的像素颜色?说我有这样的功能:

public Color getPixel(int x, int y) {
    int r = ...
    int g = ...
    int b = ...
    int a = ...

    return new Color(r, g, b, a);
}

我很难使用glGetTexImage()工作;

    int[] p = new int[size.x * size.y * 4];
    ByteBuffer buffer = ByteBuffer.allocateDirect(size.x * size.y * 16);
    glGetTexImage(GL_TEXTURE_2D, 0, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
    buffer.asIntBuffer().get(p);

    for (int i = 0; i < p.length; i++) {
        p[i] = (int) (p[i] & 0xFF);
    }

但我不知道如何访问具有给定坐标的像素。

2 个答案:

答案 0 :(得分:1)

像这样?希望这可以帮助你:)

public Color getPixel(BufferedImage image, int x, int y) {
    ByteBuffer buffer = BufferUtils.createByteBuffer(image.getWidth() *
      image.getHeight() * 4); //4 for RGBA, 3 for RGB

    if (y <= image.getHeight() && x <= image.getWidth()){
      int pixel = pixels[y * image.getWidth() + x];
      int r=(pixel >> 16) & 0xFF);     // Red 
      int g=(pixel >> 8) & 0xFF);      // Green 
      int b=(pixel & 0xFF);            // Blue
      int a=(pixel >> 24) & 0xFF);     // Alpha
      return new Color(r,g,b,a)
    }
    else{
      return new Color(0,0,0,1);
    }
}

它不是测试,但应该工作

答案 1 :(得分:0)

这就是我为实现这一目标所做的一切。

首先,我将byte[]中的像素设置为glGetTexImage

byte[] pixels = new byte[size.x * size.y * 4];
ByteBuffer buffer = ByteBuffer.allocateDirect(pixels.length);
glGetTexImage(GL_TEXTURE_2D, 0, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
buffer.get(pixels);

然后,要获得特定坐标的像素,这是我使用的算法:

public Color getPixel(int x, int y) {
    if (x > size.x || y > size.y) {
        return null;
    }

    int index = (x + y * size.x) * 4;

    int r = pixels[index] & 0xFF;
    int g = pixels[index + 1] & 0xFF;
    int b = pixels[index + 2] & 0xFF;
    int a = pixels[index + 3] & 0xFF;

    return new Color(r, g, b, a);
}

这将返回一个Color对象,其参数范围为0-255,如预期的那样。