web-dev-qa-db-ja.com

asp.netのデータベースから画像を取得します

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=""へのリンクを与える方法???

8
Ahmad Abbasi

次のように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;

以下にいくつかのリンクがあります
データベースからGridViewに画像を表示していますか?
Asp.netのイメージコントロールのデータベースにイメージを表示する方法は?
ASP.netのデータベースからの画像をC#で表示
http://www.dotnetcurry.com/ShowArticle.aspx?ID=129

15
शेखर

これは正しいアプローチではないと思います。画像をhtmlに埋め込んではいけません。とにかくこれは正しい方法ではありません。

Ashx(ジェネリックハンドラー)を追加し、それを使用してクエリ文字列から画像を生成し、ページで次のようなものを使用することをお勧めします

<asp:Image ImageUrl='GetImage.ashx?id=12345' ... />
3
Stefano Altieri