1

我已将位图图像转换为字符串以保存它:

............
Bitmap photo = extras.getParcelable("data");
ByteArrayOutputStream baos = new ByteArrayOutputStream();
photo.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] b = baos.toByteArray();
String encodedImage = Base64.encodeToString(b, Base64.DEFAULT);

然后我从字符串中检索位图以设置活动的背景,就像这样:

byte[] temp = Base64.decode(encodedImage, Base64.DEFAULT);
Options options = new BitmapFactory.Options();
options.inScaled = false;
Bitmap bitmap = BitmapFactory.decodeByteArray(temp, 0,
                temp.length, options);
Drawable d = new BitmapDrawable(getResources(), bitmap);
getWindow().setBackgroundDrawable(d);

一切正常,但图像质量大大降低。我知道这是因为photo.compress(Bitmap.CompressFormat.JPEG, 100, baos);当我压缩这个图像时(虽然是最好的压缩分辨率)。那么如何在不压缩图像的情况下做到这一点呢?我也尝试过以下代码,但它什么也没返回

 .......
Bitmap photo = extras.getParcelable("data");
int bytes = photo.getWidth() * photo.getHeight() * 4;
ByteBuffer buffer = ByteBuffer.allocate(bytes);
photo.copyPixelsToBuffer(buffer);
byte[] b = buffer.array();
String encodedImage = Base64.encodeToString(b, Base64.DEFAULT);

我也sharedPreference用来保存图像。我也想过sqliteinternal storage但在这两种情况下都需要压缩,正如我在互联网上发现的那样

4

0 回答 0