escape_char_process: "\xNN" simple convert (reverts [dddf29]), "\uNNNN" BMP check

This commit is contained in:
gitlost 2021-01-15 14:22:32 +00:00
parent 2f48b69138
commit 0b80592f87
5 changed files with 181 additions and 109 deletions

View file

@ -430,6 +430,8 @@ static int batch_process(struct zint_symbol *symbol, char *filename, int mirror_
i++;
if (buffer[i] == 'x') {
i += 2;
} else if (buffer[i] == 'u') {
i += 4;
}
}
i++;