我想修改缩放尺寸以进行图像裁剪。如何做到这一点?我发现了很多并尝试了很多,但仍然无法得到正确的解决方案。裁剪图像太多放大并变得blurre.Please某人帮我解决这个问题。我的代码是。
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);
答案 0 :(得分: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
检查此link