C#实现扫描枪扫描二维码并打印(实例代码)

 更新时间:2020年6月25日 10:35  点击:1351

1.使用usb口输入的扫描枪,这里实现使用了winform

首先创建一个CS文件

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text;
namespace am_sign
{
 class BardCodeHooK
 {
  public delegate void BardCodeDeletegate(BarCodes barCode);
  public event BardCodeDeletegate BarCodeEvent;
  public struct BarCodes
  {
   public int VirtKey;//虚拟吗
   public int ScanCode;//扫描码
   public string KeyName;//键名
   public uint Ascll;//Ascll
   public char Chr;//字符
   public string BarCode;//条码信息
   public bool IsValid;//条码是否有效
   public DateTime Time;//扫描时间
  }
  private struct EventMsg
  {
   public int message;
   public int paramL;
   public int paramH;
   public int Time;
   public int hwnd;
  }
  [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
  private static extern int SetWindowsHookEx(int idHook, HookProc lpfn, IntPtr hInstance, int threadId);
  [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
  private static extern bool UnhookWindowsHookEx(int idHook);
  [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
  private static extern int CallNextHookEx(int idHook, int nCode, Int32 wParam, IntPtr lParam);
  [DllImport("user32", EntryPoint = "GetKeyNameText")]
  private static extern int GetKeyNameText(int IParam, StringBuilder lpBuffer, int nSize);
  [DllImport("user32", EntryPoint = "GetKeyboardState")]
  private static extern int GetKeyboardState(byte[] pbKeyState);
  [DllImport("user32", EntryPoint = "ToAscii")]
  private static extern bool ToAscii(int VirtualKey, int ScanCode, byte[] lpKeySate, ref uint lpChar, int uFlags);
  delegate int HookProc(int nCode, Int32 wParam, IntPtr lParam);
  BarCodes barCode = new BarCodes();
  int hKeyboardHook = 0;
  string strBarCode = "";
  private int KeyboardHookProc(int nCode, Int32 wParam, IntPtr lParam)
  {
   if (nCode == 0)
   {
    EventMsg msg = (EventMsg)Marshal.PtrToStructure(lParam, typeof(EventMsg));
    if (wParam == 0x100)//WM_KEYDOWN=0x100
    {
     barCode.VirtKey = msg.message & 0xff;//虚拟吗
     barCode.ScanCode = msg.paramL & 0xff;//扫描码
     StringBuilder strKeyName = new StringBuilder(225);
     if (GetKeyNameText(barCode.ScanCode * 65536, strKeyName, 255) > 0)
     {
      barCode.KeyName = strKeyName.ToString().Trim(new char[] { ' ', '\0' });
     }
     else
     {
      barCode.KeyName = "";
     }
     byte[] kbArray = new byte[256];
     uint uKey = 0;
     GetKeyboardState(kbArray);
     if (ToAscii(barCode.VirtKey, barCode.ScanCode, kbArray, ref uKey, 0))
     {
      barCode.Ascll = uKey;
      barCode.Chr = Convert.ToChar(uKey);
     }
     TimeSpan ts = DateTime.Now.Subtract(barCode.Time);
     if (ts.TotalMilliseconds > 50)
     {
      strBarCode = barCode.Chr.ToString();
     }
     else
     {
      if ((msg.message & 0xff) == 13 && strBarCode.Length > 3)
      {
       barCode.BarCode = strBarCode;
       barCode.IsValid = true;
      }
      strBarCode += barCode.Chr.ToString();
     }
     barCode.Time = DateTime.Now;
     if (BarCodeEvent != null) BarCodeEvent(barCode);//触发事件
     barCode.IsValid = false;
    }
   }
   return CallNextHookEx(hKeyboardHook, nCode, wParam, lParam);
  }
  //安装钩子
  public bool Start()
  {
   if (hKeyboardHook == 0)
   {
    //WH_KEYBOARD_LL=13
    hKeyboardHook = SetWindowsHookEx(13, new HookProc(KeyboardHookProc), Marshal.GetHINSTANCE(Assembly.GetExecutingAssembly().GetModules()[0]), 0);
   }
   return (hKeyboardHook != 0);
  }
  //卸载钩子
  public bool Stop()
  {
   if (hKeyboardHook != 0)
   {
    return UnhookWindowsHookEx(hKeyboardHook);
   }
   return true;
  }
 }
}

2.在winform中调用

 BardCodeHooK BarCode = new BardCodeHooK();
  public Form1()
  {
   InitializeComponent();
   BarCode.BarCodeEvent += new BardCodeHooK.BardCodeDeletegate(BarCode_BarCodeEvent);
  }
  string value = ""; //value为扫码枪获取的内容,以Enter结尾
  private delegate void ShowInfoDelegate(BardCodeHooK.BarCodes barCode);
  private void ShowInfo(BardCodeHooK.BarCodes barCode)
  {
   if (this.InvokeRequired)
   {
    this.BeginInvoke(new ShowInfoDelegate(ShowInfo), new object[] { barCode });
   }
   else
   {
    if (barCode.KeyName.Equals("Enter"))
    {
     hook_KeyDown(value);
     value = "";
    }
    else
    {
     value += barCode.Chr.ToString();
    }
   }
  }
  void BarCode_BarCodeEvent(BardCodeHooK.BarCodes barCode)
  {
   ShowInfo(barCode);
  }

3.打印前,需要将TSLIB.dll文件放入c:\\windows\system下

using System.Runtime.InteropServices;
namespace am_sign
{
 class TSCLIB_DLL
 {
  [DllImport("TSCLIB.dll", EntryPoint = "about")]
  public static extern int about();
  [DllImport("TSCLIB.dll", EntryPoint = "openport")]
  public static extern int openport(string printername);
  [DllImport("TSCLIB.dll", EntryPoint = "barcode")]
  public static extern int barcode(string x, string y, string type,
      string height, string readable, string rotation,
      string narrow, string wide, string code);
  [DllImport("TSCLIB.dll", EntryPoint = "clearbuffer")]
  public static extern int clearbuffer();
  [DllImport("TSCLIB.dll", EntryPoint = "closeport")]
  public static extern int closeport();
  [DllImport("TSCLIB.dll", EntryPoint = "downloadpcx")]
  public static extern int downloadpcx(string filename, string image_name);
  [DllImport("TSCLIB.dll", EntryPoint = "formfeed")]
  public static extern int formfeed();
  [DllImport("TSCLIB.dll", EntryPoint = "nobackfeed")]
  public static extern int nobackfeed();
  [DllImport("TSCLIB.dll", EntryPoint = "printerfont")]
  public static extern int printerfont(string x, string y, string fonttype,
       string rotation, string xmul, string ymul,
       string text);
  [DllImport("TSCLIB.dll", EntryPoint = "printlabel")]
  public static extern int printlabel(string set, string copy);
  [DllImport("TSCLIB.dll", EntryPoint = "sendcommand")]
  public static extern int sendcommand(string printercommand);
  [DllImport("TSCLIB.dll", EntryPoint = "setup")]
  public static extern int setup(string width, string height,
      string speed, string density,
      string sensor, string vertical,
      string offset);
  [DllImport("TSCLIB.dll", EntryPoint = "windowsfont")]
  public static extern int windowsfont(int x, int y, int fontheight,
   int rotation, int fontstyle, int fontunderline,
       string szFaceName, string content);
  //打开打印机端口,并进行相关设置
  public static void openportExt()
  {
   TSCLIB_DLL.openport("Gprinter GP-3120TU");//找打打印机端口
   TSCLIB_DLL.sendcommand("SIZE 70 mm,50 mm");//设置条码大小
   TSCLIB_DLL.sendcommand("GAP 2 mm,0");//设置条码间隙
   TSCLIB_DLL.sendcommand("SPEED 5");//设置打印速度
   TSCLIB_DLL.sendcommand("DENSITY 8");//设置墨汁浓度
   TSCLIB_DLL.sendcommand("DERECTION 1");//设置相对起点
   TSCLIB_DLL.sendcommand("REFERENCE 3 mm,3 mm");//设置偏移边框
   TSCLIB_DLL.sendcommand("CLS");//清除记忆(每次打印新的条码时先清除上一次的打印记忆)
  }
  //打印在二维码
  public static void printVehicleCode(string name, string department, string seat_area,string qrcode)
  {
   TSCLIB_DLL.sendcommand("CLS");//需要清除上一次的打印记忆
   TSCLIB_DLL.sendcommand("QRCODE 207,180,L,6,A,0,M2,S3,\"" + qrcode + "\"");
   TSCLIB_DLL.windowsfont(200, 30, 60, 0, 2, 0, "Microsoft YaHei", name);
   TSCLIB_DLL.windowsfont(210, 100, 30, 0, 0, 0, "Microsoft YaHei", department);
   TSCLIB_DLL.windowsfont(20, 320, 40, 0, 0, 0, "Microsoft YaHei", seat_area);
   TSCLIB_DLL.printlabel("1", "1");
  }
  //关闭打印机端口
  public static void closeportExt()
  {
   TSCLIB_DLL.closeport();
  }
 }
}

4.调用打印

 TSCLIB_DLL.openportExt();           //Open specified printer driver
 TSCLIB_DLL.printVehicleCode(“测试”, “测试”, "测试", “二维码内容”);
 TSCLIB_DLL.closeport();

总结

以上所述是小编给大家介绍的C#实现扫描枪扫描二维码并打印,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对猪先飞网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

[!--infotagslink--]

相关文章

  • php生成二维码中文乱码问题解决方法

    最近做了个扫描二维码得到vcard的项目,遇到一个问题,有一部分生成完的二维码,用android系统手机扫描后得到的vcard中的中文姓名是乱码,经过比对发现,这部分vcard中ORG这个...2016-11-25
  • C#实现简单的登录界面

    我们在使用C#做项目的时候,基本上都需要制作登录界面,那么今天我们就来一步步看看,如果简单的实现登录界面呢,本文给出2个例子,由简入难,希望大家能够喜欢。...2020-06-25
  • 浅谈C# 字段和属性

    这篇文章主要介绍了C# 字段和属性的的相关资料,文中示例代码非常详细,供大家参考和学习,感兴趣的朋友可以了解下...2020-11-03
  • C#中截取字符串的的基本方法详解

    这篇文章主要介绍了C#中截取字符串的的基本方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧...2020-11-03
  • C#连接SQL数据库和查询数据功能的操作技巧

    本文给大家分享C#连接SQL数据库和查询数据功能的操作技巧,本文通过图文并茂的形式给大家介绍的非常详细,需要的朋友参考下吧...2021-05-17
  • C#实现简单的Http请求实例

    这篇文章主要介绍了C#实现简单的Http请求的方法,以实例形式较为详细的分析了C#实现Http请求的具体方法,需要的朋友可以参考下...2020-06-25
  • C#中new的几种用法详解

    本文主要介绍了C#中new的几种用法,具有很好的参考价值,下面跟着小编一起来看下吧...2020-06-25
  • 使用Visual Studio2019创建C#项目(窗体应用程序、控制台应用程序、Web应用程序)

    这篇文章主要介绍了使用Visual Studio2019创建C#项目(窗体应用程序、控制台应用程序、Web应用程序),小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...2020-06-25
  • C#开发Windows窗体应用程序的简单操作步骤

    这篇文章主要介绍了C#开发Windows窗体应用程序的简单操作步骤,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...2021-04-12
  • C#从数据库读取图片并保存的两种方法

    这篇文章主要介绍了C#从数据库读取图片并保存的方法,帮助大家更好的理解和使用c#,感兴趣的朋友可以了解下...2021-01-16
  • C#和JavaScript实现交互的方法

    最近做一个小项目不可避免的需要前端脚本与后台进行交互。由于是在asp.net中实现,故问题演化成asp.net中jiavascript与后台c#如何进行交互。...2020-06-25
  • 经典实例讲解C#递归算法

    这篇文章主要用实例讲解C#递归算法的概念以及用法,文中代码非常详细,帮助大家更好的参考和学习,感兴趣的朋友可以了解下...2020-06-25
  • C++调用C#的DLL程序实现方法

    本文通过例子,讲述了C++调用C#的DLL程序的方法,作出了以下总结,下面就让我们一起来学习吧。...2020-06-25
  • 轻松学习C#的基础入门

    轻松学习C#的基础入门,了解C#最基本的知识点,C#是一种简洁的,类型安全的一种完全面向对象的开发语言,是Microsoft专门基于.NET Framework平台开发的而量身定做的高级程序设计语言,需要的朋友可以参考下...2020-06-25
  • C#变量命名规则小结

    本文主要介绍了C#变量命名规则小结,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...2021-09-09
  • c#中(&&,||)与(&,|)的区别详解

    这篇文章主要介绍了c#中(&&,||)与(&,|)的区别详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧...2020-06-25
  • C# 中如何取绝对值函数

    本文主要介绍了C# 中取绝对值的函数。具有很好的参考价值。下面跟着小编一起来看下吧...2020-06-25
  • C#绘制曲线图的方法

    这篇文章主要介绍了C#绘制曲线图的方法,以完整实例形式较为详细的分析了C#进行曲线绘制的具体步骤与相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下...2020-06-25
  • c#自带缓存使用方法 c#移除清理缓存

    这篇文章主要介绍了c#自带缓存使用方法,包括获取数据缓存、设置数据缓存、移除指定数据缓存等方法,需要的朋友可以参考下...2020-06-25
  • C#学习笔记- 随机函数Random()的用法详解

    下面小编就为大家带来一篇C#学习笔记- 随机函数Random()的用法详解。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧...2020-06-25