来自二进制数据图像的 Gridview 图像库

发布于 2024-08-07 16:52:30 字数 174 浏览 3 评论 0原文

我有一些图像存储在 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 技术交流群。

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

发布评论

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

评论(1

﹂绝世的画 2024-08-14 16:52:30

我会尝试一种稍微不同的方法。

使用 HTTPHandler 检索图像并将图像 src 绑定到处理程序

在 gridview 中嵌入类似的内容:

<img src="http://www.yoursite.com/imageHandler.ashx?id=4" />

有关如何编写处理程序,请参阅此 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:

<img src="http://www.yoursite.com/imageHandler.ashx?id=4" />

See this StackOverflow answer for how to write the handler:
Create PNG image with C# HttpHandler webservice

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