我想固定图像裁剪的缩放比例。如何做到这一点?我发现了很多并尝试了很多,但仍无法找到正确的解决方案。裁剪的图像缩放过多并变得模糊。请有人帮我我的问题。我的代码是。

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

最佳答案

这样尝试

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


检查此link

09-25 18:56