在我的Android应用程序中,我想将从相机中取出的图像转换为字节数组,然后转换回位图以在图像视图中查看。我可以通过Bitmap.compress轻松完成。但我想在没有Bitmap.compress的情况下这样做。问题是我得到白线(每次(线条)图像都很差)
Bitmap hello; //image coming from camera
ByteBuffer buffer = ByteBuffer.allocate(hello.getByteCount());
hello.copyPixelsToBuffer(buffer);
byte[] bytes1 = buffer.array();
byte [] Bits = new byte[bytes1.length*4];
int i;
for(i=0;i<bytes1.length;i++)
{
Bits[i*4] =
Bits[i*4+1] =
Bits[i*4+2] = (byte) ~bytes1[i]; //Invert the source bits
Bits[i*4+3] = -1;//0xff, that's the alpha.
}
Bitmap bmimage = Bitmap.createBitmap( 360,248, Bitmap.Config.ARGB_8888);
bmimage.copyPixelsFromBuffer(ByteBuffer.wrap(Bits));
imageView11.setImageBitmap(bmimage);
答案 0 :(得分:1)
位图到字节数组:
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] imageBytes = stream.toByteArray();
或
int bytes = bitmap.getByteCount();
ByteBuffer buffer = ByteBuffer.allocate(bytes);
bitmap.copyPixelsToBuffer(buffer);
byte[] array = buffer.array();
字节数组到位图:
InputStream inputStream = new ByteArrayInputStream(bytes);
BitmapFactory.Options o = new BitmapFactory.Options();
BitmapFactory.decodeStream(inputStream, null, o);
答案 1 :(得分:0)
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bm.compress(Bitmap.CompressFormat.PNG, 100, baos); //bm is the bitmap object
byte[] b = baos.toByteArray();
///useing following code
String encoded = Base64.encodeToString(b, Base64.DEFAULT);