捕获的图像在android中裁剪后变得模糊

时间:2014-11-01 06:34:31

标签: android

当从相机捕捉图像时,它看起来很清晰,但在裁剪图像后,其质量下降,看起来模糊。这是我的代码裁剪图像。请帮我解决这个问题。

        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);

0 个答案:

没有答案