Added Maxicode for glabels interface

glabels can now access Maxicode encoding
This commit is contained in:
Robin Stuart 2010-08-21 22:57:54 +01:00
parent 1cca83855e
commit 574319bb1c
3 changed files with 101 additions and 19 deletions

View file

@ -38,10 +38,22 @@ struct zint_render_string {
struct zint_render_string *next; /* Pointer to next character */
};
struct zint_render_ring {
float x, y, radius, line_width;
struct zint_render_ring *next; /* Pointer to next ring */
};
struct zint_render_hexagon {
float x, y;
struct zint_render_hexagon *next; /* Pointer to next hexagon */
};
struct zint_render {
float width, height;
struct zint_render_line *lines; /* Pointer to first line */
struct zint_render_line *lines; /* Pointer to first line */
struct zint_render_string *strings; /* Pointer to first string */
struct zint_render_ring *rings; /* Pointer to first ring */
struct zint_render_hexagon *hexagons; /* Pointer to first hexagon */
};
struct zint_symbol {