Hi all
I don’t want to read reverse image bar code. i tried for this code
BarCodeReader reader = new BarCodeReader(@"D:\test\Reverse_barcode.jpg", DecodeType.Code39Standard);
reader.RecognitionMode = RecognitionMode.ManualHints;
reader.ManualHints = ManualHint.SkipRotatedBarcodes;
try
{
while (reader.Read())
{
Console.WriteLine("BarCode Type: " + reader.GetCodeType());
Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
Console.ReadLine();
}
}
catch (Exception ex)
{
throw new Exception("unable to read barcode" + ex.Message);
}
But this one is not working for me.please guide me.
please check image in the attachment.Reverse_barcode.jpg (56.1 KB)