JAVA设计一个pixel类,表示屏幕上的像素,并运行测试
发布网友
发布时间:2022-07-15 08:43
我来回答
共1个回答
热心网友
时间:2023-11-30 04:34
int c = pixels[index]; // or pixels[x * width + y]
int red = (c & 0x00ff0000) >> 16;
int green = (c & 0x0000ff00) >> 8;
int blue = c & 0x000000ff;
// and the Java Color is ...
Color color = new Color(red,green,blue);追问我是初学者,能否更完整基础些