mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-27 05:24:13 -04:00
png: ULTRA: allow for fgcolour if bind/box, bug introduced by [ed3cc5] (MR #111)
This commit is contained in:
parent
0337548c77
commit
dfb9345b75
4 changed files with 29 additions and 16 deletions
|
@ -1083,11 +1083,11 @@ int ZBarcode_Encode(struct zint_symbol *symbol, const unsigned char *source, int
|
|||
|
||||
if (symbol->debug & ZINT_DEBUG_PRINT) {
|
||||
printf("ZBarcode_Encode: symbology: %d, input_mode: 0x%X, ECI: %d, option_1: %d, option_2: %d,"
|
||||
" option_3: %d, scale: %g\n output_options: 0x%X, in_length: %d,"
|
||||
" First 10 source: \"%.10s\", First 10 primary: \"%.10s\"\n",
|
||||
" option_3: %d, scale: %g\n output_options: 0x%X, fg: %s, bg: %s,"
|
||||
" in_length: %d, First 10 source: \"%.10s\", First 10 primary: \"%.10s\"\n",
|
||||
symbol->symbology, symbol->input_mode, symbol->eci, symbol->option_1, symbol->option_2,
|
||||
symbol->option_3, symbol->scale, symbol->output_options, in_length,
|
||||
source, symbol->primary);
|
||||
symbol->option_3, symbol->scale, symbol->output_options, symbol->fgcolour, symbol->bgcolour,
|
||||
in_length, source, symbol->primary);
|
||||
}
|
||||
|
||||
warn_number = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue