|
|
 Scott Greenberg | 2006-02-17 06:02:49 |
The code for b and c are switched.
As per "The Bar Code Book," page 33:
Fig 4-22 codabar encodation patterns
B . . . ..
C . . . ..
codabar.barcode.php
53,54c53,54
< '00010110', /* B */
< '01010010', /* C */
---
> '01010010', /* B */
> '00010110', /* C */
|
 Jean-Sébastien Goupil | 2011-08-04 19:19:19 - In reply to message 1 from Scott Greenberg |
This got fixed on the site http://www.barcodephp.com
Thanks,
Jean-Sébastien Goupil |
|