使用VB.NET从数据库将二进制转换为图像。我在SQL数据库中将图像存储为二进制格式。如何使用vb.net
将这些值检索到图像bytes = CType(dt.Rows(0)("Data"), Byte())
ImgPrv.ImageUrl = bytes
答案 0 :(得分:0)
我建议将字节转换为Base64字符串并将其应用于图片网址:
bytes = CType(dt.Rows(0)("Data"), Byte())
Dim base64String As String = Convert.ToBase64String(bytes, 0, bytes.Length)
ImgPrv.ImageUrl = "data:image/png;base64," & base64String