zl程序教程

您现在的位置是:首页 >  其它

当前栏目

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

图像 像素 缓冲 存取
2023-09-14 09:12:00 时间

 

    // 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