将字节数组转换并显示为数据网格中的图像
可能的重复:
如何在数据网格中将转换后的字节数组显示为图像
我已将图像插入到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要继承 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