要流式传输的 Monodroid 位图

发布于 2024-11-02 09:13:48 字数 94 浏览 1 评论 0原文

有谁知道如何在 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 技术交流群。

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

发布评论

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

评论(2

南烟 2024-11-09 09:13:48

If you're talking about Android.Graphics.Bitmap, you could use Bitmap.Compress(CompressFormat, Stream) to write the Bitmap contents to a Stream.

缘字诀 2024-11-09 09:13:48

这就是 JonP 所指的内容。当然,您可以选择您想要的任何格式。

using (MemoryStream stream = new MemoryStream())
{
    if (bmp.Compress(Bitmap.CompressFormat.Jpeg, 80, stream))
    {
        //do whatever needed with stream
    }
}

This is what JonP was referring to. Of course you can select whatever format you'd like.

using (MemoryStream stream = new MemoryStream())
{
    if (bmp.Compress(Bitmap.CompressFormat.Jpeg, 80, stream))
    {
        //do whatever needed with stream
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文