在 Android 上以 RGB888 形式读取 JPG

发布于 2024-10-15 07:48:12 字数 81 浏览 2 评论 0原文

我正在尝试使用 BitmapFactory 读取 .jpg。我想要得到 RGB888 格式的位图,但我似乎一直得到 RGB565。有办法改变这个吗?

I'm trying to read in a .jpg using BitmapFactory. I want to get a RGB888 formatted bitmap, but I keep seeming to get RGB565. Is there anyway to change this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

有深☉意 2024-10-22 07:48:12

BitmapFactory 方法允许您传递 BitmapFactory.Options 实例。可以使用BitmapFactory.Options来指定inPreferredConfig,它定义了解码后返回的Bitmap的格式,只需将其设置为Bitmap.Config.ARGB_8888即可。

BitmapFactory methods let you pass a BitmapFactory.Options instance. You can use BitmapFactory.Options to specifcy the inPreferredConfig, which defines the format of the Bitmap returned after decoding, just set it to Bitmap.Config.ARGB_8888.

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