我从RGBA格式获取NDK的字节数组。我需要将字节数组刷新到Bitmap(在ImageView或Surface中显示)。
我想用:
Bitmap bm = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
bm.copyPixelsFromBuffer(ByteBuffer.wrap(buffer));
但无法找到将RGBA转换为ARGB_8888格式的方法。
有什么想法吗?
谢谢!
答案 0 :(得分:3)
(Oldie但是......)您也可以使用Java代码交换字节顺序。访问我写的here的位图字节的示例可能会有所帮助......
由于公众的需求(以下是未经测试的 - 我仍然看到这个神秘链接背后的内容)。以下是未经测试的:
public static Bitmap RGBA2ARGB(Bitmap img)
{
int width = img.getWidth();
int height = img.getHeight();
int[] pixelsIn = new int[height*width];
int[] pixelsOut = new int[height*width];
img.getPixels(pixelsIn,0,width,0,0,width,height);
int pixel=0;
int count=width*height;
while(count-->0){
int inVal = pixelsIn[pixel];
//Get and set the pixel channel values from/to int //TODO OPTIMIZE!
int r = (int)( (inVal & 0xff000000)>>24 );
int g = (int)( (inVal & 0x00ff0000)>>16 );
int b = (int)( (inVal & 0x0000ff00)>>8 );
int a = (int)( inVal & 0x000000ff) ;
pixelsOut[pixel] = (int)( a <<24 | r << 16 | g << 8 | b );
pixel++;
}
Bitmap out = Bitmap.createBitmap(pixelsOut,0,width,width,height, Bitmap.Config.ARGB_8888);
return out;
}
答案 1 :(得分:0)
您可以使用OpenCV(您可以将它与NDK一起使用)。
然后使用this method:cvCvtColor(sourceIplimage, destinationIplImage, code)