capture image from camera and crop not working

风流意气都作罢 提交于 2019-12-12 06:57:21

问题


here is my camera intent.

            File file = getExternalFilesDir(Environment.DIRECTORY_DCIM);
            file.mkdirs();
            File output = new File(file, "profile_image");
            if (output.exists()) {
                output.delete();
            }
            Intent captureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

            captureIntent.putExtra(MediaStore.EXTRA_OUTPUT, output);
            startActivityForResult(captureIntent, PublicValues.IMAGE_FROM_CAMERA);

in onActivityresult

if (requestCode == PublicValues.IMAGE_FROM_CAMERA) { 

                if (mPhotoUri != null) {
                    performCrop(mPhotoUri);
                } else {
                    pictureUri = data.getData();
                    performCrop(pictureUri);
                }

and crop intent

            Intent cropIntent = new Intent("com.android.camera.action.CROP");
            cropIntent.setDataAndType(picUri, "image/*");
            cropIntent.putExtra("crop", "true"); // set crop properties
            cropIntent.putExtra("aspectX", 1);  // indicate aspect of desired crop(ratio)
            cropIntent.putExtra("aspectY", 1);
            cropIntent.putExtra("return-data", true); // retrieve data on return
            cropIntent.putExtra("outputX", profileImage.getWidth());   // indicate output X and Y
            cropIntent.putExtra("outputY", profileImage.getHeight());

            startActivityForResult(cropIntent, PublicValues.IMAGE_CROP);

it works fine with API 19 device but crashes in Marshmallow device.

crash report is like this:-

Caused by android.os.FileUriExposedException: file:///storage/emulated/0/WhatsApp/Media/WhatsApp Images/IMG-20170721-WA0014.jpg exposed beyond app through Intent.getData()
android.os.StrictMode.onFileUriExposed (StrictMode.java:1813)
android.net.Uri.checkFileUriExposed (Uri.java:2360)
android.content.Intent.prepareToLeaveProcess (Intent.java:8981)
android.content.Intent.prepareToLeaveProcess (Intent.java:8942)
android.app.Instrumentation.execStartActivity (Instrumentation.java:1583)
android.app.Activity.startActivityForResult (Activity.java:4228)
android.support.v4.app.BaseFragmentActivityJB.startActivityForResult (BaseFragmentActivityJB.java:50)
android.support.v4.app.FragmentActivity.startActivityForResult (FragmentActivity.java:79)

回答1:


use Gradle :

compile 'com.theartofdev.edmodo:android-image-cropper:2.3.+'

and try this:

private void performCrop(Uri imageUri) {
    CropImage.activity(imageUri)
            .setGuidelines(CropImageView.Guidelines.ON)
            .setCropShape(CropImageView.CropShape.RECTANGLE)
            .setAspectRatio(1, 1)
            .setMultiTouchEnabled(true)
            .start(this);
}


来源:https://stackoverflow.com/questions/45279179/capture-image-from-camera-and-crop-not-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!