1. 程式人生 > >e671. 在緩沖圖像中存取像素

e671. 在緩沖圖像中存取像素

height ima pix null bgcolor lpad all style eth

    // 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. 在緩沖圖像中存取像素