1
0
mirror of https://git.code.sf.net/p/zint/code synced 2026-01-27 22:05:57 +00:00

upcean: BARCODE_RAW_TEST: need "+" separator for add-ons, else can't

differentiate between EAN-13 and EAN-8 + EAN-5
cli: append "Ital. Pharma" to Code 32 description
dxfilmedge: code fiddle
This commit is contained in:
gitlost
2025-02-20 22:57:54 +00:00
parent 8e7931b147
commit c499620ff6
10 changed files with 243 additions and 185 deletions

View File

@@ -160,8 +160,8 @@ static int dx_parse_code(struct zint_symbol *symbol, const unsigned char *source
dx_extract);
}
if (debug_print) printf("Computed DX extract: %04d\n", dx_extract);
dx_code_1 = dx_extract / 16;
dx_code_2 = dx_extract % 16;
dx_code_1 = dx_extract >> 4;
dx_code_2 = dx_extract & 0xF;
}
if (debug_print) {