Revion of ECI number encoding

This commit is contained in:
Robin Stuart 2017-06-18 13:00:22 +01:00
parent 37ac5e9c54
commit a085bca168
7 changed files with 181 additions and 20 deletions

View file

@ -820,6 +820,11 @@ int ZBarcode_Encode(struct zint_symbol *symbol, const unsigned char *source,int
#endif
error_number = 0;
for (i = 0; i < in_length; i++) {
printf("%X ", (int) source[i]);
}
printf("\n");
if (in_length == 0) {
in_length = (int)ustrlen(source);
}