I need to create EAN 8 bar code programmatically. I search an algorithm to calculate the checksum digit.
|
|
|
||||||
|
|
|
The algorithm is covered in this wikipedia article on EAN, note that EAN-8 is calculated in the same way as EAN-13. Here's a worked example from http://www.barcodeisland.com/ean8.phtml : Assuming we wish to encode the 7-digit message "5512345", we would calculate the checksum in the following manner:
The total is 15 + 5 + 3 + 2 + 9 + 4 + 15 = 53. 7 must be added to 53 to produce a number evenly divisible by 10, thus the checksum digit is 7 and the completed bar code value is "55123457".
|
|||
|
|
|
|
Have you tried searching for it in Google? e.g. The Wikipedia seems to have the checksum calculation algorithm described... |
||
|
|
