2010-05-30 21:25:24 +04:00
/*
* render . c - Generic Rendered Format
*
* Initiall written by Sam Lown for use in gLabels . Converts encoded
* data into a generic internal structure of lines and characters
* usable in external applications .
*/
/*
libzint - the open source barcode library
Copyright ( C ) 2009 Robin Stuart < robin @ zint . org . uk >
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License along
with this program ; if not , write to the Free Software Foundation , Inc . ,
51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA .
*/
# include <locale.h>
# include <string.h>
# include <stdlib.h>
# include <stdio.h>
# include "common.h"
2010-09-12 14:54:47 +04:00
# define GL_CONST 2.8346
2010-05-31 16:52:19 +04:00
struct zint_render_line * render_plot_create_line ( float x , float y , float width , float length ) ;
int render_plot_add_line ( struct zint_symbol * symbol , struct zint_render_line * line , struct zint_render_line * * last_line ) ;
2010-08-22 01:57:54 +04:00
struct zint_render_ring * render_plot_create_ring ( float x , float y , float radius , float line_width ) ;
int render_plot_add_ring ( struct zint_symbol * symbol , struct zint_render_ring * ring , struct zint_render_ring * * last_ring ) ;
struct zint_render_hexagon * render_plot_create_hexagon ( float x , float y ) ;
int render_plot_add_hexagon ( struct zint_symbol * symbol , struct zint_render_hexagon * ring , struct zint_render_hexagon * * last_hexagon ) ;
2010-05-31 16:52:19 +04:00
2010-06-19 14:41:49 +04:00
int render_plot_add_string ( struct zint_symbol * symbol , unsigned char * text , float x , float y , float fsize , float width , struct zint_render_string * * last_string ) ;
2010-05-31 16:52:19 +04:00
2010-06-19 14:41:49 +04:00
int render_plot ( struct zint_symbol * symbol , float width , float height )
2010-05-30 21:25:24 +04:00
{
2010-08-22 01:57:54 +04:00
struct zint_render * render ;
struct zint_render_line * line , * last_line = NULL ;
struct zint_render_string * last_string = NULL ;
struct zint_render_ring * ring , * last_ring = NULL ;
struct zint_render_hexagon * hexagon , * last_hexagon = NULL ;
2010-05-30 21:25:24 +04:00
int i , r , block_width , latch , this_row ;
2010-06-11 19:25:41 +04:00
float textpos , textwidth , large_bar_height , preset_height , row_height , row_posn = 0.0 ;
2010-05-30 21:25:24 +04:00
// int error_number = 0;
2010-09-12 14:54:47 +04:00
int text_offset , text_height , xoffset , yoffset , textdone , main_symbol_width_x , addon_width_x ;
2010-05-31 16:52:19 +04:00
char addon [ 6 ] , textpart [ 10 ] ;
2010-09-12 14:54:47 +04:00
int large_bar_count , symbol_lead_in , total_symbol_width_x , total_area_width_x ;
2010-05-30 21:25:24 +04:00
float addon_text_posn ;
float default_text_posn ;
2010-07-06 10:43:13 +04:00
float scaler ;
2010-05-31 16:52:19 +04:00
const char * locale = NULL ;
2010-06-19 14:41:49 +04:00
int hide_text = 0 ;
2010-07-06 10:43:13 +04:00
float required_aspect ;
2010-09-12 14:54:47 +04:00
float symbol_aspect = 1 ;
float x_dimension ;
int upceanflag = 0 ;
2010-05-30 21:25:24 +04:00
// Allocate memory for the rendered version
render = symbol - > rendered = malloc ( sizeof ( struct zint_render ) ) ;
render - > lines = NULL ;
2010-06-11 19:25:41 +04:00
render - > strings = NULL ;
2010-08-22 01:57:54 +04:00
render - > rings = NULL ;
render - > hexagons = NULL ;
2010-05-30 21:25:24 +04:00
2010-05-31 16:52:19 +04:00
locale = setlocale ( LC_ALL , " C " ) ;
2010-05-30 21:25:24 +04:00
row_height = 0 ;
textdone = 0 ;
textpos = 0.0 ;
2010-09-12 14:54:47 +04:00
main_symbol_width_x = symbol - > width ;
2010-05-30 21:25:24 +04:00
strcpy ( addon , " " ) ;
2010-09-12 14:54:47 +04:00
symbol_lead_in = 0 ;
2010-05-30 21:25:24 +04:00
addon_text_posn = 0.0 ;
2010-09-12 14:54:47 +04:00
addon_width_x = 0 ;
2010-05-30 21:25:24 +04:00
2010-06-11 21:42:51 +04:00
/*
* Determine if there will be any addon texts and text height
*/
latch = 0 ;
r = 0 ;
/* Isolate add-on text */
if ( is_extendable ( symbol - > symbology ) ) {
for ( i = 0 ; i < ustrlen ( symbol - > text ) ; i + + ) {
if ( latch = = 1 ) {
addon [ r ] = symbol - > text [ i ] ;
r + + ;
}
if ( symbol - > text [ i ] = = ' + ' ) {
latch = 1 ;
}
}
}
addon [ r ] = ' \0 ' ;
2010-06-19 14:41:49 +04:00
if ( ( ! symbol - > show_hrt ) | | ( ustrlen ( symbol - > text ) = = 0 ) ) {
hide_text = 1 ;
2010-09-12 14:54:47 +04:00
text_height = text_offset = 0.0 ;
2010-06-19 14:41:49 +04:00
} else {
2010-09-12 14:54:47 +04:00
text_height = 9.0 ;
text_offset = 2.0 ;
2010-05-30 21:25:24 +04:00
}
2010-06-11 21:42:51 +04:00
/*
* Calculate the width of the barcode , especially if there are any extra
* borders or white space to add .
*/
2010-05-30 21:25:24 +04:00
2010-09-12 14:54:47 +04:00
while ( ! ( module_is_set ( symbol , symbol - > rows - 1 , symbol_lead_in ) ) ) {
symbol_lead_in + + ;
2010-05-30 21:25:24 +04:00
}
2010-05-31 16:52:19 +04:00
/* Certain symbols need whitespace otherwise characters get chopped off the sides */
if ( ( ( ( symbol - > symbology = = BARCODE_EANX ) & & ( symbol - > rows = = 1 ) ) | | ( symbol - > symbology = = BARCODE_EANX_CC ) )
| | ( symbol - > symbology = = BARCODE_ISBNX ) ) {
switch ( ustrlen ( symbol - > text ) ) {
case 13 : /* EAN 13 */
case 16 :
case 19 :
if ( symbol - > whitespace_width = = 0 ) {
symbol - > whitespace_width = 10 ;
}
2010-09-12 14:54:47 +04:00
main_symbol_width_x = 96 + symbol_lead_in ;
upceanflag = 13 ;
2010-05-31 16:52:19 +04:00
break ;
2010-08-22 13:45:21 +04:00
case 2 :
2010-09-12 14:54:47 +04:00
main_symbol_width_x = 22 + symbol_lead_in ;
upceanflag = 2 ;
2010-08-22 13:45:21 +04:00
break ;
case 5 :
2010-09-12 14:54:47 +04:00
main_symbol_width_x = 49 + symbol_lead_in ;
upceanflag = 5 ;
2010-08-22 13:45:21 +04:00
break ;
2010-05-31 16:52:19 +04:00
default :
2010-09-12 14:54:47 +04:00
main_symbol_width_x = 68 + symbol_lead_in ;
upceanflag = 8 ;
2010-05-31 16:52:19 +04:00
}
2010-08-22 13:45:21 +04:00
switch ( ustrlen ( symbol - > text ) ) {
case 11 :
case 16 :
/* EAN-2 add-on */
2010-09-12 14:54:47 +04:00
addon_width_x = 31 ;
2010-08-22 13:45:21 +04:00
break ;
case 14 :
case 19 :
/* EAN-5 add-on */
2010-09-12 14:54:47 +04:00
addon_width_x = 58 ;
2010-08-22 13:45:21 +04:00
break ;
}
2010-05-31 16:52:19 +04:00
}
if ( ( ( symbol - > symbology = = BARCODE_UPCA ) & & ( symbol - > rows = = 1 ) ) | | ( symbol - > symbology = = BARCODE_UPCA_CC ) ) {
2010-09-12 14:54:47 +04:00
upceanflag = 12 ;
if ( symbol - > whitespace_width < 10 ) {
2010-05-31 16:52:19 +04:00
symbol - > whitespace_width = 10 ;
2010-09-12 14:54:47 +04:00
main_symbol_width_x = 96 + symbol_lead_in ;
2010-05-31 16:52:19 +04:00
}
2010-08-22 13:45:21 +04:00
switch ( ustrlen ( symbol - > text ) ) {
case 15 :
/* EAN-2 add-on */
2010-09-12 14:54:47 +04:00
addon_width_x = 31 ;
2010-08-22 13:45:21 +04:00
break ;
case 18 :
/* EAN-5 add-on */
2010-09-12 14:54:47 +04:00
addon_width_x = 58 ;
2010-08-22 13:45:21 +04:00
break ;
}
2010-05-31 16:52:19 +04:00
}
if ( ( ( symbol - > symbology = = BARCODE_UPCE ) & & ( symbol - > rows = = 1 ) ) | | ( symbol - > symbology = = BARCODE_UPCE_CC ) ) {
2010-09-12 14:54:47 +04:00
upceanflag = 6 ;
2010-05-31 16:52:19 +04:00
if ( symbol - > whitespace_width = = 0 ) {
symbol - > whitespace_width = 10 ;
2010-09-12 14:54:47 +04:00
main_symbol_width_x = 51 + symbol_lead_in ;
2010-05-31 16:52:19 +04:00
}
2010-08-22 13:45:21 +04:00
switch ( ustrlen ( symbol - > text ) ) {
case 11 :
/* EAN-2 add-on */
2010-09-12 14:54:47 +04:00
addon_width_x = 31 ;
2010-08-22 13:45:21 +04:00
break ;
case 14 :
/* EAN-5 add-on */
2010-09-12 14:54:47 +04:00
addon_width_x = 58 ;
2010-08-22 13:45:21 +04:00
break ;
}
2010-05-31 16:52:19 +04:00
}
2010-09-12 14:54:47 +04:00
total_symbol_width_x = main_symbol_width_x + addon_width_x ;
total_area_width_x = total_symbol_width_x + ( 2 * ( symbol - > border_width + symbol - > whitespace_width ) ) ;
2010-05-31 16:52:19 +04:00
2010-06-11 21:42:51 +04:00
xoffset = symbol - > border_width + symbol - > whitespace_width ;
2010-07-06 10:43:13 +04:00
yoffset = symbol - > border_width ;
2010-06-11 21:42:51 +04:00
2010-06-13 14:56:31 +04:00
// Determine if height should be overridden
2010-06-11 21:42:51 +04:00
large_bar_count = 0 ;
preset_height = 0.0 ;
for ( i = 0 ; i < symbol - > rows ; i + + ) {
preset_height + = symbol - > row_height [ i ] ;
if ( symbol - > row_height [ i ] = = 0 ) {
large_bar_count + + ;
2010-05-31 16:52:19 +04:00
}
}
2010-06-11 21:42:51 +04:00
if ( large_bar_count = = 0 ) {
2010-07-06 10:43:13 +04:00
required_aspect = width / height ;
2010-09-12 14:54:47 +04:00
symbol_aspect = ( total_symbol_width_x + ( 2 * xoffset ) ) / ( preset_height + ( 2 * yoffset ) + text_offset + text_height ) ;
2010-06-11 21:42:51 +04:00
symbol - > height = preset_height ;
2010-07-06 10:43:13 +04:00
if ( required_aspect > symbol_aspect ) {
2010-09-12 14:54:47 +04:00
/* the area is too wide */
scaler = height / ( preset_height + ( 2 * yoffset ) + text_offset + text_height ) ;
render - > width = symbol_aspect * height ;
render - > height = height ;
2010-07-06 10:43:13 +04:00
} else {
2010-09-12 14:54:47 +04:00
/* the area is too high */
scaler = width / ( total_symbol_width_x + ( 2 * xoffset ) ) ;
render - > width = width ;
render - > height = width / symbol_aspect ;
2010-07-06 10:43:13 +04:00
}
} else {
2010-09-12 14:54:47 +04:00
scaler = width / ( total_symbol_width_x + ( 2 * xoffset ) ) ;
symbol - > height = ( height / scaler ) - ( ( 2 * yoffset ) + text_offset + text_height ) ;
2010-07-06 10:43:13 +04:00
2010-09-12 14:54:47 +04:00
render - > width = width ;
render - > height = height ;
2010-05-31 16:52:19 +04:00
}
2010-07-06 10:43:13 +04:00
large_bar_height = ( symbol - > height - preset_height ) / large_bar_count ;
2010-05-30 21:25:24 +04:00
2010-05-31 16:52:19 +04:00
if ( ( ( symbol - > output_options & BARCODE_BOX ) ! = 0 ) | | ( ( symbol - > output_options & BARCODE_BIND ) ! = 0 ) ) {
2010-09-12 14:54:47 +04:00
default_text_posn = ( symbol - > height + text_offset + symbol - > border_width + symbol - > border_width ) * scaler ;
2010-05-31 16:52:19 +04:00
} else {
2010-09-12 14:54:47 +04:00
default_text_posn = ( symbol - > height + text_offset + symbol - > border_width ) * scaler ;
2010-05-31 16:52:19 +04:00
}
2010-05-30 21:25:24 +04:00
2010-09-12 14:54:47 +04:00
x_dimension = render - > width / total_area_width_x ;
x_dimension / = GL_CONST ;
/* Set minimum size of symbol */
/* Barcode must be at least 2mm high by 2mm across */
if ( render - > height < ( ( x_dimension * ( ( 2 * symbol - > border_width ) + text_offset + text_height ) ) + 2.0 ) * GL_CONST ) {
render - > height = ( ( x_dimension * ( ( 2 * symbol - > border_width ) + text_offset + text_height ) ) + 2.0 ) * GL_CONST ;
}
if ( render - > width < ( 2.0 * GL_CONST ) ) {
render - > width = ( 2.0 * GL_CONST ) ;
}
if ( symbol - > symbology = = BARCODE_CODABAR ) {
/* The minimum X-dimension of Codabar is 0.191mm. The minimum bar height is 5mm */
if ( x_dimension < 0.191 ) {
render - > width = 0.191 * GL_CONST * total_area_width_x ;
}
if ( render - > height < ( ( x_dimension * ( ( 2 * symbol - > border_width ) + text_offset + text_height ) ) + 5.0 ) * GL_CONST ) {
render - > height = ( ( x_dimension * ( ( 2 * symbol - > border_width ) + text_offset + text_height ) ) + 5.0 ) * GL_CONST ;
}
}
if ( symbol - > symbology = = BARCODE_CODE49 ) {
/* The minimum X-dimension of Code 49 is 0.191mm */
if ( x_dimension < 0.191 ) {
render - > width = 0.191 * GL_CONST * total_area_width_x ;
render - > height = render - > width / symbol_aspect ;
}
}
if ( upceanflag ! = 0 ) {
/* The X-dimension of UPC/EAN symbols is fixed at 0.330mm */
/* NOTE: This code will need adjustment before it correctly deals with composite symbols */
render - > width = 0.330 * GL_CONST * total_area_width_x ;
/* The height is also fixed */
switch ( upceanflag ) {
case 6 :
case 12 :
case 13 :
/* UPC-A, UPC-E and EAN-13 */
/* Height of bars should be 22.85mm */
render - > height = ( ( 0.330 * ( ( 2 * symbol - > border_width ) + text_offset + text_height ) ) + 22.85 ) * GL_CONST ;
break ;
case 8 :
/* EAN-8 */
/* Height of bars should be 18.23mm */
render - > height = ( ( 0.330 * ( ( 2 * symbol - > border_width ) + text_offset + text_height ) ) + 18.23 ) * GL_CONST ;
break ;
default :
/* EAN-2 and EAN-5 */
/* Height of bars should be 21.10mm */
render - > height = ( ( 0.330 * ( ( 2 * symbol - > border_width ) + text_offset + text_height ) ) + 21.10 ) * GL_CONST ;
}
}
if ( symbol - > symbology = = BARCODE_ONECODE ) {
/* The size of USPS Intelligent Mail barcode is fixed */
render - > width = 0.508 * GL_CONST * total_area_width_x ;
render - > height = 4.064 * GL_CONST ;
}
if ( ( ( symbol - > symbology = = BARCODE_AUSPOST ) | | ( symbol - > symbology = = BARCODE_AUSREPLY ) ) | |
( ( symbol - > symbology = = BARCODE_AUSROUTE ) | | ( symbol - > symbology = = BARCODE_AUSREDIRECT ) ) ) {
/* Australia Post use the same sizes as USPS */
render - > width = 0.508 * GL_CONST * total_area_width_x ;
render - > height = 4.064 * GL_CONST ;
}
if ( ( symbol - > symbology = = BARCODE_RM4SCC ) | | ( symbol - > symbology = = BARCODE_KIX ) ) {
/* Royal Mail and KIX Code uses 22 bars per inch */
render - > width = 0.577 * GL_CONST * total_area_width_x ;
render - > height = 5.22 * GL_CONST ;
}
2010-06-19 14:41:49 +04:00
if ( symbol - > symbology = = BARCODE_MAXICODE ) {
2010-08-22 01:57:54 +04:00
/* Maxicode is a fixed size */
2010-09-12 14:54:47 +04:00
scaler = GL_CONST ; /* Converts from millimeters to the scale used by glabels */
2010-08-22 02:01:33 +04:00
render - > width = 28.16 * scaler ;
render - > height = 26.86 * scaler ;
2010-08-22 01:57:54 +04:00
/* Central bullseye pattern */
2010-08-22 02:01:33 +04:00
ring = render_plot_create_ring ( 13.64 * scaler , 13.43 * scaler , 0.85 * scaler , 0.67 * scaler ) ;
2010-08-22 01:57:54 +04:00
render_plot_add_ring ( symbol , ring , & last_ring ) ;
2010-08-22 02:01:33 +04:00
ring = render_plot_create_ring ( 13.64 * scaler , 13.43 * scaler , 2.20 * scaler , 0.67 * scaler ) ;
2010-08-22 01:57:54 +04:00
render_plot_add_ring ( symbol , ring , & last_ring ) ;
2010-08-22 02:01:33 +04:00
ring = render_plot_create_ring ( 13.64 * scaler , 13.43 * scaler , 3.54 * scaler , 0.67 * scaler ) ;
2010-08-22 01:57:54 +04:00
render_plot_add_ring ( symbol , ring , & last_ring ) ;
/* Hexagons */
for ( r = 0 ; r < symbol - > rows ; r + + ) {
for ( i = 0 ; i < symbol - > width ; i + + ) {
if ( module_is_set ( symbol , r , i ) ) {
2010-09-14 14:36:00 +04:00
hexagon = render_plot_create_hexagon ( ( ( i * 0.88 ) + ( r & 1 ? 1.76 : 1.32 ) ) * scaler , ( ( r * 0.76 ) + 0.76 ) * scaler ) ;
2010-08-22 01:57:54 +04:00
render_plot_add_hexagon ( symbol , hexagon , & last_hexagon ) ;
}
}
}
2010-05-31 16:52:19 +04:00
} else {
2010-05-30 21:25:24 +04:00
/* everything else uses rectangles (or squares) */
/* Works from the bottom of the symbol up */
int addon_latch = 0 ;
for ( r = 0 ; r < symbol - > rows ; r + + ) {
this_row = r ;
if ( symbol - > row_height [ this_row ] = = 0 ) {
row_height = large_bar_height ;
} else {
row_height = symbol - > row_height [ this_row ] ;
}
row_posn = 0 ;
for ( i = 0 ; i < r ; i + + ) {
if ( symbol - > row_height [ i ] = = 0 ) {
row_posn + = large_bar_height ;
} else {
row_posn + = symbol - > row_height [ i ] ;
}
}
row_posn + = yoffset ;
i = 0 ;
if ( module_is_set ( symbol , this_row , 0 ) ) {
latch = 1 ;
} else {
latch = 0 ;
}
do {
block_width = 0 ;
do {
block_width + + ;
} while ( module_is_set ( symbol , this_row , i + block_width ) = = module_is_set ( symbol , this_row , i ) ) ;
2010-09-12 14:54:47 +04:00
if ( ( addon_latch = = 0 ) & & ( r = = ( symbol - > rows - 1 ) ) & & ( i > main_symbol_width_x ) ) {
2010-08-22 13:45:21 +04:00
addon_text_posn = row_posn * scaler ;
2010-05-30 21:25:24 +04:00
addon_latch = 1 ;
}
if ( latch = = 1 ) {
/* a bar */
if ( addon_latch = = 0 ) {
2010-09-12 14:54:47 +04:00
line = render_plot_create_line ( ( i + xoffset ) * scaler , ( row_posn ) * scaler , block_width * scaler , row_height * scaler ) ;
2010-05-30 21:25:24 +04:00
} else {
2010-09-12 14:54:47 +04:00
line = render_plot_create_line ( ( i + xoffset ) * scaler , ( row_posn + 10.0 ) * scaler , block_width * scaler , ( row_height - 5.0 ) * scaler ) ;
2010-05-30 21:25:24 +04:00
}
latch = 0 ;
2010-05-31 16:52:19 +04:00
render_plot_add_line ( symbol , line , & last_line ) ;
2010-05-30 21:25:24 +04:00
} else {
/* a space */
latch = 1 ;
}
i + = block_width ;
} while ( i < symbol - > width ) ;
}
}
/* That's done the actual data area, everything else is human-friendly */
/* Add the text */
2010-09-12 14:54:47 +04:00
xoffset - = symbol_lead_in ;
2010-05-31 16:52:19 +04:00
row_posn = ( row_posn + large_bar_height ) * scaler ;
2010-05-30 21:25:24 +04:00
if ( ! hide_text ) {
2010-09-12 14:54:47 +04:00
if ( upceanflag = = 8 ) {
/* guard bar extensions and text formatting for EAN-8 */
i = 0 ;
for ( line = symbol - > rendered - > lines ; line ! = NULL ; line = line - > next ) {
switch ( i ) {
case 0 :
case 1 :
case 10 :
case 11 :
case 20 :
case 21 :
line - > length + = ( 5.0 * scaler ) ;
break ;
}
i + + ;
}
2010-05-31 16:52:19 +04:00
2010-09-12 14:54:47 +04:00
for ( i = 0 ; i < 4 ; i + + ) {
textpart [ i ] = symbol - > text [ i ] ;
}
textpart [ 4 ] = ' \0 ' ;
textpos = 17 ;
textwidth = 4.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn , 11.0 * scaler , textwidth * scaler , & last_string ) ;
for ( i = 0 ; i < 4 ; i + + ) {
textpart [ i ] = symbol - > text [ i + 4 ] ;
}
textpart [ 4 ] = ' \0 ' ;
textpos = 50 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn , 11.0 * scaler , textwidth * scaler , & last_string ) ;
textdone = 1 ;
switch ( strlen ( addon ) ) {
case 2 :
textpos = xoffset + 86 ;
textwidth = 2.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) addon , textpos * scaler , addon_text_posn * scaler , 11.0 * scaler , textwidth * scaler , & last_string ) ;
2010-05-31 16:52:19 +04:00
break ;
2010-09-12 14:54:47 +04:00
case 5 :
textpos = xoffset + 100 ;
textwidth = 5.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) addon , textpos * scaler , addon_text_posn * scaler , 11.0 * scaler , textwidth * scaler , & last_string ) ;
break ;
}
2010-05-31 16:52:19 +04:00
2010-09-12 14:54:47 +04:00
}
if ( upceanflag = = 13 ) {
/* guard bar extensions and text formatting for EAN-13 */
i = 0 ;
for ( line = symbol - > rendered - > lines ; line ! = NULL ; line = line - > next ) {
switch ( i ) {
case 0 :
case 1 :
case 14 :
case 15 :
case 28 :
case 29 :
line - > length + = ( 5.0 * scaler ) ;
break ;
}
i + + ;
}
2010-05-31 16:52:19 +04:00
2010-09-12 14:54:47 +04:00
textpart [ 0 ] = symbol - > text [ 0 ] ;
textpart [ 1 ] = ' \0 ' ;
textpos = - 5 ; // 7
textwidth = 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn , 11.0 * scaler , textwidth * scaler , & last_string ) ;
for ( i = 0 ; i < 6 ; i + + ) {
textpart [ i ] = symbol - > text [ i + 1 ] ;
}
textpart [ 6 ] = ' \0 ' ;
textpos = 25 ;
textwidth = 6.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn , 11.0 * scaler , textwidth * scaler , & last_string ) ;
for ( i = 0 ; i < 6 ; i + + ) {
textpart [ i ] = symbol - > text [ i + 7 ] ;
}
textpart [ 6 ] = ' \0 ' ;
textpos = 72 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn , 11.0 * scaler , textwidth * scaler , & last_string ) ;
textdone = 1 ;
switch ( strlen ( addon ) ) {
case 2 :
textpos = xoffset + 114 ;
textwidth = 2.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) addon , textpos * scaler , addon_text_posn * scaler , 11.0 * scaler , textwidth * scaler , & last_string ) ;
break ;
case 5 :
textpos = xoffset + 128 ;
textwidth = 5.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) addon , textpos * scaler , addon_text_posn * scaler , 11.0 * scaler , textwidth * scaler , & last_string ) ;
2010-05-31 16:52:19 +04:00
break ;
}
}
2010-06-13 14:56:31 +04:00
2010-09-12 14:54:47 +04:00
if ( upceanflag = = 12 ) {
2010-06-13 14:56:31 +04:00
/* guard bar extensions and text formatting for UPCA */
2010-08-22 13:45:21 +04:00
i = 0 ;
for ( line = symbol - > rendered - > lines ; line ! = NULL ; line = line - > next ) {
switch ( i ) {
case 0 :
case 1 :
case 2 :
case 3 :
case 14 :
case 15 :
case 26 :
case 27 :
case 28 :
case 29 :
line - > length + = ( 5.0 * scaler ) ;
break ;
2010-06-13 14:56:31 +04:00
}
2010-08-22 13:45:21 +04:00
i + + ;
}
2010-06-13 14:56:31 +04:00
textpart [ 0 ] = symbol - > text [ 0 ] ;
textpart [ 1 ] = ' \0 ' ;
textpos = - 5 ;
2010-08-22 13:45:21 +04:00
textwidth = 6.2 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn + ( 2.0 * scaler ) , 8.0 * scaler , textwidth * scaler , & last_string ) ;
2010-06-13 14:56:31 +04:00
for ( i = 0 ; i < 5 ; i + + ) {
textpart [ i ] = symbol - > text [ i + 1 ] ;
}
textpart [ 5 ] = ' \0 ' ;
textpos = 27 ;
2010-08-22 13:45:21 +04:00
textwidth = 5.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn , 11.0 * scaler , textwidth * scaler , & last_string ) ;
2010-06-13 14:56:31 +04:00
for ( i = 0 ; i < 5 ; i + + ) {
textpart [ i ] = symbol - > text [ i + 6 ] ;
}
textpos = 68 ;
2010-08-22 13:45:21 +04:00
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn , 11.0 * scaler , textwidth * scaler , & last_string ) ;
2010-06-13 14:56:31 +04:00
textpart [ 0 ] = symbol - > text [ 11 ] ;
textpart [ 1 ] = ' \0 ' ;
textpos = 100 ;
2010-08-22 13:45:21 +04:00
textwidth = 6.2 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn + ( 2.0 * scaler ) , 8.0 * scaler , textwidth * scaler , & last_string ) ;
2010-06-13 14:56:31 +04:00
textdone = 1 ;
switch ( strlen ( addon ) ) {
case 2 :
textpos = xoffset + 116 ;
2010-08-22 13:45:21 +04:00
textwidth = 2.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) addon , textpos * scaler , addon_text_posn * scaler , 11.0 * scaler , textwidth * scaler , & last_string ) ;
2010-06-13 14:56:31 +04:00
break ;
case 5 :
textpos = xoffset + 130 ;
2010-08-22 13:45:21 +04:00
textwidth = 5.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) addon , textpos * scaler , addon_text_posn * scaler , 11.0 * scaler , textwidth * scaler , & last_string ) ;
break ;
}
}
2010-09-12 14:54:47 +04:00
if ( upceanflag = = 6 ) {
2010-08-22 13:45:21 +04:00
/* guard bar extensions and text formatting for UPCE */
i = 0 ;
for ( line = symbol - > rendered - > lines ; line ! = NULL ; line = line - > next ) {
switch ( i ) {
case 0 :
case 1 :
case 14 :
case 15 :
case 16 :
line - > length + = ( 5.0 * scaler ) ;
break ;
}
i + + ;
}
textpart [ 0 ] = symbol - > text [ 0 ] ;
textpart [ 1 ] = ' \0 ' ;
textpos = - 5 ;
textwidth = 6.2 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn + ( 2.0 * scaler ) , 8.0 * scaler , textwidth * scaler , & last_string ) ;
for ( i = 0 ; i < 6 ; i + + ) {
textpart [ i ] = symbol - > text [ i + 1 ] ;
}
textpart [ 6 ] = ' \0 ' ;
textpos = 24 ;
textwidth = 6.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn , 11.0 * scaler , textwidth * scaler , & last_string ) ;
textpart [ 0 ] = symbol - > text [ 7 ] ;
textpart [ 1 ] = ' \0 ' ;
textpos = 55 ;
textwidth = 6.2 ;
render_plot_add_string ( symbol , ( unsigned char * ) textpart , ( textpos + xoffset ) * scaler , default_text_posn + ( 2.0 * scaler ) , 8.0 * scaler , textwidth * scaler , & last_string ) ;
textdone = 1 ;
switch ( strlen ( addon ) ) {
case 2 :
textpos = xoffset + 70 ;
textwidth = 2.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) addon , textpos * scaler , addon_text_posn * scaler , 11.0 * scaler , textwidth * scaler , & last_string ) ;
break ;
case 5 :
textpos = xoffset + 84 ;
textwidth = 5.0 * 8.5 ;
render_plot_add_string ( symbol , ( unsigned char * ) addon , textpos * scaler , addon_text_posn * scaler , 11.0 * scaler , textwidth * scaler , & last_string ) ;
2010-06-13 14:56:31 +04:00
break ;
}
}
2010-05-31 16:52:19 +04:00
/* Put normal human readable text at the bottom (and centered) */
if ( textdone = = 0 ) {
// caculate start xoffset to center text
2010-07-19 12:31:52 +04:00
render_plot_add_string ( symbol , symbol - > text , ( ( symbol - > width / 2.0 ) + xoffset ) * scaler , default_text_posn , 9.0 * scaler , 0.0 , & last_string ) ;
2010-05-30 21:25:24 +04:00
}
}
2010-07-19 12:31:52 +04:00
switch ( symbol - > symbology ) {
case BARCODE_MAXICODE :
/* Do nothing! */
break ;
default :
if ( ( symbol - > output_options & BARCODE_BIND ) ! = 0 ) {
if ( ( symbol - > rows > 1 ) & & ( is_stackable ( symbol - > symbology ) = = 1 ) ) {
/* row binding */
for ( r = 1 ; r < symbol - > rows ; r + + ) {
2010-09-12 14:54:47 +04:00
line = render_plot_create_line ( xoffset * scaler , ( ( r * row_height ) + yoffset - 1 ) * scaler , symbol - > width * scaler , 2.0 * scaler ) ;
2010-07-19 12:31:52 +04:00
render_plot_add_line ( symbol , line , & last_line ) ;
}
}
}
if ( ( ( symbol - > output_options & BARCODE_BOX ) ! = 0 ) | | ( ( symbol - > output_options & BARCODE_BIND ) ! = 0 ) ) {
2010-09-12 14:54:47 +04:00
line = render_plot_create_line ( 0 , 0 , ( symbol - > width + xoffset + xoffset ) * scaler , symbol - > border_width * scaler ) ;
2010-07-19 12:31:52 +04:00
render_plot_add_line ( symbol , line , & last_line ) ;
2010-09-12 14:54:47 +04:00
line = render_plot_create_line ( 0 , ( symbol - > height + symbol - > border_width ) * scaler , ( symbol - > width + xoffset + xoffset ) * scaler , symbol - > border_width * scaler ) ;
2010-07-19 12:31:52 +04:00
render_plot_add_line ( symbol , line , & last_line ) ;
}
if ( ( symbol - > output_options & BARCODE_BOX ) ! = 0 ) {
/* side bars */
2010-09-12 14:54:47 +04:00
line = render_plot_create_line ( 0 , 0 , symbol - > border_width * scaler , ( symbol - > height + ( 2 * symbol - > border_width ) ) * scaler ) ;
2010-07-19 12:31:52 +04:00
render_plot_add_line ( symbol , line , & last_line ) ;
2010-09-12 14:54:47 +04:00
line = render_plot_create_line ( ( symbol - > width + xoffset + xoffset - symbol - > border_width ) * scaler , 0 , symbol - > border_width * scaler , ( symbol - > height + ( 2 * symbol - > border_width ) ) * scaler ) ;
2010-07-19 12:31:52 +04:00
render_plot_add_line ( symbol , line , & last_line ) ;
}
break ;
}
2010-05-30 21:25:24 +04:00
2010-05-31 16:52:19 +04:00
if ( locale )
setlocale ( LC_ALL , locale ) ;
return 1 ;
}
/*
* Create a new line with its memory allocated ready for adding to the
* rendered structure .
*
* This is much quicker than writing out each line manually ( in some cases ! )
*/
struct zint_render_line * render_plot_create_line ( float x , float y , float width , float length )
{
struct zint_render_line * line ;
line = malloc ( sizeof ( struct zint_render_line ) ) ;
line - > next = NULL ;
line - > x = x ;
line - > y = y ;
line - > width = width ;
line - > length = length ;
return line ;
}
/*
* Add the line to the current rendering and update the last line ' s
* next value .
*/
int render_plot_add_line ( struct zint_symbol * symbol , struct zint_render_line * line , struct zint_render_line * * last_line )
{
if ( * last_line )
( * last_line ) - > next = line ;
else
symbol - > rendered - > lines = line ; // first line
* last_line = line ;
return 1 ;
}
2010-08-22 01:57:54 +04:00
struct zint_render_ring * render_plot_create_ring ( float x , float y , float radius , float line_width )
{
struct zint_render_ring * ring ;
ring = malloc ( sizeof ( struct zint_render_ring ) ) ;
ring - > next = NULL ;
ring - > x = x ;
ring - > y = y ;
ring - > radius = radius ;
ring - > line_width = line_width ;
return ring ;
}
int render_plot_add_ring ( struct zint_symbol * symbol , struct zint_render_ring * ring , struct zint_render_ring * * last_ring )
{
if ( * last_ring )
( * last_ring ) - > next = ring ;
else
symbol - > rendered - > rings = ring ; // first ring
* last_ring = ring ;
return 1 ;
}
struct zint_render_hexagon * render_plot_create_hexagon ( float x , float y )
{
struct zint_render_hexagon * hexagon ;
hexagon = malloc ( sizeof ( struct zint_render_hexagon ) ) ;
hexagon - > next = NULL ;
hexagon - > x = x ;
hexagon - > y = y ;
return hexagon ;
}
int render_plot_add_hexagon ( struct zint_symbol * symbol , struct zint_render_hexagon * hexagon , struct zint_render_hexagon * * last_hexagon )
{
if ( * last_hexagon )
( * last_hexagon ) - > next = hexagon ;
else
symbol - > rendered - > hexagons = hexagon ; // first hexagon
* last_hexagon = hexagon ;
return 1 ;
}
2010-05-31 16:52:19 +04:00
/*
2010-06-11 19:25:41 +04:00
* Add a string structure to the symbol .
* Coordinates assumed to be from top - center .
2010-05-31 16:52:19 +04:00
*/
int render_plot_add_string ( struct zint_symbol * symbol ,
2010-06-19 14:41:49 +04:00
unsigned char * text , float x , float y , float fsize , float width ,
2010-06-11 19:25:41 +04:00
struct zint_render_string * * last_string )
2010-05-31 16:52:19 +04:00
{
2010-06-11 19:25:41 +04:00
struct zint_render_string * string ;
2010-06-13 14:56:31 +04:00
string = malloc ( sizeof ( struct zint_render_string ) ) ;
string - > next = NULL ;
string - > x = x ;
string - > y = y ;
string - > width = width ;
string - > fsize = fsize ;
2010-06-19 14:41:49 +04:00
string - > length = ustrlen ( text ) ;
string - > text = malloc ( sizeof ( unsigned char ) * ( ustrlen ( text ) + 1 ) ) ;
ustrcpy ( string - > text , text ) ;
2010-06-13 14:56:31 +04:00
if ( * last_string )
( * last_string ) - > next = string ;
else
symbol - > rendered - > strings = string ; // First character
* last_string = string ;
2010-05-31 16:52:19 +04:00
2010-05-30 21:25:24 +04:00
return 1 ;
}