using BarcodeLib.Barcode.ASP.NET; using System.Drawing; BarcodeLib.Barcode.Linear ean13 = new BarcodeLib.Barcode.Linear(); ean13.Type = BarcodeLib.Barcode.BarcodeType.EAN13; ean13.Data = "690102804557"; ean13.ImageFormat = System.Drawing.Imaging.ImageFormat.Jpeg; ean13.BarColor = Color.Black; ean13.BarWidth = 2; ean13.LeftMargin = 4; ean13.RightMargin = 4; ean13.drawBarcode("C:/ean13winform.jpeg");
传入data时需要传入12位的数字。
下载地址:http://www.barcodelib.com/asp_net/main.html
时间: 2024-10-31 16:32:32