Dynamically Rendering asp:Image from BLOB entry in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T20:52:39Zhttp://stackoverflow.com/feeds/question/21877http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/21877/dynamically-rendering-aspimage-from-blob-entry-in-asp-net2Dynamically Rendering asp:Image from BLOB entry in ASP.NETNikos Steiakakis2008-08-22T06:14:06Z2008-08-22T06:37:13Z
<p>What I want to achieve is this. I want to give the user the ability to upload an image file, store the image in BLOB in SQL Server, and then use this image as a logo in other pages of the site. </p>
<p>I have done this by using </p>
<pre><code> Response.Clear();
Response.ContentType = "image/pjpeg";
Response.BinaryWrite(imageConents);
Response.End();
</code></pre>
<p>but to do this, I use a User control in the place where I want to show the image. I want to do it if possible using an asp:Image control, or even a pure old html image control. Is this possible?</p>
<p>Thank you all</p>
http://stackoverflow.com/questions/21877/dynamically-rendering-aspimage-from-blob-entry-in-asp-net/21883#218830Answer by Brad Wilson for Dynamically Rendering asp:Image from BLOB entry in ASP.NETBrad Wilson2008-08-22T06:22:01Z2008-08-22T06:22:01Z<p>We actually just released some classes that help with exactly this kind of thing:</p>
<p><a href="http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=16449" rel="nofollow"><a href="http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=16449" rel="nofollow">http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=16449</a></a></p>
<p>Specifically, check out the DatabaseImage sample.</p>
http://stackoverflow.com/questions/21877/dynamically-rendering-aspimage-from-blob-entry-in-asp-net/21885#218854Answer by FlySwat for Dynamically Rendering asp:Image from BLOB entry in ASP.NETFlySwat2008-08-22T06:24:46Z2008-08-22T06:30:10Z<p>You can BASE64 encode the content of the image directly into the SRC attribute, however, I believe only Firefox will parse this back into an image.</p>
<p>What I typically do is a create a very lightweight HTTPHandler to serve the images:</p>
<pre><code>using System;
using System.Web;
namespace Example
{
public class GetImage : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
if (context.Request.QueryString("id") != null)
{
Blob = GetBlobFromDataBase(id);
context.Response.Clear();
context.Response.ContentType = "image/pjpeg";
context.Response.BinaryWrite(Blob);
context.Response.End();
}
}
public bool IsReusable
{
get
{
return false;
}
}
}
}
</code></pre>
<p>You can reference this directly in your img tag:</p>
<pre><code><img src="GetImage.ashx?id=111"/>
</code></pre>
<p>Or, you could even create a server control that does it for you:</p>
<pre><code>using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Example.WebControl
{
[ToolboxData("<{0}:DatabaseImage runat=server></{0}:DatabaseImage>")]
public class DatabaseImage : Control
{
public int DatabaseId
{
get
{
if (ViewState["DatabaseId" + this.ID] == null)
return 0;
else
return ViewState["DataBaseId"];
}
set
{
ViewState["DatabaseId" + this.ID] = value;
}
}
protected override void RenderContents(HtmlTextWriter output)
{
output.Write("<img src='getImage.ashx?id=" + this.DatabaseId + "'/>");
base.RenderContents(output);
}
}
}
</code></pre>
<p>This could be used like</p>
<pre><code><cc:DatabaseImage id="db1" DatabaseId="123" runat="server/>
</code></pre>
<p>And of course, you could set the databaseId in the codebehind as needed.</p>
http://stackoverflow.com/questions/21877/dynamically-rendering-aspimage-from-blob-entry-in-asp-net/21887#218875Answer by Fredrik Kalseth for Dynamically Rendering asp:Image from BLOB entry in ASP.NETFredrik Kalseth2008-08-22T06:25:31Z2008-08-22T06:25:31Z<p>Add a 'Generic Handler' to your web project, name it something like Image.ashx. Implement it like this:</p>
<pre><code>public class ImageHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
using(Image image = GetImage(context.Request.QueryString["ID"]))
{
context.Response.ContentType = "image/jpeg";
image.Save(context.Response.OutputStream, ImageFormat.Jpeg);
}
}
public bool IsReusable
{
get
{
return true;
}
}
}
</code></pre>
<p>Now just implement the GetImage method to load the image with the given ID, and you can use</p>
<pre><code><asp:Image runat="server" ImageUrl="~/Image.ashx?ID=myImageId" />
</code></pre>
<p>to display it. You might want to think about implementing some form of caching in the handler too. And remember if you want to change the image format to PNG, you need to use an intermediate MemoryStream (because PNGs require a seekable stream to be saved).</p>
http://stackoverflow.com/questions/21877/dynamically-rendering-aspimage-from-blob-entry-in-asp-net/21889#218890Answer by Ryan Farley for Dynamically Rendering asp:Image from BLOB entry in ASP.NETRyan Farley2008-08-22T06:26:21Z2008-08-22T06:26:21Z<p>Add the code to a handler to return the image bytes with the appropriate mime-type. Then you can just add the url to your handler like it is an image. For example: </p>
<pre><code><img src="myhandler.ashx?imageid=5">
</code></pre>
<p>Make sense?</p>
http://stackoverflow.com/questions/21877/dynamically-rendering-aspimage-from-blob-entry-in-asp-net/21895#218950Answer by Nikos Steiakakis for Dynamically Rendering asp:Image from BLOB entry in ASP.NETNikos Steiakakis2008-08-22T06:37:13Z2008-08-22T06:37:13Z<p>Thank you all guys!! Great answers indeed!!! I'm just trying them out now on my project...</p>