先附上官方文档地址:
https://developer.android.com/reference/android/graphics/Color.html
方法一:
已知RGB子像素数据的frame数组,然后需要转换成color的整像素数据
int[] argb = new int[width*height];
for (int i=0; i<height; i++) {
for (int j=0; j<width; j++) {
argb[i * width + j] = 255;
argb[i * width + j] = (argb[i * width + j] << 8) + frame[(i*width + j) * 3 + 2]; //+r
argb[i * width + j] = (argb[i * width + j] << 8) + frame[(i*width + j) * 3 + 1]; //+g
argb[i * width + j] = (argb[i * width + j] << 8) + frame[(i*width + j) * 3 + 0]; //+b
}
}
//通过像素构建一个argb_8888格式的bitmap图像
Bitmap bit = Bitmap.createBitmap(argb, 640, 480, Bitmap.Config.ARGB_8888);
方法二:
android自带的方法,
int color = rgb(int red, int green, int blue)
方法三:
通过color整像素数据求得子像素R、G、B数据,求逆
int A = (color >> 24) & 0xff; // or color >>> 24
int R = (color >> 16) & 0xff;
int G = (color >> 8) & 0xff;
int B = (color ) & 0xff;
int color = (A & 0xff) << 24 | (R & 0xff) << 16 | (G & 0xff) << 8 | (B & 0xff);