android - 显示从相机拍摄的照片 : java. lang.OutOfMemoryError at android.graphics.BitmapFactory.nativeDecodeStream(Native Method)

标签 android image bitmap out-of-memory android-camera

我正在尝试显示相机拍摄的照片,有时它可以正常工作,但通常会出现错误:

java.lang.OutOfMemoryError
     at android.graphics.BitmapFactory.nativeDecodeStream(Native Method)
     at android.graphics.BitmapFactory.decodeStreamInternal(BitmapFactory.java:727)
     at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:703)
     at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:741)
     at android.provider.MediaStore$Images$Media.getBitmap(MediaStore.java:847)
     at com.dima.polimi.rentall.NewProduct.onActivityResult(NewProduct.java:207)
     at android.app.Activity.dispatchActivityResult(Activity.java:5773)
     at android.app.ActivityThread.deliverResults(ActivityThread.java:3710)
     at android.app.ActivityThread.handleSendResult(ActivityThread.java:3757)
     at android.app.ActivityThread.access$1400(ActivityThread.java:170)
     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1352)
     at android.os.Handler.dispatchMessage(Handler.java:102)
     at android.os.Looper.loop(Looper.java:146)
     at android.app.ActivityThread.main(ActivityThread.java:5635)
     at java.lang.reflect.Method.invokeNative(Native Method)
     at java.lang.reflect.Method.invoke(Method.java:515)
     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1291)
     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1107)
     at dalvik.system.NativeStart.main(Native Method)

我已经尝试了多个问题的解决方案,但我从来没有成功过

这是我的代码:

mImageView.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            dispatchTakePictureIntent();
        }
    });

dispatchTakePictureIntent

String mCurrentPhotoPath;

private void dispatchTakePictureIntent() {
    Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    if (cameraIntent.resolveActivity(getPackageManager()) != null) {
        // Create the File where the photo should go
        File photoFile = null;
        try {
            photoFile = createImageFile();
        } catch (IOException ex) {
            // Error occurred while creating the File
            Log.i("", "IOException");
        }
        // Continue only if the File was successfully created
        if (photoFile != null) {
            cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(photoFile));
            startActivityForResult(cameraIntent, REQUEST_TAKE_PHOTO);
        }
    }
}

private File createImageFile() throws IOException {
    // Create an image file name
    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
    String imageFileName = "JPEG_" + timeStamp + "_";
    File storageDir = Environment.getExternalStoragePublicDirectory(
            Environment.DIRECTORY_PICTURES);
    File image = File.createTempFile(
            imageFileName,  // prefix
            ".jpg",         // suffix
            storageDir      // directory
    );

    // Save a file: path for use with ACTION_VIEW intents
    mCurrentPhotoPath = "file:" + image.getAbsolutePath();
    return image;
}


@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == REQUEST_TAKE_PHOTO && resultCode == RESULT_OK) {
        try {
            Bitmap mImageBitmap = MediaStore.Images.Media.getBitmap(this.getContentResolver(), Uri.parse(mCurrentPhotoPath));
            mImageView.setImageBitmap(mImageBitmap);
        } catch (IOException e) {
            e.printStackTrace();
        }
    } 
}

最佳答案

终于我让它工作了,解决方案是像这样使用位图:

 Bitmap b = BitmapUtility.decodeSampledBitmapFromResource(image.getAbsolutePath(), 540, 360);

位图工具:

public class BitmapUtility {

public static Bitmap decodeSampledBitmapFromResource(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;
    return BitmapFactory.decodeFile(path, options);
}
private static 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) {

        final int halfHeight = height / 2;
        final int halfWidth = width / 2;

        // Calculate the largest inSampleSize value that is a power of 2 and keeps both
        // height and width larger than the requested height and width.
        while ((halfHeight / inSampleSize) > reqHeight
                && (halfWidth / inSampleSize) > reqWidth) {
            inSampleSize *= 2;
        }
    }

    return inSampleSize;
} }

关于android - 显示从相机拍摄的照片 : java. lang.OutOfMemoryError at android.graphics.BitmapFactory.nativeDecodeStream(Native Method),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41779240/

相关文章:

java - NullPointerException 致命异常 : Thread-5023 error

java - 从监听器返回值

java - Android proguard 混淆代码导致 NullPointerException,而实际上不应该

html - 如何将 url 链接附加到图像?

android - Java BufferedImage/Android 位图

android - 使用 XML 设置选项卡小部件的样式

css - 向左浮动调整图像大小 100% whit parent

silverlight - 将图像粘贴到 Silverlight 中

Android PNG 到位图 --- SkImageDecoder::Factory 返回 null

Android Canvas 使用位图撤消和重做