Hi All,
I am using this solution in windows machine its worked perfectly but when i am deploying this code in .net core and in Linux box, it failed to recognize the barcode text inside the image, Can somebody plz help me with that
Aspose Barcode version used 20.07
using (BarCodeReader reader = new BarCodeReader(Imagepath, DecodeType.QR))
{
foreach (BarCodeResult result in reader.ReadBarCodes())
{
//Text is
DecryptedString = Convert.ToString(result.CodeText);
if (findtheQrCodeisEinvoice.Length == 3)
{
...code
}
else
{
..code
}
}
}