Android从Intent获取裁剪图像的URI

时间:2016-09-27 18:21:00

标签: java android android-image android-implicit-intent android-crop

我正在尝试从Android相机中捕获图像/从图库中选择图像,然后在对其执行其他操作之前将其裁剪。我在找回裁剪图像的URI方面遇到了麻烦。任何关于如何在裁剪图像后取回图像的URI的帮助将非常感激!

以下代码适用于我的onActivityResult和执行裁剪的功能

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (resultCode == Activity.RESULT_OK) {
        if (requestCode == SELECT_FILE || requestCode == REQUEST_IMAGE_CAPTURE) {
            if(!IS_CAMERA_USED) {
                selectedImageUri = data.getData();
            }
            performCrop();
        }
        else if(requestCode == CROP_IMAGE){
            selectedImageUri = data.getData();
            onSelectedImageResult();
        }
    }
}



    public void performCrop() {
    // take care of exceptions
    Display display = getWindowManager().getDefaultDisplay();
    try {
        // call the standard crop action intent (the user device may not
        // support it)
        Intent cropIntent = new Intent("com.android.camera.action.CROP");
        // indicate image type and Uri
        cropIntent.setDataAndType(selectedImageUri, "image/*");
        // set crop properties
        cropIntent.putExtra("crop", "true");
        // indicate aspect of desired crop
        cropIntent.putExtra("aspectY", 1);
        if(IS_PROFILE_PICTURE) {
            cropIntent.putExtra("aspectX", 1);
        }
        else {
            cropIntent.putExtra("aspectX", 2);
        }
        // indicate output X and Y
        cropIntent.putExtra("outputX", display.getWidth());
        cropIntent.putExtra("outputY", display.getHeight());
        // retrieve data on return
        cropIntent.putExtra("return-data", true);
        // start the activity - we handle returning in onActivityResult
        startActivityForResult(cropIntent, CROP_IMAGE);
    }
    // respond to users whose devices do not support the crop action
    catch (ActivityNotFoundException anfe) {
        Toast toast = Toast
                .makeText(this, "This device doesn't support the crop action!", Toast.LENGTH_SHORT);
        toast.show();
    }
}

问题在于行selectedImageUri = data.getData(),其中data.getData()在完成裁剪后返回null。如何取回裁剪图像的URI?我不想获得data.getExtras.getParcelable("data"),因为它会返回缩略图并破坏图像分辨率。

提前致谢!

3 个答案:

答案 0 :(得分:0)

您可以使用以下代码获取图像位图:

if (requestCode == CROP_IMAGE) {
    if (data != null) {
        Bundle extras = data.getExtras();
        if (extras != null) {
            Bitmap selectedBitmap = extras.getParcelable("data");

            //imgView.setImageBitmap(selectedBitmap);
        }
    }
}
我认为

URI是不可能的,因为裁剪的图像不会保存在存储中。

答案 1 :(得分:0)

感谢您的所有答案,但我发现更简单的合并和使用可以避免由于`com.android.camera.action.CROP'类而导致的所有麻烦,并且可以找到它here < / p>

答案 2 :(得分:0)

我认为您应该将裁剪后的位图保存到存储中,然后使用裁剪后的位图的URI对其执行某些操作! 我知道这不是专业工作,但至少应该做