mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-23 11:36:54 -04:00
Fix another simple Code 128 bug (not enough room for text)
This commit is contained in:
parent
b005aea25a
commit
71f3316f5b
1 changed files with 2 additions and 1 deletions
|
@ -46,7 +46,7 @@ struct zint_symbol *ZBarcode_Create()
|
|||
symbol->option_2 = 0;
|
||||
symbol->option_3 = 928; // PDF_MAX
|
||||
strcpy(symbol->primary, "");
|
||||
for(i = 0; i < 90; i++) {
|
||||
for(i = 0; i < 178; i++) {
|
||||
for(j = 0; j < 1000; j++) {
|
||||
symbol->encoded_data[i][j] = '0';
|
||||
}
|
||||
|
@ -272,6 +272,7 @@ int ZBarcode_Encode(struct zint_symbol *symbol, unsigned char *input)
|
|||
error_number = error_buffer;
|
||||
}
|
||||
error_tag(symbol->errtxt, error_number);
|
||||
printf("%s\n",symbol->text);
|
||||
return error_number;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue