mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-20 03:17:12 +00:00
Add ECI encoding
This commit is contained in:
@@ -98,13 +98,13 @@ const int AztecSymbolChar[128] = {
|
||||
302: Full Stop (ASCII 46)
|
||||
*/
|
||||
|
||||
static const char *hexbit[32] = {
|
||||
static const char *pentbit[32] = {
|
||||
"00000", "00001", "00010", "00011", "00100", "00101", "00110", "00111", "01000", "01001",
|
||||
"01010", "01011", "01100", "01101", "01110", "01111", "10000", "10001", "10010", "10011", "10100", "10101",
|
||||
"10110", "10111", "11000", "11001", "11010", "11011", "11100", "11101", "11110", "11111"
|
||||
};
|
||||
|
||||
static const char *pentbit[16] = {
|
||||
static const char *quadbit[16] = {
|
||||
"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001",
|
||||
"1010", "1011", "1100", "1101", "1110", "1111"
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user