我正在将图像转换为字节数组。将它发送到套接字,然后一旦它通过套接字,我需要将其转换回drawable,png或任何类型的图像,我可以用作图像按钮的背景。 问题在于,当我转换为字节数组或从数组转换为drawable时,文件已损坏。
我从手机上最后安装的应用程序中获取原始图像,如下所示,然后我将其保存到手机上的文件中,这样我就可以检查此时图像文件是否已成功捕获(现在是。在这一点上没有任何东西是腐败的):
final PackageManager pm = context.getPackageManager();
ApplicationInfo ai = pm.getApplicationInfo(intent.getData().getSchemeSpecificPart(), 0);
Drawable icon = context.getPackageManager().getApplicationIcon(ai);
BitmapDrawable bitmapIcon = (BitmapDrawable)icon;
FileOutputStream fosIcon = context.openFileOutput(applicationName + ".png", Context.MODE_PRIVATE);
bitmapIcon.getBitmap().compress(Bitmap.CompressFormat.PNG, 100, fosIcon);
InputStream inputStream = context.openFileInput(applicationName + ".png");
Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
// GET FILE DIRECTORY
File imageFile = new File(context.getFilesDir(), applicationName + ".png");
现在我将此位图转换为字节数组以通过套接字发送:
// get bitmap image in bytes to send
int bytes = bitmap.getByteCount();
Log.d("tag_name", "Number of Bytes" + bytes);
ByteBuffer buffer = ByteBuffer.allocate(bytes); //Create a new buffer
bitmap.copyPixelsToBuffer(buffer); //Move the byte data to the buffer
byte[] array = buffer.array();
Log.d("tag_name", "array" + array);
int start=0;
int len=array.length;
Log.d("tag_name", "length" + len);
new SendToClient(array, applicationName, len, start).execute();
此时我知道我的文件已成功保存为此图像:
然后,在SendToClient中,我使用DataOutputStream来发送数组。我没有发布此代码,因为我已经测试过发送数据不是问题发生的地方。如果我不发送字节数组,并在同一个活动中从字节数组转换回drawable,它也会损坏。
以下是在使用DataInputStream读取已发送的数组后,如何从数组转换回drawable:
YuvImage yuvimage=new YuvImage(array, ImageFormat.NV21, 100, 100, null);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
yuvimage.compressToJpeg(new Rect(0, 0, 100, 100), 80, baos);
byte[] jdata = baos.toByteArray();
// Convert to Bitmap
Bitmap bmp = BitmapFactory.decodeByteArray(jdata, 0, jdata.length);
Log.d("tag_name", "bmp" + bmp);
// convert bitmap to drawable
final Drawable d = new BitmapDrawable(context.getResources(), bmp);
我第一次压缩为JPEG的原因是因为如果我只使用BitmapFactory.decodeByteArray,那么我会得到“bmp = null”,首先转换为JPEG是我找到的唯一可以得到位图的解决方案't null,但现在我的图像已损坏。这就是Drawable d的样子:
答案 0 :(得分:2)
请尝试以下代码
将位图转换为ByteArray。
Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.drawable.myImage);
ByteArrayOutputStream opstream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.PNG, 100, opstream);
byte[] bytArray = opstream.toByteArray();
将ByteArray转换为位图。
Bitmap bitmap = BitmapFactory.decodeByteArray(bytArray, 0, bytArray.length);
ImageView img = (ImageView) findViewById(R.id.imgv1);
img.setImageBitmap(bitmap);
这可能对你有所帮助。