C#从数据库显示图像

时间:2013-05-08 16:31:14

标签: c# .net sql-server ashx

我在使用C#在.NET应用程序中显示来自SQL Server数据库的图像时遇到了一些问题。我已经将图像的保存部分工作了,它将图像存储为数据库中的一系列字节,但现在我遇到了试图显示它的问题。这就是我所拥有的:

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 = CodProbs.Main.GetDSN();
        SqlConnection connection = new SqlConnection(conn);
        string sql = "SELECT CoverPhoto FROM Galleries WHERE GalleryID = @GalleryID";
        SqlCommand cmd = new SqlCommand(sql, connection);
        cmd.CommandType = CommandType.Text;
        cmd.Parameters.AddWithValue("@GalleryID", empno);
        connection.Open();
        byte[] img =                                                                   System.Text.Encoding.Unicode.GetBytes(Convert.ToString(cmd.ExecuteScalar()));
    try
    {
        return new MemoryStream((byte[])img);
    }
    catch
    {
        return null;
    }
    finally
    {
        connection.Close();
    }
}

public bool IsReusable
{
    get
    {
        return false;
    }
}

这不会导致任何语法错误,并且似乎应该正常工作。在使用调试器单步执行之后,我可以看到它正在从数据库中获取正确的数据。但是,我收到错误:“图像...无法显示,因为它包含错误。”

关于这个问题的任何想法?

更新存储图片

public static int AddGallery(GalleryDS galleryDS)
        {
            DataRow gallery = galleryDS.Tables[0].Rows[0];
            int result = 0;
            string sql = @"insert into Galleries (Title, Description,     GalleryCategoryID, CreateDate, CreatedBy, CoverPhoto)
                        values (@Title, @Description, @GalleryCategoryID, @CreateDate, @CreatedBy, @CoverPhoto)
                        select scope_identity()";

        using (SqlConnection conn = new SqlConnection(Main.GetDSN()))
        {
            SqlCommand command = new SqlCommand(sql, conn);
            command.Parameters.AddWithValue("@Title", gallery["Title"]);
            command.Parameters.AddWithValue("@Description", gallery["Description"]);
            command.Parameters.AddWithValue("@GalleryCategoryID", 0);
            command.Parameters.AddWithValue("@CreateDate", DateTime.Now);
            command.Parameters.AddWithValue("@CreatedBy", gallery["CreatedBy"]);
            command.Parameters.Add("@CoverPhoto", SqlDbType.VarBinary, Int32.MaxValue);
            command.Parameters["@CoverPhoto"].Value = gallery["CoverPhoto"];
            conn.Open();
            result = Convert.ToInt32(command.ExecuteScalar());
            conn.Close();
        }
        return result;
    }

1 个答案:

答案 0 :(得分:0)

ShowEmpImage方法不应将其转换为流然后写入。那是浪费时间。

将定义更改为:

public Byte[] ShowEmpImage(int empno) {
    string sql = "SELECT CoverPhoto FROM Galleries WHERE GalleryID = @GalleryID";
    Byte[] result = null;

    using (SqlConnection conn = new SqlConnection(CodProbs.Main.GetDSN())) {
        using(SqlCommand cmd = new SqlCommand(sql, conn)) {
            cmd.CommandType = CommandType.Text;
            cmd.Parameters.AddWithValue("@GalleryID", empno);
            conn.Open();
            result = (Byte[])cmd.ExecuteScalar();
        }
    }

    return result;
}

要调用它,请使用以下命令:

    Byte[] empImage = null;
    empImage = ShowEmpImage(empno);
    context.Response.Buffer = true;
    context.Response.Clear();
    context.Response.ContentType = "image/jpeg";
    context.Response.Expires = 0;
    context.Response.AddHeader("Content-Disposition", "attachment;filename=yourimagename.jpg");
    context.Response.AddHeader("Content-Length", empImage.Length.ToString());
    context.Response.BinaryWrite(empImage);

附注:始终使用using子句包装非托管对象。它会在您之后清理并且只是一种良好的做法。特别是对于数据库连接。