mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-28 14:04:19 -04:00
Change height and row_height array to floats; DAFT tracker ratio
This commit is contained in:
parent
22a6c583af
commit
c693482aa1
63 changed files with 2708 additions and 1418 deletions
|
@ -75,7 +75,7 @@ extern "C" {
|
|||
|
||||
struct zint_symbol {
|
||||
int symbology;
|
||||
int height; /* Height in X-dims (ignored for fixed-width barcodes) */
|
||||
float height; /* Height in X-dims (ignored for fixed-width barcodes) */
|
||||
int whitespace_width; /* Width in X-dims of whitespace to left/right of barcode */
|
||||
int whitespace_height; /* Height in X-dims of whitespace above and below the barcode */
|
||||
int border_width; /* Size of border in X-dims */
|
||||
|
@ -98,7 +98,7 @@ extern "C" {
|
|||
int width;
|
||||
char primary[128];
|
||||
unsigned char encoded_data[200][143];
|
||||
int row_height[200]; /* Largest symbol is 189 x 189 Han Xin */
|
||||
float row_height[200]; /* Allow for 200 row DotCode */
|
||||
char errtxt[100];
|
||||
unsigned char *bitmap;
|
||||
int bitmap_width;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue