mirror of
https://git.code.sf.net/p/zint/code
synced 2025-06-01 23:58:27 -04:00
Add symbology: DX Film Edge barcode
DX Film Edge barcodes are used 35 mm and APS films
This commit is contained in:
parent
1456af0e8b
commit
d13a3aaf1a
20 changed files with 680 additions and 9 deletions
backend
|
@ -360,6 +360,12 @@ static int out_quiet_zones(const struct zint_symbol *symbol, const int hide_text
|
|||
*left = *right = 10.0f;
|
||||
done = 1;
|
||||
break;
|
||||
|
||||
case BARCODE_DXFILMEDGE:
|
||||
/* No known standard. Add a little horizontal space to make the detection easier. Tested with Zxing-CPP. */
|
||||
*left = *right = 1.8f;
|
||||
done = 1;
|
||||
break;
|
||||
|
||||
case BARCODE_C25INTER:
|
||||
/* ISO/IEC 16390:2007 Section 4.4 10X */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue