vote up 1 vote down star

I read image by using OpenFileDialog. Sample code is below:

openFileDialog1.ShowDialog();
if (openFileDialog1.FileName != null)
   if (picBoardImage.Image != null)
{
    picBoardImage.Image.Dispose();
}
picBoardImage.Image = Image.FromFile(openFileDialog1.FileName);

I want to store this image in datatable. How can I do that?

flag

0% accept rate
Added a link to an article for the same, check the updated answer. – Kirtan May 25 at 5:44
You might want to add some language-related tags to this question. I would but I don't have enough magic points. – Catchwa May 25 at 6:00
@Catchwa: Done. – Kirtan May 25 at 6:45
@Shamim: If the answer from Kirtan is valid accept it to mark the question as answered, if not provide mor information or close the question. – Doliveras Jun 18 at 7:39

2 Answers

vote up 3 vote down

You can do it like this -

DataTable table = new DataTable("ImageTable"); //Create a new DataTable instance.

DataColumn column = new DataColumn("MyImage"); //Create the column.
column.DataType = System.Type.GetType("System.Byte[]"); //Type byte[] to store image bytes.
column.AllowDBNull = true;
column.Caption = "My Image";

table.Columns.Add(column); //Add the column to the table.

Then, add a new row to this table and set the value of the MyImage column.

DataRow row = table.NewRow();
row["MyImage"] = <Image byte array>;
tables.Rows.Add(row);

EDIT: You can take a look at this CodeProject article for help on converting an image to a byte array.

link|flag
to take image in datatable .....i need to take image in byte ...how can i do it? how can i take image in byte from openFileDialog1. – Shamim May 25 at 5:41
The article converts to a GIF, which is a fairly poor choice. Among other reasons, GIFs only support 256 colors. Luckily, this only requires changing Gif to Png in the linked code. – Matthew Flaschen May 25 at 7:07
1  
Yes Matthew, the format can be any of your choice. – Kirtan May 25 at 7:44
vote up 1 vote down

I think you can use this link http://www.eggheadcafe.com/PrintSearchContent.asp?LINKID=799 this explains everything you want.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.