我想将彩色图像转换为单色,我想循环所有像素,但我不知道如何测试它们是亮还是暗。
for(int y=0;y<image.getHeight();y++){
for(int x=0;x<image.getWidth();x++){
int color=image.getRGB(x, y);
// ???how to test if its is bright or dark?
}
}