Problem with EAN13 barcodes
Hello everybody.
I'm printing barcodes, all right, but, I'm having a problem with EAN13 codes. Don't read, in barcode scanner. The FastReport's example do not read too.
Help me, please.
Andr?© Rosa @ Brazil.
I'm printing barcodes, all right, but, I'm having a problem with EAN13 codes. Don't read, in barcode scanner. The FastReport's example do not read too.
Help me, please.
Andr?© Rosa @ Brazil.
Comments
Just copy the following C# to your project, and make sure where the ean13 you need to decode locates.
BusinessRefinery.Barcode.Linear barcode = new Linear();
barcode.Symbology = Symbology.EAN13;
barcode.Code = "000123456789";
Bitmap bmp = barcode.drawBarcodeOnBitmap();
barcode.drawBarcode2ImageFile("c://aaa.png");
//string[] barcodes = BarCodeReader.scanBarCode(bmp, BusinessRefinery.Barcodes.Reader.BarCodeType.EAN13);
string[] barcodes = BarCodeReader.scanBarCode("c://qr.jpg", BusinessRefinery.Barcodes.Reader.BarCodeType.EAN13);
I have 4 different barcode scanners here I could try.