mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Allow explicit ECI 3
Setting ECI to 3 now causes Zint to include ECI 3 in symbol, and allows entry of data formatted in ISO 8859_1 Fixes #127 requested by Harald Oehlmann
This commit is contained in:
@ -486,7 +486,7 @@ int dotcode_encode_message(struct zint_symbol *symbol, const unsigned char sourc
|
||||
}
|
||||
}
|
||||
|
||||
if (symbol->eci > 3) {
|
||||
if (symbol->eci > 0) {
|
||||
codeword_array[array_length] = 108; // FNC2
|
||||
array_length++;
|
||||
if (symbol->eci <= 39) {
|
||||
|
Reference in New Issue
Block a user