示例#1
0
 /// <summary>
 /// Stop the capture of a image of a fingerprint by the device reader and is showed by a PictureBox. </summary>
 /// <returns>
 /// Parameter type picturebox </returns>
 public void StopCaptureFingerprint()
 {
     if (objCapturaHuella != null)
     {
         objCapturaHuella.StopCaptures();
         objCapturaHuella = null;
     }
 }
示例#2
0
 /// <summary>
 /// Set the image of a fingerprint captured by the device reader and is showed by a PictureBox. </summary>
 /// <returns>
 /// Parameter type picturebox </returns>
 public void CaptureFingerprint(Reader objReader, PictureBox imgFingerPrint)
 {
     objCapturaHuella = new CapturaHuella.Metodos(objReader, imgFingerPrint);
     objCapturaHuella.StartCaptures();
 }