Hello. The library cannot recognize the barcode in the attached scan tverplk21-2019-05-28T154505 0001.jpg (504.8 KB). The https://online-barcode-reader.inliteresearch.com/ resource successfully recognizes %116%1930041. Library version Aspose.BarCode 19.2.0. Code example:
var result = new List<string>();
using (var stream = new MemoryStream(content))
{
using (var reader = new BarCodeReader(stream))
{
if (!reader.IsLicensed)
{
throw new ApplicationException("Aspose not licensed");
}
//seconds
reader.Timeout = (int)TimeSpan.FromSeconds(60).TotalMilliseconds;
while (reader.Read())
{
var code = reader.GetCodeText();
if (!string.IsNullOrEmpty(code))
{
result.Add(code);
}
}
}
}
return result.ToArray();