在 Android 上以 RGB888 形式读取 JPG
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.