ZXing是一个开放源码的,用Java实现的多种格式的1D/2D条码图像处理库。 ZXing.Net是基于ZXing的.NET平台下关于条形码和二维码的工具,使用非常方便。 ZXing.Net is a port of ZXing, an open-source, multi-format 1D/2D barcode image processing library originally implemented in Java. It has been ported by hand with a lot of optimizations and improvements. It is compatible with .Net 2.0, .Net 3.5, .Net 4.0, .Net 4.5, .Net 4.6, .Net 4.7, Windows RT Class Library and Components, UWP, .Net Standard 1.0, 1.1, 1.3 and 2.0, Silverlight 4, Silverlight 5, Windows Phone 7.x and Windows Phone 8.x and Xamarin.Android
2021-12-30 13:04:53 12.16MB ZXing ZXing.net 条形码 二维码
1
C#利用Zxing.net生成条形码和二维码并实现打印,解码
2021-12-24 10:52:36 1009KB C# 二维码生成 Winform
1
zxing是调用解析二维码的 其实还有生成二维码的功能。 这里是他的类库,直接添加引用即可,做二维码自动生成保存或是扫描二维码时会用到。
2021-11-26 11:46:50 12.16MB zxing 二维码 c# 解析二维码
1
zxing.net 2.0,3.5,4.0,4.5 4.7 最新包
2021-07-22 12:03:23 12.71MB zxing.net
1
ZXing.Net.0.16.5.0条码编辑生成控件集合下载,最新版本,分享给和我一样nuget死活下载不下来的宝宝们。里面提取各个.net版本下的dll,添加后引用即可。
2021-07-07 10:54:51 15.44MB zxing
1
C#使用ZXing.Net生成二维码和条形码,可以输入的内容生成条码,可以设置条码的宽度和高度,以及各种条码类型,还可以通过拖拽直接识别条码内容 具体操作见:https://blog.csdn.net/weixin_38211198/article/details/89852649
2021-04-25 16:42:19 949KB 条码生成 条码识别
1
zxing.dll条形码 二维码生成、识别。自己开发项目时只需要引用这个dll,所以将此dll单独放出提供下载,供大家使用。
2020-02-03 03:14:15 426KB 二维码
1
包含最全的ZXing.Net动态链接库
2019-12-21 21:39:20 12.34MB ZXing 官网 大全
1
使用参照http://bbs.csdn.net/topics/390776668?page=1#post-401139977
2019-12-21 19:56:45 426KB zxing.net
1
开源的.net二维码识别库,从ZXing移植过来。 // create a barcode reader instance IBarcodeReader reader = new BarcodeReader(); // load a bitmap var barcodeBitmap = (Bitmap)Bitmap.LoadFrom("C:\\sample-barcode-image.png"); // detect and decode the barcode inside the bitmap var result = reader.Decode(barcodeBitmap); // do something with the result if (result != null) { txtDecoderType.Text = result.BarcodeFormat.ToString(); txtDecoderContent.Text = result.Text; }
2019-12-21 19:31:21 104.67MB ZXing.Net 0.12 .net 二维码识别
1