我正在从相机中检索原始图像,图像的规格如下:
- 80 x 60 分辨率
- 4位灰度
我将图像作为字节数组检索,并有一个 2400 (1/2 * 80 * 60) 字节长的数组。下一步是将字节数组转换为位图。我已经用过
BitmapFactory.decodeByteArray(bytes, 0, bytes.length)
但这并没有返回可显示的图像。我查看了这篇文章并将下面的代码复制到我的 Android 应用程序中,但我得到了“缓冲区不够大,无法容纳像素”运行时错误。
byte [] Src; //Comes from somewhere...
byte [] Bits = new byte[Src.length*4]; //That's where the RGBA array goes.
int i;
for(i=0;i<Src.length;i++)
{
Bits[i*4] =
Bits[i*4+1] =
Bits[i*4+2] = ~Src[i]; //Invert the source bits
Bits[i*4+3] = -1;//0xff, that's the alpha.
}
//Now put these nice RGBA pixels into a Bitmap object
Bitmap bm = Bitmap.createBitmap(Width, Height, Bitmap.Config.ARGB_8888);
bm.copyPixelsFromBuffer(ByteBuffer.wrap(Bits));
在线程的底部,原始海报与我目前遇到的错误相同。但是,上面粘贴的代码解决了他的问题。有人对我应该如何将原始图像或 RGBA 数组转换为位图有任何建议吗?
非常感谢!
更新:
我遵循了 Geobits 的建议,这是我的新代码
byte[] seperatedBytes = new byte[jpegBytes.length * 8];
for (int i = 0; i < jpegBytes.length; i++) {
seperatedBytes[i * 8] = seperatedBytes[i * 8 + 1] = seperatedBytes[i * 8 + 2] = (byte) ((jpegBytes[i] >> 4) & (byte) 0x0F);
seperatedBytes[i * 8 + 4] = seperatedBytes[i * 8 + 5] = seperatedBytes[i * 8 + 6] = (byte) (jpegBytes[i] & 0x0F);
seperatedBytes[i * 8 + 3] = seperatedBytes[i * 8 + 7] = -1; //0xFF
}
现在,我可以使用此命令获取位图
Bitmap bm = BitmapFactory.decodeByteArray(seperatedBytes, 0, seperatedBytes.length);
但位图的大小为 0KB。
我得到的图像是来自这台相机的原始图像。不幸的是,检索预压缩的 JPEG 图像不是一种选择,因为我需要 4 位灰度。