来自二进制数据图像的 Gridview 图像库
我有一些图像存储在 varbinary 字段中。我想将它们放入 List 对象中,例如 List list
从这里我可以访问每个图像字节数组,例如 image.ImageData。
我需要以某种方式将它们作为缩略图绑定到 asp:gridview 或类似的东西,是否可以使用二进制/byte[] 图像?
I have some images stored in varbinary fields. I want get them into a List object e.g List list
From here I can access each image byte array, e.g image.ImageData.
I need to bind them somehow as thumbnails to asp:gridview or something similar, is it possible with binary/byte[] images?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会尝试一种稍微不同的方法。
使用 HTTPHandler 检索图像并将图像 src 绑定到处理程序
在 gridview 中嵌入类似的内容:
有关如何编写处理程序,请参阅此 StackOverflow 答案:
使用 C# HttpHandler Web 服务创建 PNG 图像
I would try a slightly different approach.
Use an HTTPHandler to retrieve the images and bind the image src to the handler
Embed something like this in your gridview:
See this StackOverflow answer for how to write the handler:
Create PNG image with C# HttpHandler webservice