基本信息
源码名称:神思ss628型USB二代身份证DEMO(C#)
源码大小:0.47M
文件格式:.zip
开发语言:C#
更新时间:2019-04-01
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
神思ss628型USB二代身份证读卡器的调用源码,代码运行正常,能够成功读取身份证,可以借鉴参考,但要按照x86编译才行 any cpu 不支持。
神思ss628型USB二代身份证读卡器的调用源码,代码运行正常,能够成功读取身份证,可以借鉴参考,但要按照x86编译才行 any cpu 不支持。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace ReadIDCardApplicationVS5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
/// <summary>
/// 读取身份证信息
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnRead_Click(object sender, EventArgs e)
{
string sMsg = string.Empty;
//初始化
if (!IDCardReader.InitCom(0, out sMsg))
{
MessageBox.Show(sMsg);
}
//发布后的运行路劲,发布的是Release版本的
string sPath = System.Environment.CurrentDirectory.Substring(0, System.Environment.CurrentDirectory.LastIndexOf('\\')); //
sPath = System.Environment.CurrentDirectory "\\";
//MessageBox.Show(sPath);
//未发布的程序运行路劲
#if DEBUG
sPath = System.Windows.Forms.Application.StartupPath;
#endif
CardInfo objIDCardInfo = null;
try
{
//读身份证对象
objIDCardInfo = IDCardReader.ReadCardInfo(0, out sMsg, sPath);
if (!string.IsNullOrEmpty(sMsg))
MessageBox.Show(sMsg);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "系统提示");
}
if (objIDCardInfo != null)
{
//赋值
txtIDCard.Text = objIDCardInfo.CardNo;
txtName1.Text = objIDCardInfo.Name;
txtSex1.Text = objIDCardInfo.Sex;
txtBirthday1.Text = objIDCardInfo.Birthday;
txtStartDate1.Text = objIDCardInfo.StartDate;
txtEndDate1.Text = objIDCardInfo.EndDate;
txtNation1.Text = objIDCardInfo.Nation;
txtAddress1.Text = objIDCardInfo.Address;
System.IO.MemoryStream objMSPhoto = new System.IO.MemoryStream(objIDCardInfo.ArrPhotoByte, 0, objIDCardInfo.ArrPhotoByte.Length);
Image objImage = Image.FromStream(objMSPhoto);
this.panel1.BackgroundImage = objImage;
}
}
/// <summary>
/// 清空身份证信息
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button2_Click(object sender, EventArgs e)
{
txtIDCard.Text = string.Empty;
txtName1.Text = string.Empty;
txtSex1.Text = string.Empty;
txtBirthday1.Text = string.Empty;
txtStartDate1.Text = string.Empty;
txtEndDate1.Text = string.Empty;
txtNation1.Text = string.Empty;
txtAddress1.Text = string.Empty;
this.panel1.BackgroundImage = null;
}
}
}