1.引用Spire.Barcode
在Nuget包中安装Spire.Barcode
2.生成条形码
//创建 BarcodeSettings对象BarcodeSettings settings = new BarcodeSettings();//设置条形类型为EAN-13settings.Type = BarCodeType.EAN13;//设置条形码数据settings.Data = "58465157484";//使用校检settings.UseChecksum = CheckSumMode.ForceEnable;//在底部显示条形码数据settings.ShowTextOnBottom = true;//设置宽度settings.X = 1f;//初始化 BarcodeSetting对象,传入以上设置BarCodeGenerator generator = new BarCodeGenerator(settings);//创建条形码图片并保存为png格式Image image = generator.GenerateImage();image.Save("111.png", System.Drawing.Imaging.ImageFormat.Png);
F5运行程序,在文件夹下面就能看到条形码用手机扫描二维码,生成样式的话,后面再讲扫描查看商品(点开图片并识别图中条形码就能看到牛黄解毒片),商品的条码属于EAN13码。
3.生成二维码
settings.Type = BarCodeType.EAN13; BarCodeType
是个枚举里面有很多条码的类型,更改枚举值(改为:)尝试下扫码
4.如何调试二维码样式
在官网下载demo运行。官网可能会让你注册账号。在这里我放出在网上找到的github地址
官网:https://www.e-iceblue.com/Download/download-barcode-for-net-now.html github:https://github.com/bloodymandoo/barcode
5. 快来生成各种码吧!