我有一个应用程序,用户可以在其中上传他们的用户个人资料的图像。在我的应用程序中,我允许用户使用本机裁剪器裁剪图像。但是,当我尝试裁剪大图像时,我的 Logcat 中出现以下错误:
!!! FAILED BINDER TRANSACTION !!!
Exception when starting activity com.example.somename/com.example.somename.Profile
android.os.TransactionTooLargeException
我使用以下代码启动裁剪器:
Intent cropIntent = new Intent("com.android.camera.action.CROP");
cropIntent.setDataAndType(imageFileUri , "image/*");
cropIntent.putExtra("crop", "true");
cropIntent.putExtra("aspectX", 1);
cropIntent.putExtra("aspectY", 1);
cropIntent.putExtra("outputX", 265);
cropIntent.putExtra("outputY", 265);
cropIntent.putExtra("scale", true);
cropIntent.putExtra("return-data", true);
startActivityForResult(cropIntent, PIC_CROP);
然后在我的 onActivityResult 中,以下代码获取裁剪后的图像:
Bundle extras = data.getExtras();
Bitmap selectedBitmap = extras.getParcelable("data");
imgDisplayPic.setImageBitmap(selectedBitmap);
我假设问题出在裁剪器试图将大位图作为可打包发送回我的活动。有没有办法解决?还是另一种获取裁剪图像的方法?
提前感谢您的帮助。