我正在尝试使用ZXing库读取jpg图像中的多个条形码。但它只返回一个条形码。我没有得到任何关于如何修改代码以使其读取多个条形码的信息。我的代码是:
private string readPDFBarcode(String fname) {
IBarcodeReader reader = new BarcodeReader()
{
AutoRotate = true,
TryInverted = true,
Options = new DecodingOptions
{
TryHarder = true,
PureBarcode = false,
ReturnCodabarStartEnd = true,
PossibleFormats = new List<BarcodeFormat> { BarcodeFormat.CODE_128, BarcodeFormat.CODE_39, BarcodeFormat.UPC_E }
}
};
Bitmap oBitmap = new Bitmap(fname);
var result = reader.Decode(oBitmap);
if (result != null)
{
return result.ToString();
}
else {
return "";
}
}
任何建议都会有很大帮助。非常感谢。
试试这个:
var results = reader.DecodeMultiple(oBitmap);
如果它在您的环境中不可用,请提供一些关于target.net框架(经典或核心(的信息。