解析二维码
Posted 雪?
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解析二维码相关的知识,希望对你有一定的参考价值。
public string Recognize(Bitmap image)
{
string text = string.Empty;
var barcodeReader = new BarcodeReader();
var options = new DecodingOptions();
options.PureBarcode = false;
options.TryHarder = true;
options.PossibleFormats = new List<BarcodeFormat>() { BarcodeFormat.QR_CODE };
barcodeReader.AutoRotate = true;
barcodeReader.Options = options;
//barcodeReader.TryInverted = true;
var res = barcodeReader.Decode(image);
if (res == null) return text;
text = res.Text;
return text;
}
以上是关于解析二维码的主要内容,如果未能解决你的问题,请参考以下文章
无法解析片段中的 ViewModelProvider 构造?
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段
Android 逆向使用 Python 解析 ELF 文件 ( Capstone 反汇编 ELF 文件中的机器码数据 | 创建反汇编解析器实例对象 | 设置汇编解析器显示细节 )(代码片段