• 大小: 2.15M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 摄像头  条形码  摄像  

资源简介

调用zbar实现摄像头读取二维码

资源截图

代码片段和文件信息

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

namespace 摄像头读取条形码
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender EventArgs e)
        {
            Init();
        }

        void pro_OutputDataReceived(object sender DataReceivedEventArgs e)
        {
            //可通过调用 CancelOutputRead 取消异步读取操作。可通过调用方或事件处理程序取消读取操作。取消之后,可以再次调用 BeginOutputReadLine 继续进行异步读取操作。
            if (!string.IsNullOrEmpty(e.Data))
            {
                //lin

评论

共有 条评论