mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-20 03:17:12 +00:00
Fix another simple Code 128 bug (not enough room for text)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user