473,395 Members | 2,446 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

displaying images on a website from binary

I have several images i want to display in an ASP.Net application. The
images are being passed to me in binary format from another application. Is
there a good way to write them directly to an HMTL page without having to
save them to the server and create a URL to the virtual directory?

FYI: I currently am doing this with just single images. I do a
Response.BinaryWrite(byte) to display the one image. The advantage is that I
never have to worry about deleting the images at some later time.
Unfortunatly, this method does not lend itself to multiple images.
Jan 27 '06 #1
3 2318
simple example

1. My example Database stucture is as follows:
[FileId] UNIQUEIDENTIFIER PRIMARY CLUSTERED KEY
[Data] IMAGE NOT NULL

2. ViewImage.aspx.cs code
-- BEGIN CODE --
using System;
using System.Data;
using System.Data.SqlClient;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class ViewImage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Guid id;

try
{
id = new Guid(Request.QueryString["id"]);
}
catch
{
// display a default image or message
// saying id is invalid
return;
}

this.AttachImageContent(id);

}

/// <summary>
///
/// </summary>
/// <param name="id"></param>
private void AttachImageContent(Guid id)
{
byte[] content = this.GetImageContent(id);

Response.ClearContent();
Response.ContentType = "image/jpg"; // get it from database
Response.OutputStream.Write(content, 0, content.Length);
Response.End();
}

private const string ConnectionString =
"server=(local);uid=;password=;" +
"database=BlobDatabase;pooling=true;max pool size=1;min pool size=1;";

/// <summary>
///
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
private byte[] GetImageContent(Guid id)
{
// should be a stored procedure
string query = "SELECT [Data] FROM [File] WHERE [FileId] = @FileId";

SqlConnection connection = new SqlConnection(ConnectionString);
SqlCommand command = new SqlCommand(query, connection);
SqlParameter parameter = new SqlParameter("@FileId",
SqlDbType.UniqueIdentifier);

parameter.Direction = ParameterDirection.Input;
parameter.Value = id;

command.CommandTimeout = 120;
command.CommandType = CommandType.Text;
command.Parameters.Add(parameter);

try
{
connection.Open();
return (byte[]) command.ExecuteScalar();
}
catch (Exception ex)
{
throw ex;
}
finally
{
if (connection.State != ConnectionState.Closed)
connection.Close();
}

}
}

-- END CODE --

3. Aspx Page html code

-- BEGIN CODE --
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<style type="text/css">
</style>
</head>
<body>
<form id="form1" runat="server">
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns=False>
<Columns>
<asp:TemplateField>
<ItemTemplate>
<img
src='ViewImage.aspx?id=<%#DataBinder.Eval(Containe r.DataItem, "FileId")%>'/>
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="FirstName"/>
</Columns>
</asp:GridView>
</form>
</body>
</html>
-- END CODE --

4. Apsx behind c# code

-- BEGIN CODE --

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
GridView1.DataSource = GetDataSource();
GridView1.DataBind();
}

private DataTable GetDataSource()
{
DataTable table = new DataTable();

table.Columns.Add("FileId", typeof(string));
table.Columns.Add("FirstName", typeof(string));

DataRow row = table.NewRow();

row[0] = "e8302aa9-e82c-4d20-b3ae-79f8c5009dfb";
row[1] = "George W Bush";

table.Rows.Add(row);

return table;

}

}

-- END CODE --

Hope this helps

--
Milosz Skalecki
MCP, MCAD
"CLEAR-RCIC" wrote:
I have several images i want to display in an ASP.Net application. The
images are being passed to me in binary format from another application. Is
there a good way to write them directly to an HMTL page without having to
save them to the server and create a URL to the virtual directory?

FYI: I currently am doing this with just single images. I do a
Response.BinaryWrite(byte) to display the one image. The advantage is that I
never have to worry about deleting the images at some later time.
Unfortunatly, this method does not lend itself to multiple images.

Jan 27 '06 #2
If I understand you correctly, you already know how to send the image to the
client.

It sounds like you want to put them into a page, whether it is an HTML page
or an ASP.Net (HTML) page, on the client.

Forgive me if I tell you anything you already know. An HTML document is
text. It contains no binary data. It can contain multiple image elements
which contain a reference to a URL where the image file is located.

Now, as you've already successfully streamed an image to a browser, I'll
assume you know about setting the Response.ContentType, and so on. The only
thing left to do is to take the page you have created to do this, and adapt
it to serve multiple images. This can most easily be done using a
QueryString. The image tag in the HTML document might look like the
following:

<img src="imagePage.aspx?id=1234">

The image page then reads the Request.QueryString to determine the image to
send. It then sends the image just as you have already done. In other words,
the ASPX page is treated as if it were the image.

You should be able to see how you can have multiple references to the same
ASPX page using different QueryStrings in the same HTML document.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Who is Mighty Abbott?
A twin turret scalawag.

"CLEAR-RCIC" <CL*******@discussions.microsoft.com> wrote in message
news:48**********************************@microsof t.com...
I have several images i want to display in an ASP.Net application. The
images are being passed to me in binary format from another application.
Is
there a good way to write them directly to an HMTL page without having to
save them to the server and create a URL to the virtual directory?

FYI: I currently am doing this with just single images. I do a
Response.BinaryWrite(byte) to display the one image. The advantage is
that I
never have to worry about deleting the images at some later time.
Unfortunatly, this method does not lend itself to multiple images.

Jan 27 '06 #3
This is a good solution but I was hoping to not store the images in a
database or at all for that matter. I just want to write multiple images to
a page and forget about it.

"Milosz Skalecki" wrote:
simple example

1. My example Database stucture is as follows:
[FileId] UNIQUEIDENTIFIER PRIMARY CLUSTERED KEY
[Data] IMAGE NOT NULL

2. ViewImage.aspx.cs code
-- BEGIN CODE --
using System;
using System.Data;
using System.Data.SqlClient;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class ViewImage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Guid id;

try
{
id = new Guid(Request.QueryString["id"]);
}
catch
{
// display a default image or message
// saying id is invalid
return;
}

this.AttachImageContent(id);

}

/// <summary>
///
/// </summary>
/// <param name="id"></param>
private void AttachImageContent(Guid id)
{
byte[] content = this.GetImageContent(id);

Response.ClearContent();
Response.ContentType = "image/jpg"; // get it from database
Response.OutputStream.Write(content, 0, content.Length);
Response.End();
}

private const string ConnectionString =
"server=(local);uid=;password=;" +
"database=BlobDatabase;pooling=true;max pool size=1;min pool size=1;";

/// <summary>
///
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
private byte[] GetImageContent(Guid id)
{
// should be a stored procedure
string query = "SELECT [Data] FROM [File] WHERE [FileId] = @FileId";

SqlConnection connection = new SqlConnection(ConnectionString);
SqlCommand command = new SqlCommand(query, connection);
SqlParameter parameter = new SqlParameter("@FileId",
SqlDbType.UniqueIdentifier);

parameter.Direction = ParameterDirection.Input;
parameter.Value = id;

command.CommandTimeout = 120;
command.CommandType = CommandType.Text;
command.Parameters.Add(parameter);

try
{
connection.Open();
return (byte[]) command.ExecuteScalar();
}
catch (Exception ex)
{
throw ex;
}
finally
{
if (connection.State != ConnectionState.Closed)
connection.Close();
}

}
}

-- END CODE --

3. Aspx Page html code

-- BEGIN CODE --
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<style type="text/css">
</style>
</head>
<body>
<form id="form1" runat="server">
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns=False>
<Columns>
<asp:TemplateField>
<ItemTemplate>
<img
src='ViewImage.aspx?id=<%#DataBinder.Eval(Containe r.DataItem, "FileId")%>'/>
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="FirstName"/>
</Columns>
</asp:GridView>
</form>
</body>
</html>
-- END CODE --

4. Apsx behind c# code

-- BEGIN CODE --

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
GridView1.DataSource = GetDataSource();
GridView1.DataBind();
}

private DataTable GetDataSource()
{
DataTable table = new DataTable();

table.Columns.Add("FileId", typeof(string));
table.Columns.Add("FirstName", typeof(string));

DataRow row = table.NewRow();

row[0] = "e8302aa9-e82c-4d20-b3ae-79f8c5009dfb";
row[1] = "George W Bush";

table.Rows.Add(row);

return table;

}

}

-- END CODE --

Hope this helps

--
Milosz Skalecki
MCP, MCAD
"CLEAR-RCIC" wrote:
I have several images i want to display in an ASP.Net application. The
images are being passed to me in binary format from another application. Is
there a good way to write them directly to an HMTL page without having to
save them to the server and create a URL to the virtual directory?

FYI: I currently am doing this with just single images. I do a
Response.BinaryWrite(byte) to display the one image. The advantage is that I
never have to worry about deleting the images at some later time.
Unfortunatly, this method does not lend itself to multiple images.

Jan 27 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Blaktyger | last post by:
How can this be done? Images are stored in a LONGBLOB field. When I try to display them, it prints out the binary data as it is... Thank you
3
by: Dalan | last post by:
At first I was not certain what could cause Access 97 from displaying most jpeg images, but not all. After further testing, it seemed that all original images of less than 275 pixels per inch or...
7
by: Jim | last post by:
I am trying to display images that are stored in a database, and I am using a repeater control. What I still use the Response.BinaryWrite method with a binding expression, if so, what with the...
15
by: mleaver | last post by:
I want to open a second window and display a binary image that is returned from a java program via XMLRPC. The data returned is a binary encoded base64 png file. If I write the data out to a file...
3
by: velu | last post by:
Asp.Net 2 I am trying to display Image from Northwind Database. I ran a queary "SELECT CategoryID, CategoryName, Description, Picture FROM Categories" but the Dataview displayes all the fields...
10
by: eholz1 | last post by:
Hello Members, I am setting up a photo website. I have decided to use PHP and MySQL. I can load jpeg files into the table (medium blob, or even longtext) and get the image(s) to display without...
14
by: Brad | last post by:
I have a .net 2.0 web application project that creates a pdf file, saves the pdf to disk (crystal reports does this part), and then my code reads the pdf file and writes it to the httpresponse ...
2
by: pammyspammy | last post by:
Hi - Some background info: I'm helping to redesign an internal website at work, and I've decided to use CSS, though I don't really have any experience with it. I figure now's a good time to...
14
by: ashraf02 | last post by:
i used a code from a website that allows you to display images. however everything works fine from storing the image to the database but it does not display the image. the following code is the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.