C# - 使用 ZXing.Net 解码 png QR 码
Posted
技术标签:
【中文标题】C# - 使用 ZXing.Net 解码 png QR 码【英文标题】:C# - Using ZXing.Net to Decode png QR Code 【发布时间】:2019-11-06 08:21:44 【问题描述】:我正在使用 ZXing.Net 库 (0.16.4) 对 QR 码进行编码和解码。我从这里得到了如何解码二维码的参考: C# with ZXing.Net: Decoding the QR code
代码:
Bitmap image = (Bitmap)Bitmap.FromFile(@"file.png");
byte[] bytes = File.ReadAllBytes(@"file.png");
try
using (image)
LuminanceSource source;
source = new BitmapLuminanceSource(image);
BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
Result result = new MultiFormatReader().decode(bitmap);
if (result != null)
//... code found
var data = result.Text.Split(Environment.NewLine);
else
//... no code found
catch (Exception exception)
throw new Exception("Cannot decode the QR code " + exception.Message);
这里的代码在 BitmapLuminanceSource 上抛出编译时错误
找不到类型或命名空间名称“BitmapLuminanceSource” (您是否缺少 using 指令或程序集引用?
我已经在这里安装了ZXing.Net包,我不明白,为什么这个类引用在这里不起作用。
为了使代码正常工作,我从这里的 git 复制了这个类: https://github.com/micjahn/ZXing.Net/blob/master/Source/lib/BitmapLuminanceSource.cs
【问题讨论】:
【参考方案1】:我在 Xamarin.android 上遇到了同样的问题,我将 NuGet 安装到我的解决方案中:https://www.nuget.org/packages/ZXing.Net/
我会确保对包文件的所有引用都是正确的。 如果您使用的是 Visual Studio,这已为您完成,只需确保添加 Zxing.Net NuGet 包,因为 Zxing.Net.Mobile/Zxing.Net.Forms 没有 BitmapLuminanceSource 方法。
【讨论】:
【参考方案2】:该类在 .NET Core 版本的库中不可用(但很快就会提供)。 ZXing.Net 的作者 micjahn 建议使用此处列出的一些绑定https://www.nuget.org/packages?q=ZXing.Net.Bindings 我选择了 ZKWeb,我的初始化代码如下所示:
var bitMap = (System.DrawingCore.Bitmap)System.DrawingCore.Bitmap.FromStream(stream);
var source = new ZXing.ZKWeb.BitmapLuminanceSource(bitMap);
var binaryBitmap = new BinaryBitmap(new HybridBinarizer(source));
原来的答案是here。 一些额外的information。
【讨论】:
不需要处理BitmapLuminanceSource、BinaryBitmap和HybridBinarizer。您可以直接使用绑定中的 BarcodeReader 类:var bitMap = (System.DrawingCore.Bitmap)System.DrawingCore.Bitmap.FromStream(stream); var reader = new ZXing.ZKWeb.BarcodeReader(); var result = reader.Decode(bitMap);
以上是关于C# - 使用 ZXing.Net 解码 png QR 码的主要内容,如果未能解决你的问题,请参考以下文章
Xamarin 形式:使用 ZXing.Net.Mobile 进行扫描时出现 System.NullReferenceException?
如何在 .Net Core 2.0 中使用 ZXing.Net 和 ImageSharp 创建条码图像
Xamarin.Forms(2.5.0.122203)使用Zxing.Net.Mobile.Forms(2.3.3)时,Android端莫名崩溃