来自Gallery的位图模糊不清

时间:2015-07-22 19:46:00

标签: android image bitmap byte

我目前正在制作一个应用程序,要求用户从他们的图库中将照片上传到应用程序。

我已经看过很多解决方案,包括我自己的解决方案。但是,我无法弄清楚为什么ImageView,最终的Bitmap模糊了&边缘是锯齿状的。

例如,我目前正在使用此SO帖子(标记答案):Quality problems when resizing an image at runtime 与...合作。

我正在测试的照片是在我的LG G3上拍摄的,所以质量非常好......如果有帮助的话。

1 个答案:

答案 0 :(得分:0)

几个月前,我有同样的问题。可能这是你aro寻找的答案。试一试:

BitmapFactory.Options op = new BitmapFactory.Options();
op.inScaled = false;
Bitmap a = BitmapFactory.decodeFile(imgPath.getAbsolutePath(), op);