您好,
这与打印出的条形码的尺寸,条形码中信息的长度等有关。
我们测试了您给出的条形码信息,当其使用如下代码生成,并且打印出的图形大小是7.5cm长,3.5cm宽左右时,其识别率是很好的。
BarCodeCellType barCode = new BarCodeCellType();
barCode.DisplayMode = BarCodeDisplayMode.Image;
barCode.Type = new FarPoint.Win.Spread.CellType.BarCode.Code128();
barCode.ModuleSize.Narrow = "0.01MM";
barCode.Unit = FarPoint.Win.Spread.CellType.BarCode.Unit.Millimeter;
barCode.BarSize = new FarPoint.Win.Spread.CellType.BarCode.BarSize(80, 40);
Image image = barCode.CreateBitmap("BLGL6024W0001");
image.Save(@"E:\temp.bmp");
this.fpSpread1.ActiveSheet.ActiveCell.CellType = barCode;
this.fpSpread1.ActiveSheet.ActiveCell.Value = "BLGL6024W0001";
请根据您的实际需要试之,改之。 |