e671. 在缓冲图像中存取像素

Posted borter

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了e671. 在缓冲图像中存取像素相关的知识,希望对你有一定的参考价值。

 

    // Get a pixel
    int rgb = bufferedImage.getRGB(x, y);
    
    // Get all the pixels
    int w = bufferedImage.getWidth(null);
    int h = bufferedImage.getHeight(null);
    int[] rgbs = new int[w*h];
    bufferedImage.getRGB(0, 0, w, h, rgbs, 0, w);
    
    // Set a pixel
    rgb = 0xFF00FF00; // green
    bufferedImage.setRGB(x, y, rgb);

 

Related Examples

以上是关于e671. 在缓冲图像中存取像素的主要内容,如果未能解决你的问题,请参考以下文章

如何在opengl es 3+中获取我的离屏帧缓冲区内的底层对象的像素颜色?

java缓冲图像:检测黑色像素

WebGL - 从渲染缓冲区读取像素数据

Linux 绘制像素缓冲区

如何从 OpenGL 中的帧缓冲区纹理中采样像素?

✠OpenGL-2-图像管线