BioMetrix icon indicating copy to clipboard operation
BioMetrix copied to clipboard

problem GetUserFace

Open nativecode2020 opened this issue 10 months ago • 0 comments

Hi, I have a ZKTeco Iface 1000 and need to use the GetUserFace function, but it's returning null.

ICollection<UserTemplate> templates = new List<UserTemplate>(); string faceData = ""; int faceLength = 0;

for (int faceIndex = 0; faceIndex < 10; faceIndex++) { if (objCZKEM.GetUserFaceStr(machineNumber, enrollNumber, faceIndex, ref faceData, ref faceLength)) { templates.Add(new UserTemplate { TemplateIndex = faceIndex, TemplateData = faceData }); } }

nativecode2020 avatar Feb 10 '25 17:02 nativecode2020