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. 在缓冲图像中存取像素的主要内容,如果未能解决你的问题,请参考以下文章