GS1 tags Code128 subset C

2

Has anyone implemented the GS1 bar code standard?  In the standard there is a Code128 bar code. I'm trying to implement using Code 128 subjet C, my amount of digits will be odd.  How it has to be:

1517072011170323703007607271023031701

But it looks like this:

01517072011170323703007607271023031701

Does anyone know a way around this, some component or some way to manually assemble the barcode? Well I should print odd code and have to be Code128C.

I tried to use Subjet A and Subjet B, but the code generated is too big, it does not meet my need. These bar codes go to the client, there is no way I can adjust it in the program.

I'm using Delphi XE7 - Strong Report - TRLBarcode.

    
asked by anonymous 27.07.2017 / 15:02

1 answer

1

When reading barcodes the ideal thing is to do a filter that can be either in the scanner or in your program.

The normal thing is to do in the program, because in addition to some scanner models do not filter, in the program the reading reaches 100% pure.

In your example above just ignore the first digit that in the case is 0.

    
01.08.2017 / 15:54