从 asp.net 中的数据库中检索图像
Posted
技术标签:
【中文标题】从 asp.net 中的数据库中检索图像【英文标题】:Retrieve image from database in asp.net 【发布时间】:2013-02-02 19:39:13 【问题描述】:如何使用 c# 从 asp.net 中的 sql 数据库中检索图像。
我想从数据库中检索图像文件,然后在标签中显示图像。
我尝试了这段代码,但它不起作用
aspx
<asp:Image ID="Image1" runat="server" ImageUrl="" Height="150px" Width="165px" />
后面的代码
Byte[] bytes = (Byte[])ds.Tables[0].Rows[0]["image"];
Response.Buffer = true;
Response.Charset = "";
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.ContentType = "image/jpg";
Response.BinaryWrite(bytes);
Response.Flush();
Response.End();
如何给出这张图片的ImageUrl=""
的链接???
【问题讨论】:
定义not working
,你遇到了什么错误?
哦,MIME 是 image/jpeg
不是 image/jpg
。
这是页面还是通用处理程序 (ashx)?
你还需要 Response.Clear()
@AhmadAbbasi 这是一个文件名而不是一个 URI。但是,如果您通过寻址 http://domain/Student.aspx
返回图像,那么您的 ImageUrl 将是:http://domain/Student.aspx
。
【参考方案1】:
如下创建generic http handler
using System;
using System.Configuration;
using System.Web;
using System.IO;
using System.Data;
using System.Data.SqlClient;
public class ShowImage : IHttpHandler
public void ProcessRequest(HttpContext context)
Int32 empno;
if (context.Request.QueryString["id"] != null)
empno = Convert.ToInt32(context.Request.QueryString["id"]);
else
throw new ArgumentException("No parameter specified");
context.Response.ContentType = "image/jpeg";
Stream strm = ShowEmpImage(empno);
byte[] buffer = new byte[4096];
int byteSeq = strm.Read(buffer, 0, 4096);
while (byteSeq > 0)
context.Response.OutputStream.Write(buffer, 0, byteSeq);
byteSeq = strm.Read(buffer, 0, 4096);
//context.Response.BinaryWrite(buffer);
public Stream ShowEmpImage(int empno)
string conn = ConfigurationManager.ConnectionStrings["EmployeeConnString"].ConnectionString;
SqlConnection connection = new SqlConnection(conn);
string sql = "SELECT empimg FROM EmpDetails WHERE empid = @ID";
SqlCommand cmd = new SqlCommand(sql,connection);
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("@ID", empno);
connection.Open();
object img = cmd.ExecuteScalar();
try
return new MemoryStream((byte[])img);
catch
return null;
finally
connection.Close();
public bool IsReusable
get
return false;
并显示如下图片
Image1.ImageUrl = "~/ShowImage.ashx?id=" + id;
下面有一些链接Showing image in GridView from the database?How to show a image in database in the image control of Asp.net?Display image from database in ASP.net with C#http://www.dotnetcurry.com/ShowArticle.aspx?ID=129
【讨论】:
我很想知道您对是否将 IsReusable 设置为 true 或 false 以及为什么的意见?【参考方案2】:我认为这不是正确的方法。 您不应该将图像嵌入到 html 中,这无论如何都不是正确的方法。
我建议添加一个 ashx(通用处理程序)并使用它从查询字符串生成图像,然后 ini 页面使用类似的东西
<asp:Image ImageUrl='GetImage.ashx?id=12345' ... />
【讨论】:
【参考方案3】:With SQL (Code Project)
<asp:Image ID="ImgProfilePic" runat="server" />
byte[] imagem = (byte[])(dr["IMG"]);
string PROFILE_PIC = Convert.ToBase64String(imagem);
ImgProfilePic.ImageUrl = String.Format("data:image/jpg;base64,0", PROFILE_PIC);
【讨论】:
以上是关于从 asp.net 中的数据库中检索图像的主要内容,如果未能解决你的问题,请参考以下文章
从 ASP.NET 中的 SQL 数据库中检索 HTML 代码
如何使用 C# 从 ASP.NET 中的 SQL Server 数据库中检索和显示 GridView 中的值
从返回多个实际表的复杂存储过程中检索 asp.net MVC 中的数据