Android 可清除位图
通过 BitmapFactory 创建可清除的 Bitmap 时,其原始二进制数据存储在对象中的某个位置,以防需要重新创建 Bitmap。我如何访问这些数据并将其保存在 SD 卡上?重点是 BitmapFactory 使用 inSampleSize
参数来缩放它,但我需要将其保存为原始大小。此类信息仍然可以通过存储的未解码二进制数据访问。
谢谢
When creating purgeable Bitmap
via BitmapFactory
, its raw binary data is stored somewhere in the object in case the Bitmap
needs to be recreated. How can I access this data and save it on SD card? The point is that BitmapFactory used inSampleSize
param to scale it, but I need to save it in original size. Such information is still accessible via stored undecoded binary data.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,查看 Android 源代码就会发现这是不可能的。
Well, looking through Android source code reveals it's impossible.