固定/不可调整大小的裁剪窗口

时间:2018-08-05 19:51:45

标签: java android android-studio

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");
        cropIntent.putExtra("scale", false);
        cropIntent.putExtra("scaleUpIfNeeded", false);
        //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);
        //retrieve data on return
        cropIntent.putExtra("return-data", true);

我的搜索没有任何结果。请原谅我是否有重复的地方。

enter image description here

我希望不调整裁剪窗口的大小。刚刚修复。

0 个答案:

没有答案