标签:缓冲 add body table cin 像素 pixel null example
// 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 |
标签:缓冲 add body table cin 像素 pixel null example
原文地址:https://www.cnblogs.com/borter/p/9575554.html