通过相机读取数据QR码C#

时间:2016-06-29 22:46:47

标签: c# qr-code

如何扫描和读取笔记本电脑内置或外置USB摄像头拍摄的 QR码的数据?

我需要读取QR码的数据并在我用C#编写的项目中使用它

1 个答案:

答案 0 :(得分:1)

您应该使用此API:https://qrcodenet.codeplex.com/

或者:

https://zxingnet.codeplex.com/

使用第二个库你应该写一个这样的方法:

IBarcodeReader r = new BarcodeReader();
var image = (Bitmap)Bitmap.LoadFrom(yourpath); //loading the QR into a variable
var result = r.Decode(image); //decoding the QR 

而不是自己编写方法。