将字节数组转换并显示为数据网格中的图像

发布于 2024-11-09 06:11:24 字数 479 浏览 0 评论 0原文

可能的重复:
如何在数据网格中将转换后的字节数组显示为图像

我已将图像插入到 SQL 数据库中。我想在数据网格中显示这些图像。目前在我的数据网格中,我只有一个图像列,该列中的每个单元格都只是表示 Byte[]Array。所以我需要将这些字节数组转换回图像,然后在数据网格中显示这些图像。对于如何做到这一点,我一片空白。任何帮助表示赞赏。谢谢

Possible Duplicate:
how to display converted byte array as image in datagrid

I have inserted images into a sql database. I want to display these images in a datagrid. Currently in my datagrid, I just have a image column and each cell in that column just says Byte[]Array. So i need to convert these byte arrays back to an image and then display these images in the datagrid. I am drawing a blank as to how to do this. any help is appreciated. Thanks

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

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

发布评论

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

评论(1

所有深爱都是秘密 2024-11-16 06:11:24

您可能需要继承 DataGridViewCell 并创建自己的,可以将字节数组转换为位图并在其自身上绘制。

http://msdn.microsoft.com/en-us /library/system.windows.forms.datagridviewcell.aspx

然后通过这里的示例,您将了解如何在数据网格上使用它。

http://msdn.microsoft.com/en-us /library/system.windows.forms.datagridviewcolumn.aspx

You will probably need to inherit from DataGridViewCell and create you own that can convert the byte array to a Bitmap and draw it on herself.

http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcell.aspx

Then with this sample here you'll learn how to use it on your datagrid.

http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcolumn.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文