当图像位于可绘制文件夹中时如何提高图像质量
在我尝试此操作之前,将图像存储在 R.drawable 文件夹中..
Bitmap b = BitmapFactory.decodeResource(getResources(), R.drawable.image1);
然后使用 insert sql 语句存储在数据库中。图像好多了。
现在我已将数据存储在字符串数组中,所有图像存储在 R.drawable 文件夹中,并使用在图像视图中显示它们 imageview.setImageResource(图像[i]); 但图像非常小,无法正常显示。我可以做些什么来提高图像质量?
谢谢..
Before I tried this , Store image in R.drawable folder ..
Bitmap b = BitmapFactory.decodeResource(getResources(), R.drawable.image1);
and then in database using insert sql statement. Image was much better.
Now I have stored data in string array, all images in R.drawable folder and displaying them in image view using
imageview.setImageResource(image[i]);
But image is very small and not visible properly. what can I do improve the image quality?
thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最终图像大小还取决于您存储图像的文件夹:drawable-hdpi、drawable-mdpi、drawable-ldpi。当您将图像放入 hdpi 文件夹时,它们的外观比 mdpi 和 ldpi 中的要小。尝试阅读此文档:屏幕支持
另一个增强功能可以通过声明 24 位颜色来实现支持,因此具有 Alpha 通道的图像将具有平滑的渐变:
activity.getWindow().setFormat(PixelFormat.RGBA_8888);
但它需要更多的性能来处理。The final image size depends also, in which folder you store images: drawable-hdpi, drawable-mdpi, drawable-ldpi. When you put images into hdpi folder, their appearance is smaller than from mdpi and ldpi. Try to read this documentation: Screen Support
Another enhancement can be achieved by declaring 24bit color support, so images with alpha channel will have smooth gradients:
activity.getWindow().setFormat(PixelFormat.RGBA_8888);
but it requires more performance to process.