Hello friend,
my problem is to save more than one fingerprint images in one byte array and then store in database(oracle).
i dont know how to solve it. But previously i had did image saving using byte array, but i want to know how to save more than one images in one database field....
actually i convert one image to byte array using the below code
pb1 = picturebox1
pb2 = picturebox2
//Ist image
MemoryStream ms = new MemoryStream();
pb1.Image.Save(ms,pb1.Image.RawFormat);
len = ms.Length;
b = new byte[Convert.ToInt32(len)];
//IInd image
pb2.Image.Save(ms, pb2.Image.RawFormat);
len = ms.Length;
c = new byte[Convert.ToInt32(len)];
how to store these two different byte array (b & c) in one byte array
thanks in advance...
anand