从内存中加载 Picturebox 图像?

发布于 2024-08-26 20:27:00 字数 58 浏览 6 评论 0原文

我似乎不知道如何从内存中的位图加载 pictureBox 图像。是否可能或者我必须为位图创建临时文件?

I can't seem to figure out how to load a pictureBox image from a bitmap in memory. Is it possible or do I have to create temp file for the bitmap?

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

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

发布评论

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

评论(3

蒗幽 2024-09-02 20:27:00

内存中的图像是什么格式?

如果您有一个实际的 Bitmap 对象,只需将其分配给 PictureBox,如 dtb 所建议的:

pictureBox.Image = bitmap;

如果您将图像作为一系列字节保存在流中,则需要从流中加载图像:

var image = Image.FromStream(stream);
pictureBox.Image = image;

如果您改为有一个位图的 Windows GDI 句柄,使用

var image = Image.FromHbitmap(handle);
pictureBox.Image = image;

本质上,当您没有告诉我们您的位图采用什么格式时,很难用更多的建议来回答您的问题。

What format is the image in memory?

If you have an actual Bitmap object, just assign it to the PictureBox, as suggested by dtb:

pictureBox.Image = bitmap;

If you have the image as a series of bytes held in a stream, you'll need to load the image from the stream:

var image = Image.FromStream(stream);
pictureBox.Image = image;

If you instead have a windows GDI handle to the bitmap, use

var image = Image.FromHbitmap(handle);
pictureBox.Image = image;

Essentially, it's hard to answer your question with more than suggestions when you haven't told us what format the Bitmap you have is held in.

痴情 2024-09-02 20:27:00

您可以从 MemoryStream 创建位图:

pictureBox.Image = new Bitmap(new MemoryStream(byteArray));

You can create a Bitmap from a MemoryStream:

pictureBox.Image = new Bitmap(new MemoryStream(byteArray));
相对绾红妆 2024-09-02 20:27:00
pictureBox.Image = bitmap;
pictureBox.Image = bitmap;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文