0

我正在从服务器获取图像数据,并使用 Base64.decode 将其转换为 byte[]。我的代码适用于小图像尺寸,但对于尺寸为 9.2MB 的特定图像,它会崩溃。我已经在各种帖子中阅读了有关下采样的信息,但是在我进入代码的采样部分之前,我在读取以下代码行中的字节时遇到了内存不足异常。byte[] 数据 = Base64.decode(attchData[i].getBytes(),0);

请帮帮我。

4

3 回答 3

0

您可以简单地使用它并获得更好的解决方案:

public Bitmap getResizedBitmap(Bitmap bm, int newHeight, int newWidth) {
  int width = bm.getWidth();
  int height = bm.getHeight();
  float scaleWidth = ((float) newWidth) / width;
  float scaleHeight = ((float) newHeight) / height;
  // CREATE A MATRIX FOR THE MANIPULATION
  Matrix matrix = new Matrix();
  // RESIZE THE BIT MAP
  matrix.postScale(scaleWidth, scaleHeight);

// "RECREATE" THE NEW BITMAP
   Bitmap resizedBitmap = Bitmap.createBitmap(bm, 0, 0, width, height,
        matrix, false);
   return resizedBitmap; }
于 2013-07-19T06:04:07.450 回答
0

使用这种方法,可能对你有用

    decodeSampledBitmapFromPath(src, reqWidth, reqHeight);

使用这个实现

 public int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {
        // Raw height and width of image
        final int height = options.outHeight;
        final int width = options.outWidth;
        int inSampleSize = 1;

        if (height > reqHeight || width > reqWidth) {
            if (width > height) {
                inSampleSize = Math.round((float) height / (float) reqHeight);
            } else {
                inSampleSize = Math.round((float) width / (float) reqWidth);
            }
        }
        return inSampleSize;
    }

    public Bitmap decodeSampledBitmapFromPath(String path, int reqWidth, int reqHeight) {
        // First decode with inJustDecodeBounds=true to check dimensions
        final BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(path, options);

        // Calculate inSampleSize
        options.inSampleSize = calculateInSampleSize(options, reqWidth,
                reqHeight);

        // Decode bitmap with inSampleSize set
        options.inJustDecodeBounds = false;
        Bitmap bmp = BitmapFactory.decodeFile(path, options);
        return bmp;
    }
于 2013-07-19T06:06:45.683 回答
0

将您正在读取的输入流(从服务器读取数据时)包装在Base64InputStream中。这应该会减少 base64 解码阶段所需的内存量。

但是您应该检查您是否真的必须将这种大小的图像发送给客户端。也许图像可以在服务器端缩放?

于 2013-07-19T06:19:17.283 回答