温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C#如何实现二维码图片识别

发布时间:2021-09-03 15:14:14 来源:亿速云 阅读:741 作者:小新 栏目:编程语言

这篇文章给大家分享的是有关C#如何实现二维码图片识别的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

具体内容如下

怎么用NuGet和怎么配置log4net就不介绍了,直接上代码(Visual Studio 2015 下的项目,用的.NET Framework 4.5.2)。

其中QRDecodeConsoleApp.exe.config文件里配置图片路劲(默认为D:\我的文档\Pictures\二维码)、图片类型(默认为*.png)。

也支持在命令行里执行,exe后接图片路劲参数。

需要直接用的朋友,确认完QRDecodeDemo\bin\Debug下的配置文件QRDecodeConsoleApp.exe.config后,运行QRDecodeConsoleApp.exe即可(运行环境上文已附链接)。

后续更新一个批量生成二维码图片的工具,网上除了在线生成的,下载下来的工具都不怎么好用。

using System; using System.IO; using System.Drawing; using System.Configuration; using ThoughtWorks.QRCode.Codec; using ThoughtWorks.QRCode.Codec.Data; using log4net; namespace QRDecodeConsoleApp {  class Program  {  /// <summary>  /// 私有日志对象  /// </summary>  private static readonly ILog logger = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);  /// <summary>  /// 识别指定目录下的全部二维码图片(默认是PNG)  /// </summary>  /// <param name="args"></param>  static void Main(string[] args)  {   try   {   string[] files;   if (args.Length > 0)   {    //args[0]为CMD里exe后的第一个参数 ImgType默认配置的*.png    files = Directory.GetFiles(args[0], ConfigurationManager.AppSettings["ImgType"]);   }   else   {    //读取指定路劲(QRDecodeConsoleApp.exe.config里配置的路劲)    files = Directory.GetFiles(ConfigurationManager.AppSettings["QRImgPath"],       ConfigurationManager.AppSettings["ImgType"]);   }   //存放结果的文件   string filePath = "txtResult" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".config";   //一个个读取并追加到记录文件   for (int i = 0; i < files.Length; i++)   {    File.AppendAllText(filePath, CodeDecoder(files[i]) + "\t" + files[i] + "\n");//追加到文件里记录    logger.Info("第" + i + "个识别成功");    Console.WriteLine("第" + i + "个识别成功");   }   Console.WriteLine("识别完成,按任意键退出");   Console.ReadLine();   }   catch (Exception ex)   {   Console.WriteLine("识别出错:" + ex.Message);   logger.Error("识别出错");   logger.Error("异常描述:\t" + ex.Message);   logger.Error("异常方法:\t" + ex.TargetSite);   logger.Error("异常堆栈:\t" + ex.StackTrace);   Console.ReadLine();   }  }  /// <summary>  /// 读取图片文件,识别二维码  /// </summary>  /// <param name="filePath">图片文件路劲</param>  /// <returns>识别结果字符串</returns>  public static string CodeDecoder(string filePath)  {   string decoderStr;   try   {   if (!System.IO.File.Exists(filePath))//判断有没有需要读取的主文件夹,如果不存在,终止     return null;   Bitmap bitMap = new Bitmap(Image.FromFile(filePath));//实例化位图对象,把文件实例化为带有颜色信息的位图对象    QRCodeDecoder decoder = new QRCodeDecoder();//实例化QRCodeDecoder    //通过.decoder方法把颜色信息转换成字符串信息    decoderStr = decoder.decode(new QRCodeBitmapImage(bitMap), System.Text.Encoding.UTF8);   }   catch (Exception ex)   {   throw ex;   }   return decoderStr;//返回字符串信息   }  } }

感谢各位的阅读!关于“C#如何实现二维码图片识别”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI