Click here to Skip to main content
15,889,808 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Friends,

I am using a finger print scanner of futronic to collect fingerprint data, and identification is done through another device , both are not matching. identification device is supporting 1404+12 Bytes size data. and the recognization device is giving some bit map image. so how i convert the data into it.
Posted
Comments
CPallini 17-Aug-15 3:42am    
"identification device is supporting 1404+12 Bytes size data"
What does it mean, exactly?
Member 10511375 17-Aug-15 5:20am    
i want to take all fingerprints through a single futronic device and for identification purpose using another bio-metric device, in that the finger print data is supporting 1404+12 Bytes size data, it is not the data scanned using futronic device
CPallini 17-Aug-15 5:32am    
"1404+12 bytes" says nothing but the size of the expected data. What about the data format? You should read the documentation, I suppose.
Member 10511375 17-Aug-15 7:47am    
from the fingerprint terminal (the single device using for first time scanning of finger print gives the data as byte and also a bitmap).

i want to save this to another bio-metric device in that some code seems like this
Const DATASIZE As Short = (1404 + 12) / 4 'SmackBio
Dim gTemplngEnrollData(DATASIZE) As Integer
Dim glngEnrollPData As Integer
Dim gbytEnrollData(DATASIZE * 5) As Byte


And in setting the data to device or getting the data from device there sees a code like this
Dim gh As GCHandle = GCHandle.Alloc(gTemplngEnrollData, GCHandleType.Pinned)
Dim AddrOfTemplngEnrollData As IntPtr = gh.AddrOfPinnedObject()



frmMain.SBXPC1.GetEnrollData1(mMachineNumber, _
vEnrollNumber, _
vFingerNumber, _
vPrivilege, _
AddrOfTemplngEnrollData.ToInt32(), _
glngEnrollPData)
Member 10511375 18-Aug-15 0:59am    
Sir,

how to convert to 1404+12 bytes?

from finger print scanner the byte size is 155600

i want to convert it (1404 + 12 byte)and the storing device store the data of 355 length

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