当图像位于可绘制文件夹中时如何提高图像质量

发布于 2024-12-03 10:55:33 字数 339 浏览 0 评论 0原文

在我尝试此操作之前,将图像存储在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情归归情 2024-12-10 10:55:33

最终图像大小还取决于您存储图像的文件夹: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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文