我正在尝试裁剪从
android中的库中选择的图像,如下所示.
Intent intent = new Intent("com.android.camera.action.CROP"); intent.setDataAndType(photoUri,"image/*"); intent.putExtra("outputX",400); intent.putExtra("outputY",300); intent.putExtra("aspectX",4); intent.putExtra("aspectY",3); intent.putExtra("scale",true); intent.putExtra("return-data",true); startActivityForResult(intent,RESULT_CROP);
当我尝试将outputX和outputY设置为800,600时,它不起作用.上面的代码工作正常,但裁剪的图像看起来很模糊.任何人都可以建议如何裁剪图像,而不是太模糊.
谢谢.
解决方法
您应该使用其中一个可用的库.例如:
https://github.com/jdamcd/android-crop
https://github.com/jdamcd/android-crop