码迷,mamicode.com
首页 > Windows程序 > 详细

c#,读取二维码

时间:2018-05-03 11:38:02      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:ons   ring   字符串   option   c#   summary   char   har   name   

/// <summary>
/// 读取二维码
/// 读取失败,返回空字符串
/// </summary>
/// <param name="filename">指定二维码图片位置</param>
static string Read1(string filename)
{
BarcodeReader reader = new BarcodeReader();
reader.Options.CharacterSet = "UTF-8";
Bitmap map = new Bitmap(filename);
Result result = reader.Decode(map);
return result == null ? "" : result.Text;
}

c#,读取二维码

标签:ons   ring   字符串   option   c#   summary   char   har   name   

原文地址:https://www.cnblogs.com/qqhfeng/p/8984498.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!