0

サーバーから画像データを取得し、Base64.decode を使用してバイト [] に変換しています。私のコードは小さな画像サイズでは問題なく動作しますが、サイズが 9.2MB の特定の画像ではクラッシュします。さまざまな投稿でダウン サンプリングについて読みましたが、コードのサンプリング セクションに到達する前に、次のコード行のバイトを読み取っているときにメモリ不足の例外が発生します。byte[] data = Base64.decode(attchData[i].getBytes(),0);

私を助けてください。

4

3 に答える 3

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

これを使用するだけで、より良い解決策を得ることができます:

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 に答える