1

如何从 android 模拟器 SD 卡获取图像的字节 []?

这是我当前的代码:

File f = new File("/mnt/sdcard/test.jpg");
ImageView mImgView1 = (ImageView)findViewById(R.id.iv);
Bitmap bmp = BitmapFactory.decodeFile(f.getAbsolutePath());

我想要的是图像的字节格式,我该怎么做?

4

2 回答 2

4

创建一个ByteArrayOutputStreamthen 调用compress()方法,Bitmap这样位图的内容将被传入ByteArrayOutputStream并转换为byte[]

public byte[] bitmapToByteArray(Bitmap b)
{
    ByteArrayOutputStream stream = new ByteArrayOutputStream();
    b.compress(Bitmap.CompressFormat.PNG, 100, stream);
    byte[] byteArray = stream.toByteArray();
    return byteArray;
}

申请,

Bitmap bmp = BitmapFactory.decodeFile(file.getAbsolutePath());

byte[] bitmapBytes = bitmapToByteArray(bmp);
于 2013-02-25T03:41:40.130 回答
0

您可以将 Bitmap 转换为 byte[] ,例如:

String imageInSD = Environment.getExternalStorageDirectory().getAbsolutePath() +"/Folder/" + filename + ".PNG";
Bitmap bmp = BitmapFactory.decodeFile(imageInSD);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] byteArray = stream.toByteArray();
于 2013-02-25T03:40:21.810 回答