允许用户裁剪图像而无需在Android应用程序中调整大小

时间:2013-09-23 14:13:12

标签: android android-intent crop

我有这个用于裁剪图像的代码:

Intent cropIntent = new Intent("com.android.camera.action.CROP");
    //indicate image type and Uri
cropIntent.setDataAndType(picUri, "image/*");
    //set crop properties
cropIntent.putExtra("crop", "true");
    //indicate aspect of desired crop
cropIntent.putExtra("aspectX", 1);
cropIntent.putExtra("aspectY", 1);
    //indicate output X and Y
cropIntent.putExtra("outputX", 256);
cropIntent.putExtra("outputY", 256);

    //start the activity - we handle returning in onActivityResult
startActivityForResult(cropIntent, PIC_CROP);

但我不想让用户改变裁剪器的大小。我希望用户只在图像上移动裁剪器矩形并裁剪图像的预定义大小(宽度x高度)。

0 个答案:

没有答案