Hi,
Kindly check the attached barcode and let me know the type of barcode???
Thanks in advance…
Hi Durga,
The symbol in your shared sample image is a Code39Extended barcode with CodeText as “sep page”. You can recognize the barcode with Aspose.BarCode for .NET. Sample code is given below for your reference,
C#
var reader = new Aspose.BarCodeRecognition.BarCodeReader(“Barcode.png”, BarCodeReadType.Code39Extended | BarCodeReadType.Code39Standard);
reader.Read();
Console.WriteLine(reader.GetCodeText() + " " + reader.GetReadType());
Please feel free to write back if you have further inquiries.
Regards,