如何在 Android 上缩小图像以获得更好的质量?
现在我使用以下代码来缩小运行时从互联网下载的图像。但结果还不够好。
Bitmap.createScaledBitmap(srcBitmap, dstWidth, dstHeight, true);
有什么帮助吗?谢谢。
Now I'm using the follow code to scale down the image downloaded from internet at runtime. But the result is not good enough.
Bitmap.createScaledBitmap(srcBitmap, dstWidth, dstHeight, true);
Any help? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果结果对您来说不够好,请尝试将图像大小除以 2,直到达到您想要的大小。
If the result is not good enough for you, try dividing the size of the image by 2 until you reach the size you want.