当从相机捕捉图像时,它看起来很清晰,但在裁剪图像后,其质量下降,看起来模糊。这是我的代码裁剪图像。请帮我解决这个问题。
Intent cropIntent = new Intent("com.android.camera.action.CROP");
imageUri = Uri.fromFile(new File(fileName));
cropIntent.setDataAndType(imageUri, "image/*");
cropIntent.putExtra("crop", "true");
cropIntent.putExtra("aspectX", 1);
cropIntent.putExtra("aspectY", 1);
cropIntent.putExtra("outputX", 300);// 256
cropIntent.putExtra("outputY", 300);
cropIntent.putExtra("return-data", true);
startActivityForResult(cropIntent, 6);