Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a database, it contains a varbinary(MAX) where is saved the sample, the comparision works propelly, but i need to show the samples in picturebox, i was trying to deserialze the sample, but i have'nt idea how to show it.

this is the code that im using to save it:


and i have not any problem to save, and compare, but i want to show it xD, if need my source to modify just say, thanks and sorry for my english

cheers from Matamoros, Tamaulipas, México

What I have tried:

<pre> Enroller.Template.Serialize(ref serializedTemplate1);

**Store TemplateSerialize as string data
cmd.CommandText = $"update Empleados set Huella1=@Huella1, Huella2=@Huella2 where NoEmp ='{txtNoEmp.Text}'";
cmd.Parameters.AddWithValue("@Huella1", serializedTemplate1);
cmd.Parameters.AddWithValue("@Huella2", serializedTemplate2);
Posted
Updated 29-Jun-17 12:45pm

1 solution

Ummm...the enrollment data doesn't have any image to show. It's a block of metadata that represents features of a fingerprint, not an actual image. There's nothing to show.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900