常见图片处理
1. RGB转RGBA
rgb数据转成rgba数据,在rgb的基础上新增alpha通道
private byte[] rgb2Rgba(byte[] rgb) {
byte[] rgba = new byte[width * height * 4];
int count =rgb.length/3;
for(int i=0;i<count;i++) {
rgba[i*4+0] =rgb[i*3+0];
rgba[i*4+1] =rgb[i*3+1];
rgba[i*4+2] =rgb[i*3+2];
rgba[i*4+3] =1;
}
return rgba;
}
2. RGBA转RGB
rgba数据转成rgb数据,在rgba的基础上去除alpha通道
private byte[] rgba2Rgb(byte[] rgba) {
byte[] rgb = new byte[width * height * 3];
int count =rgb.length/3;
for(int i=0;i<count;i++) {
rgb[i*3+0] =rgba[i*4+0];
rgb[i*3+1] =rgba[i*4+1];
rgb[i*3+2] =rgba[i*4+2];
}
return rgb ;
}
3. RGB转BGR
rgb 数据转成bgr数据,在rgb的基础上将r和b通道互换
private byte[] rgb2bgr(byte[] rgb) {
byte[] bgr = new byte[width * height * 3];
int count =bgr.length/3;
for(int i=0;i<count;i++) {
bgr[i*3+0] =rgb[i*3+0];
bgr[i*3+1] =rgb[i*3+1];
bgr[i*3+2] =rgb[i*3+2];
}
return bgr;
}