我使用 Dymo Labelprinter 生成带有字母数据的 Code 128-Barcode。Dymo 将类型称为“Code128Auto”。
使用 Zbar 进行识别工作正常。
但 ZXing 将“UG18/04/10363”识别为“UPC E”,文本为“06118745”。
我试图强制 Code128,但没有成功。
ZXing.OneD.Code128Reader
和
List<BarcodeFormat> formats = new List<BarcodeFormat>();
formats.Add(BarcodeFormat.CODE_128);
hints.Add(DecodeHintType.POSSIBLE_FORMATS, formats);