解析二维码
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;
}
我是小白,新建立了一个的群:461431726,希望在这里和大家一起交流,共同学习。前端的话建议加群:646564351,谢谢