mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-20 10:15:10 -04:00
Add Input mode support for Unicode, GS1 and Kanji
This commit is contained in:
parent
e246efe727
commit
bc88024f04
5 changed files with 196 additions and 114 deletions
|
@ -1845,8 +1845,11 @@ int rssexpanded(struct zint_symbol *symbol, unsigned char source[])
|
|||
separator_row = 0;
|
||||
reader=0;
|
||||
|
||||
i = gs1_verify(symbol, source, reduced);
|
||||
if(i != 0) { return i; }
|
||||
if(symbol->input_mode != GS1_MODE) {
|
||||
/* GS1 data has not been verified yet */
|
||||
i = gs1_verify(symbol, source, reduced);
|
||||
if(i != 0) { return i; }
|
||||
}
|
||||
|
||||
if((symbol->symbology == BARCODE_RSS_EXP_CC) || (symbol->symbology == BARCODE_RSS_EXPSTACK_CC)) {
|
||||
/* make space for a composite separator pattern */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue