我目前正在制作一个应用程序,要求用户从他们的图库中将照片上传到应用程序。
我已经看过很多解决方案,包括我自己的解决方案。但是,我无法弄清楚为什么ImageView,最终的Bitmap模糊了&边缘是锯齿状的。
例如,我目前正在使用此SO帖子(标记答案):Quality problems when resizing an image at runtime 与...合作。
我正在测试的照片是在我的LG G3上拍摄的,所以质量非常好......如果有帮助的话。
答案 0 :(得分:0)
BitmapFactory.Options op = new BitmapFactory.Options();
op.inScaled = false;
Bitmap a = BitmapFactory.decodeFile(imgPath.getAbsolutePath(), op);