1

我想修复图像裁剪的放大尺寸。如何做到这一点?我找到了很多并尝试了很多,但仍然无法获得正确的解决方案。裁剪的图像放大太多并且变得模糊。请有人帮助我我的这个问题。我的代码是。

intent.putExtra("crop", "true");
        intent.putExtra("outputX", 300);
        intent.putExtra("outputY", 300);
        intent.putExtra("aspectX", 1);
        intent.putExtra("aspectY", 1);
        intent.putExtra("scale", false);
        intent.putExtra("return-data", true);
4

1 回答 1

0

像这样试试

intent.putExtra("outputX", 200); //Set this to define the max size of the output bitmap
intent.putExtra("outputY", 200); //Set this to define the max size of the output bitmap
intent.putExtra("aspectX", 1); //Set this to define the X aspect ratio of the shape
intent.putExtra("aspectY", 1); //Set this to define the Y aspect ratio of the shape

检查这个链接

于 2013-01-21T11:39:35.017 回答