要流式传输的 Monodroid 位图
有谁知道如何在 monodroid 上将位图转换为流吗?我正在从 url 流创建一个位图,然后调整该位图的大小,以便我可以将其存储在文件中以供以后使用。
谢谢
does any one know how to turn a bitmap into a stream on monodroid? I'm creating a bitmap from a url stream then resizing that bitmap so I can store it on a file for later use.
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在谈论 Android.Graphics.Bitmap,您可以使用 Bitmap.compress(CompressFormat, Stream) 将
Bitmap
内容写入 流。If you're talking about Android.Graphics.Bitmap, you could use Bitmap.Compress(CompressFormat, Stream) to write the
Bitmap
contents to a Stream.这就是 JonP 所指的内容。当然,您可以选择您想要的任何格式。
This is what JonP was referring to. Of course you can select whatever format you'd like.