You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to your codes, this plugin only display code128B.
Code128C is compression format if there are only digits
I am trying to take byte array as input instead of string.
Since code128 can be mixed with code128a/code128B/code128C.
For example,
1645907 is code128c with last digit is code128a
The real raw bytes are 105, 16, 45, 90, 101, 23, 73,106
101 indicate code128a is used and therefore, 23 represents '7' (not '07' in code128c)
The text was updated successfully, but these errors were encountered:
There are two issues.
Code128C is compression format if there are only digits
Since code128 can be mixed with code128a/code128B/code128C.
For example,
1645907 is code128c with last digit is code128a
The real raw bytes are 105, 16, 45, 90, 101, 23, 73,106
101 indicate code128a is used and therefore, 23 represents '7' (not '07' in code128c)
The text was updated successfully, but these errors were encountered: