Retrieve image of image control as byte array which is set using generichandler(.ashx)?

1.4k Views Asked by At

currently I'm using GenericHandler(.ashx) for displaying an image in image control.

See below code:

[1] .ASPX
    <asp:Image ID="Image1" runat="server" Width="350px" Height="415px" />
[2] .cs(codebehind)
    Image1.ImageUrl = string.Format("GridviewImage.ashx?ItemID={0}", itemID);

Now I need to get image of Image1 as a byte array (byte[]).

Is it possible?

1

There are 1 best solutions below

8
On

If you have several images being streamed to the page, set the IsReusable to true. Use a DataReader for streaming the image back, not a DataSet like the other link.

<img src='ImageHandler.ashx?ProductID=<%# Eval("ProductID")%>' alt="<%# Eval("ProductName") %>" 
    title="<%# Eval("ProductName") %>" />

    public class ImageHandler : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            if (context.Request.QueryString["productID"] != null)
            {
                try
                {
                    string ProductID = context.Request.QueryString["ProductID"];
                    if (Convert.ToInt32(ProductID) > 0)
                    {
#if DEBUG
      const string CONN = "Initial Catalog=db1;Data Source=server1;Integrated Security=SSPI;";
#else
      const string CONN = "server=server2;database=db2;uid=un2;pwd=pw2;";
#endif
                        string selectQuery = "SELECT Photo FROM dbo.Products WHERE dbo.Products.ProductID=" + ProductID.ToString();
                        SqlConnection conn = new SqlConnection(CONN);
                        SqlCommand cmd = new SqlCommand(selectQuery, conn);

                        conn.Open();
                        SqlDataReader dr = cmd.ExecuteReader();

                        dr.Read();
                        context.Response.BinaryWrite((Byte[])dr[0]);
                        dr.Close();
                        conn.Dispose();
                        // context.Response.End(); --> caused an "Abort thread" error - this is correct and is a special exception
                    }
                }
                catch (Exception ex)
                {
                    ErrorReporting.LogError(ex);   
                }
            }
            else
                throw new ArgumentException("No ProductID parameter specified");
        }

        public bool IsReusable
        {
            get
            {
                return true;
            }
        }
    }