<strike id="fxlxl"></strike><font id="fxlxl"><em id="fxlxl"><thead id="fxlxl"></thead></em></font>

<track id="fxlxl"><delect id="fxlxl"><cite id="fxlxl"></cite></delect></track>

<ins id="fxlxl"></ins>

    <ins id="fxlxl"></ins>
    <track id="fxlxl"><delect id="fxlxl"></delect></track>

          <strike id="fxlxl"></strike>

          潤宇軟件
          首 頁 企業簡介 項目案例 軟件定制 行業軟件 解決方案 企業資訊 服務專區 客服中心
          業務介紹:西安軟件公司、軟件開發、軟件定制、軟件外包
          軟件 方案 文章
            潤宇軟件 >> 新聞資訊  >> 解決方案

          指紋打卡二次開發

          發布時間:2016/2/29  瀏覽次數:18次  字體【    】

              ZKFinger SDK 包括指紋采集庫和指紋算法庫。指紋采集庫從指紋采集器中采集圖像, 文件名為ZKFPCap.dll。指紋算法庫從指紋圖像中提取指紋模板。ZKFinger10.0 算法(ZKFinger10.dll)。如果用戶有自己的指紋算法庫只需通過指紋采集庫采集指紋圖像即可。

          using System;
          using System.Collections.Generic;
          using System.ComponentModel;
          using System.Data;
          using System.Drawing;
          using System.Linq;
          using System.Text;
          using System.Windows.Forms;
          using System.Threading;
          using System.Runtime.InteropServices;
          using System.IO;

          namespace Sample
          {
              public partial class MainFrm : Form
              {
                  bool gConnected = false;
                  byte[] g_FPBuffer;
                  int g_FPBufferSize = 0;
                  bool g_bIsTimeToDie = false;
                  IntPtr g_Handle = IntPtr.Zero;
                  IntPtr g_biokeyHandle = IntPtr.Zero;
                  IntPtr g_FormHandle = IntPtr.Zero;
                  int g_nWidth = 0;
                  int g_nHeight = 0;
                  bool g_IsRegister = false;
                  int g_RegisterTimeCount = 0;
                  int g_RegisterCount = 0;
                  const int REGISTER_FINGER_COUNT = 3;

                  byte[][] g_RegTmps = new byte[3][];
               byte[] g_RegTmp = new byte[2048];
                  byte[] g_VerTmp = new byte[2048];
                 
                  const int MESSAGE_FP_RECEIVED = 0x0400 + 6;

                  [DllImport("user32.dll", EntryPoint = "SendMessageA")]
                  public static extern int SendMessage(IntPtr hwnd, int wMsg, IntPtr wParam, IntPtr lParam);

                  public MainFrm()
                  {
                      InitializeComponent();
                  }

                  private void btnConnect_Click(object sender, EventArgs e)
                  {           
                      if(!gConnected)
                   {
                    int ret = 0;
                    byte[] paramValue = new byte[64];
                         
                    // Enable log
                          Array.Clear(paramValue, 0, paramValue.Length);
                          paramValue[0] = 1;
                    ZKFPCap.sensorSetParameterEx(g_Handle, 1100, paramValue, 4);

                    ret = ZKFPCap.sensorInit();
                    if(ret != 0)
                    {
                              MessageBox.Show("初始化失敗, ret=" + ret.ToString());
                     return;
                    }
                          g_Handle = ZKFPCap.sensorOpen(0);

                          Array.Clear(paramValue, 0, paramValue.Length);
                          ZKFPCap.sensorGetVersion(paramValue, paramValue.Length);

                    ret = paramValue.Length;
                          Array.Clear(paramValue, 0, paramValue.Length);
                          ZKFPCap.sensorGetParameterEx(g_Handle, 1, paramValue, ref ret);
                    g_nWidth = BitConverter.ToInt32(paramValue, 0);

                          this.picFP.Width = g_nWidth;


                          ret = paramValue.Length;
                          Array.Clear(paramValue, 0, paramValue.Length);
                          ZKFPCap.sensorGetParameterEx(g_Handle, 2, paramValue, ref ret);
                          g_nHeight = BitConverter.ToInt32(paramValue, 0);

                          this.picFP.Height = g_nHeight;

                          ret = paramValue.Length;
                          Array.Clear(paramValue, 0, paramValue.Length);
                          ZKFPCap.sensorGetParameterEx(g_Handle, 106, paramValue, ref ret);
                          g_FPBufferSize = BitConverter.ToInt32(paramValue, 0);

                          g_FPBuffer = new byte[g_FPBufferSize];
                          Array.Clear(g_FPBuffer, 0, g_FPBuffer.Length);

                    // get vid&pid
                          ret = paramValue.Length;
                          Array.Clear(paramValue, 0, paramValue.Length);
                          ZKFPCap.sensorGetParameterEx(g_Handle, 1015, paramValue, ref ret);
                          int nVid = BitConverter.ToInt16(paramValue, 0);
                          int nPid = BitConverter.ToInt16(paramValue, 2);
                    
                    // Manufacturer
                          ret = paramValue.Length;
                          Array.Clear(paramValue, 0, paramValue.Length);
                          ZKFPCap.sensorGetParameterEx(g_Handle, 1101, paramValue, ref ret);
                          string manufacturer = System.Text.Encoding.ASCII.GetString(paramValue);
                    // Product
                          ret = paramValue.Length;
                          Array.Clear(paramValue, 0, paramValue.Length);
                          ZKFPCap.sensorGetParameterEx(g_Handle, 1102, paramValue, ref ret);
                          string product = System.Text.Encoding.ASCII.GetString(paramValue);
                    // SerialNumber
                          ret = paramValue.Length;
                          Array.Clear(paramValue, 0, paramValue.Length);
                          ZKFPCap.sensorGetParameterEx(g_Handle, 1103, paramValue, ref ret);
                          string serialNumber = System.Text.Encoding.ASCII.GetString(paramValue);
                      
                          // Fingerprint Alg
                          short[] iSize = new short[24];
                       iSize[0] = (short)g_nWidth;
                          iSize[1] = (short)g_nHeight;
                          iSize[20] = (short)g_nWidth;
                          iSize[21] = (short)g_nHeight; ;
                          g_biokeyHandle = ZKFinger10.BIOKEY_INIT(0, iSize, null, null, 0);
                          if (g_biokeyHandle == IntPtr.Zero)
                       {
                        MessageBox.Show("BIOKEY_INIT failed");
                              return;
                       }

                       // Set allow 360 angle of Press Finger
                          ZKFinger10.BIOKEY_SET_PARAMETER(g_biokeyHandle, 4, 180);

                       // Set Matching threshold
                          ZKFinger10.BIOKEY_MATCHINGPARAM(g_biokeyHandle, 0, ZKFinger10.THRESHOLD_MIDDLE);

                       // Init RegTmps
                          for (int i = 0; i < 3; i++)
                          {
                              g_RegTmps[i] = new byte[2048];
                          }

                          Thread captureThread = new Thread(new ThreadStart(DoCapture));
                          captureThread.IsBackground = true;
                          captureThread.Start();
                          g_bIsTimeToDie = false;

                    gConnected = true;
                          btnRegister.Enabled = true;
                          btnVerify.Enabled = true;
                          btnConnect.Text = "斷開傳感器";

                          txtPrompt.Text = "請把你的手指在傳感器";
                   }
                   else
                   {
                    FreeSensor();

                          ZKFinger10.BIOKEY_DB_CLEAR(g_biokeyHandle);
                          ZKFinger10.BIOKEY_CLOSE(g_biokeyHandle);

                    gConnected = false;
                          btnRegister.Enabled = false;
                          btnVerify.Enabled = false;
                          btnConnect.Text = "連接傳感器";
                   }
                  }

                  private void FreeSensor()
                  {
                      g_bIsTimeToDie = true;
                      Thread.Sleep(1000);
                      ZKFPCap.sensorClose(g_Handle);

                      // Disable log
                      byte[] paramValue = new byte[4];
                      paramValue[0] = 0;
                      ZKFPCap.sensorSetParameterEx(g_Handle, 1100, paramValue, 4);

                      ZKFPCap.sensorFree();
                  }

                  private void DoCapture()
                  {
                      while (!g_bIsTimeToDie)
                      {
                          int ret = ZKFPCap.sensorCapture(g_Handle, g_FPBuffer, g_FPBufferSize);
                          if (ret > 0)
                          {
                              SendMessage(g_FormHandle, MESSAGE_FP_RECEIVED, IntPtr.Zero, IntPtr.Zero);
                          }
                      }
                  }

                  protected override void DefWndProc(ref Message m)
                  {
                      switch (m.Msg)
                      {
                          case MESSAGE_FP_RECEIVED:
                              {
                                  try
                                  {
                                      MemoryStream ms = new MemoryStream();
                                      BitmapFormat.GetBitmap(g_FPBuffer, g_nWidth, g_nHeight, ref ms);
                                      Bitmap bmp = new Bitmap(ms);
                                      this.picFP.Image = bmp;

                                      txtStatus.Text = "圖片準備好了";

                                      int ret = 0;
                                      int id = 0;
                                      int score = 0;
                                      int quality = 0;

                                      if (g_IsRegister)
                                      {
                                          Array.Clear(g_RegTmp, 0, g_RegTmp.Length);
                                          ret = ZKFinger10.BIOKEY_EXTRACT(g_biokeyHandle, g_FPBuffer, g_RegTmp, 0);
                                          if (ret > 0)
                                          {                                 
                                              Array.Copy(g_RegTmp, g_RegTmps[g_RegisterTimeCount++], ret);                      

                                              // Get fingerprint quality
                                              quality = ZKFinger10.BIOKEY_GETLASTQUALITY();
                                              txtQuality.Text = quality.ToString();

                                              txtPrompt.Text = string.Format("請在按手指 {0} 次", REGISTER_FINGER_COUNT - g_RegisterTimeCount);

                                              if (g_RegisterTimeCount == REGISTER_FINGER_COUNT)
                                              {
                                                  Array.Clear(g_RegTmp, 0, g_RegTmp.Length);

                                                  int size = 0;

                                                  /*unsafe
                                                  {
                                                      fixed (byte* Template1 = g_RegTmps[0])
                                                      {
                                                          fixed (byte* Template2 = g_RegTmps[1])
                                                          {
                                                              fixed (byte* Template3 = g_RegTmps[2])
                                                              {
                                                                  byte*[] pTemplate = new byte*[3] { Template1, Template2, Template3 };

                                                                  size = ZKFinger10.BIOKEY_GENTEMPLATE(g_biokeyHandle, pTemplate, 3, g_RegTmp);
                                                              }
                                                          }
                                                      }
                                                  }*/
                                                  size = ZKFinger10.BIOKEY_GENTEMPLATE_SP(g_biokeyHandle, g_RegTmps[0], g_RegTmps[1], g_RegTmps[2], 3, g_RegTmp);

                                                  if (size > 0)
                                                  {
                                                      ZKFinger10.BIOKEY_DB_ADD(g_biokeyHandle, ++g_RegisterCount, size, g_RegTmp);
                                                      txtPrompt.Text = string.Format("注冊成功, fid={0}, totalCount={1}", g_RegisterCount, ZKFinger10.BIOKEY_DB_COUNT(g_biokeyHandle));
                                                      textBox1.Text = BitConverter.ToString(g_RegTmp).Replace("-", string.Empty);
                                                      g_IsRegister = false;
                                                  }
                                                  else
                                                  {
                                                      txtPrompt.Text = "注冊失敗";
                                                  }
                                                  g_RegisterTimeCount = 0;
                                              }
                                          }
                                          else
                                          {
                                              txtPrompt.Text = "抽取模板失敗1";
                                          }
                                      }
                                      else
                                      {
                                          int size = 0;
                                          size = ZKFinger10.BIOKEY_GENTEMPLATE_SP(g_biokeyHandle, HexToByte(textBox1.Text.Trim()), HexToByte(textBox1.Text.Trim()), HexToByte(textBox1.Text.Trim()), 3, HexToByte(textBox1.Text.Trim()));
                                          ZKFinger10.BIOKEY_DB_ADD(g_biokeyHandle, 1, size, g_RegTmp);

                                          Array.Clear(g_VerTmp, 0, g_VerTmp.Length);  
                                          if ((ret = ZKFinger10.BIOKEY_EXTRACT(g_biokeyHandle, g_FPBuffer, g_VerTmp, 0)) > 0)
                                          {

                                              // Get fingerprint quality
                                              quality = ZKFinger10.BIOKEY_GETLASTQUALITY();
                                              txtQuality.Text = quality.ToString();
                                              //ret = ZKFinger10.BIOKEY_IDENTIFYTEMP(g_biokeyHandle, HexToByte(textBox1.Text.Trim()), ref id, ref score);
                                              ret = ZKFinger10.BIOKEY_IDENTIFYTEMP(g_biokeyHandle, g_VerTmp, ref id, ref score);
                                              if (ret > 0)
                                              {
                                                  txtPrompt.Text = string.Format("識別成功, id={0}, score={1}", id, score);
                                                
                                              }
                                              else
                                              {
                                                  txtPrompt.Text = string.Format("識別失敗, score={0}", score);

                                              }
                                          }
                                          else
                                          {
                                              txtPrompt.Text = "抽取模板失敗2";                                 
                                          }
                                      }
                                  }
                                  catch (Exception ex)
                                  {
                                      MessageBox.Show(ex.Message.ToString());
                                  }
                              }
                              break;

                          default:
                              base.DefWndProc(ref m);
                              break;
                      }
                  }

                  private void MainFrm_Load(object sender, EventArgs e)
                  {
                      g_FormHandle = this.Handle;
                  }

                  private void btnRegister_Click(object sender, EventArgs e)
                  {
                      txtPrompt.Text = "指紋登記,請按手指3次";
                      g_RegisterTimeCount = 0;          
                      g_IsRegister = true;
                  }

                  private void btnVerify_Click(object sender, EventArgs e)
                  {
                      txtPrompt.Text = "請把你的手指在傳感器";
                      g_IsRegister = false;
                  }

                  #region byte[]轉16進制格式string:

                 

                  private static byte[] HexToByte(string hexString)
                  {

                      byte[] returnBytes = new byte[hexString.Length / 2];

                      for (int i = 0; i < returnBytes.Length; i++)

                          returnBytes[i] = Convert.ToByte(hexString.Substring(i * 2, 2), 16);

                      return returnBytes;

                  }
                  #endregion

                 
              }
          }

            關閉本頁
          西部IT網合作伙伴 合作伙伴
          陜西省 | 榆林 | 延安 | 銅川 | 渭南 | 商洛 | 寶雞 | 漢中 | 安康 | 咸陽
          網站首頁 | 關于我們 | 售后服務 | 項目合同 | 查看留言 | 在線留言 | 客服中心
          © 版權所有:西安潤宇軟件科技有限公司 
          公司地址:西安市絲路國際創意夢工廠4號樓 聯系電話:029-87878512 手機:13468700578 聯系人:李先生
          Copyright ® 2009-2015 RunYusoft.com Inc. All Rights Reserved 
          技術支持:西安潤宇軟件科技有限公司  陜ICP備11000720號
          日韩激情无码一级毛片软件,亚洲 日韩在线 中文字幕,中日韩AV自慰,日韩在线人成精品中文字幕