2009-11-22 18:38:15 +03:00
/* library.c - external functions of libzint
libzint - the open source barcode library
2016-02-20 13:50:15 +03:00
Copyright ( C ) 2009 - 2016 Robin Stuart < rstuart114 @ gmail . com >
2009-11-22 18:38:15 +03:00
2013-05-16 21:26:38 +04:00
Redistribution and use in source and binary forms , with or without
modification , are permitted provided that the following conditions
are met :
1. Redistributions of source code must retain the above copyright
notice , this list of conditions and the following disclaimer .
2. Redistributions in binary form must reproduce the above copyright
notice , this list of conditions and the following disclaimer in the
documentation and / or other materials provided with the distribution .
3. Neither the name of the project nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission .
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS " AS IS " AND
ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT , INDIRECT , INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL
DAMAGES ( INCLUDING , BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES ; LOSS OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION )
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT
LIABILITY , OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE .
2016-02-20 13:50:15 +03:00
*/
2009-11-22 18:38:15 +03:00
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <errno.h>
# ifdef _MSC_VER
# include <malloc.h>
# endif
# include "common.h"
# include "gs1.h"
# define TECHNETIUM "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. $ / +%"
2016-02-20 13:50:15 +03:00
struct zint_symbol * ZBarcode_Create ( ) {
struct zint_symbol * symbol ;
int i ;
symbol = ( struct zint_symbol * ) malloc ( sizeof ( * symbol ) ) ;
if ( ! symbol ) return NULL ;
memset ( symbol , 0 , sizeof ( * symbol ) ) ;
symbol - > symbology = BARCODE_CODE128 ;
symbol - > height = 0 ;
symbol - > whitespace_width = 0 ;
symbol - > border_width = 0 ;
symbol - > output_options = 0 ;
symbol - > rows = 0 ;
symbol - > width = 0 ;
strcpy ( symbol - > fgcolour , " 000000 " ) ;
strcpy ( symbol - > bgcolour , " ffffff " ) ;
strcpy ( symbol - > outfile , " " ) ;
symbol - > scale = 1.0 ;
symbol - > option_1 = - 1 ;
symbol - > option_2 = 0 ;
symbol - > option_3 = 928 ; // PDF_MAX
symbol - > show_hrt = 1 ; // Show human readable text
symbol - > input_mode = DATA_MODE ;
strcpy ( symbol - > primary , " " ) ;
memset ( & ( symbol - > encoded_data [ 0 ] [ 0 ] ) , 0 , sizeof ( symbol - > encoded_data ) ) ;
for ( i = 0 ; i < 178 ; i + + ) {
symbol - > row_height [ i ] = 0 ;
}
symbol - > bitmap = NULL ;
symbol - > bitmap_width = 0 ;
symbol - > bitmap_height = 0 ;
2016-08-16 14:43:41 +03:00
symbol - > eci = 3 ;
2016-02-20 13:50:15 +03:00
return symbol ;
2009-11-22 18:38:15 +03:00
}
2016-02-20 13:50:15 +03:00
void ZBarcode_Clear ( struct zint_symbol * symbol ) {
int i , j ;
for ( i = 0 ; i < symbol - > rows ; i + + ) {
for ( j = 0 ; j < symbol - > width ; j + + ) {
unset_module ( symbol , i , j ) ;
}
}
symbol - > rows = 0 ;
symbol - > width = 0 ;
memset ( symbol - > text , 0 , 128 ) ;
symbol - > errtxt [ 0 ] = ' \0 ' ;
if ( symbol - > bitmap ! = NULL ) {
free ( symbol - > bitmap ) ;
symbol - > bitmap = NULL ;
}
symbol - > bitmap_width = 0 ;
symbol - > bitmap_height = 0 ;
2009-12-02 12:09:45 +03:00
}
2009-11-22 18:38:15 +03:00
2016-02-20 13:50:15 +03:00
void ZBarcode_Delete ( struct zint_symbol * symbol ) {
if ( symbol - > bitmap ! = NULL )
free ( symbol - > bitmap ) ;
// If there is a rendered version, ensure its memory is released
if ( symbol - > rendered ! = NULL ) {
struct zint_render_line * line , * l ;
struct zint_render_string * string , * s ;
2016-09-03 20:45:09 +03:00
struct zint_render_ring * ring , * r ;
struct zint_render_hexagon * hexagon , * h ;
2016-02-20 13:50:15 +03:00
// Free lines
line = symbol - > rendered - > lines ;
while ( line ) {
l = line ;
line = line - > next ;
free ( l ) ;
}
// Free Strings
string = symbol - > rendered - > strings ;
while ( string ) {
s = string ;
string = string - > next ;
free ( s - > text ) ;
free ( s ) ;
}
2016-09-06 00:06:50 +03:00
2016-09-03 20:45:09 +03:00
// Free Rings
ring = symbol - > rendered - > rings ;
while ( ring ) {
r = ring ;
ring = ring - > next ;
free ( r ) ;
}
2016-09-06 00:06:50 +03:00
2016-09-03 20:45:09 +03:00
// Free Hexagons
hexagon = symbol - > rendered - > hexagons ;
while ( hexagon ) {
h = hexagon ;
hexagon = hexagon - > next ;
free ( h ) ;
}
2016-02-20 13:50:15 +03:00
// Free Render
free ( symbol - > rendered ) ;
}
free ( symbol ) ;
2009-11-22 18:38:15 +03:00
}
2016-08-16 14:43:41 +03:00
extern int get_best_eci ( unsigned char source [ ] , int length ) ; /* Calculate suitable ECI mode */
extern int utf_to_eci ( int eci , const unsigned char source [ ] , unsigned char dest [ ] , int * length ) ; /* Convert Unicode to other encodings */
2009-11-22 18:38:15 +03:00
extern int eanx ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* EAN system barcodes */
2016-09-06 00:06:50 +03:00
extern int c39 ( struct zint_symbol * symbol , unsigned char source [ ] , const size_t length ) ; /* Code 3 from 9 (or Code 39) */
2009-11-22 18:38:15 +03:00
extern int pharmazentral ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Pharmazentral Nummer (PZN) */
extern int ec39 ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Extended Code 3 from 9 (or Code 39+) */
extern int codabar ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Codabar - a simple substitution cipher */
extern int matrix_two_of_five ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Code 2 of 5 Standard (& Matrix) */
extern int industrial_two_of_five ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Code 2 of 5 Industrial */
extern int iata_two_of_five ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Code 2 of 5 IATA */
2016-09-06 00:06:50 +03:00
extern int interleaved_two_of_five ( struct zint_symbol * symbol , const unsigned char source [ ] , size_t length ) ; /* Code 2 of 5 Interleaved */
2009-11-22 18:38:15 +03:00
extern int logic_two_of_five ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Code 2 of 5 Data Logic */
extern int itf14 ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* ITF-14 */
extern int dpleit ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Deutsche Post Leitcode */
extern int dpident ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Deutsche Post Identcode */
extern int c93 ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Code 93 - a re-working of Code 39+, generates 2 check digits */
extern int code_128 ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Code 128 and NVE-18 */
2016-09-06 00:06:50 +03:00
extern int ean_128 ( struct zint_symbol * symbol , unsigned char source [ ] , const size_t length ) ; /* EAN-128 (GS1-128) */
2009-11-22 18:38:15 +03:00
extern int code_11 ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Code 11 */
extern int msi_handle ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* MSI Plessey */
extern int telepen ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Telepen ASCII */
extern int telepen_num ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Telepen Numeric */
extern int plessey ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Plessey Code */
extern int pharma_one ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Pharmacode One Track */
extern int flattermarken ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Flattermarken */
extern int fim ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Facing Identification Mark */
extern int pharma_two ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Pharmacode Two Track */
extern int post_plot ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Postnet */
extern int planet_plot ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* PLANET */
extern int imail ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Intelligent Mail (aka USPS OneCode) */
extern int royal_plot ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* RM4SCC */
extern int australia_post ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Australia Post 4-state */
extern int code16k ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Code 16k */
extern int pdf417enc ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* PDF417 */
2016-09-06 00:06:50 +03:00
extern int dmatrix ( struct zint_symbol * symbol , const unsigned char source [ ] , int length ) ; /* Data Matrix (IEC16022) */
2016-02-29 22:42:32 +03:00
extern int qr_code ( struct zint_symbol * symbol , const unsigned char source [ ] , int length ) ; /* QR Code */
2010-01-28 20:55:59 +03:00
extern int micro_pdf417 ( struct zint_symbol * symbol , unsigned char chaine [ ] , int length ) ; /* Micro PDF417 */
2009-11-22 18:38:15 +03:00
extern int maxicode ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Maxicode */
extern int rss14 ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* RSS-14 */
extern int rsslimited ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* RSS Limited */
extern int rssexpanded ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* RSS Expanded */
extern int composite ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Composite Symbology */
extern int kix_code ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* TNT KIX Code */
extern int aztec ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Aztec Code */
extern int code32 ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Italian Pharmacode */
extern int daft_code ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* DAFT Code */
extern int ean_14 ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* EAN-14 */
extern int nve_18 ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* NVE-18 */
2016-02-29 22:42:32 +03:00
extern int microqr ( struct zint_symbol * symbol , const unsigned char source [ ] , int length ) ; /* Micro QR Code */
2009-11-22 18:38:15 +03:00
extern int aztec_runes ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Aztec Runes */
extern int korea_post ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Korea Post */
extern int japan_post ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Japanese Post */
2016-02-29 22:42:32 +03:00
extern int code_49 ( struct zint_symbol * symbol , unsigned char source [ ] , const int length ) ; /* Code 49 */
2009-11-22 18:38:15 +03:00
extern int channel_code ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Channel Code */
extern int code_one ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Code One */
2016-02-29 22:42:32 +03:00
extern int grid_matrix ( struct zint_symbol * symbol , const unsigned char source [ ] , int length ) ; /* Grid Matrix */
2016-04-07 19:13:43 +03:00
extern int han_xin ( struct zint_symbol * symbol , const unsigned char source [ ] , int length ) ; /* Han Xin */
2016-07-26 00:52:29 +03:00
extern int dotcode ( struct zint_symbol * symbol , const unsigned char source [ ] , int length ) ; /* DotCode */
2016-09-10 18:33:08 +03:00
extern int codablock ( struct zint_symbol * symbol , unsigned char source [ ] , int length ) ; /* Codablock */
2009-11-22 18:38:15 +03:00
2016-07-26 00:52:29 +03:00
extern int plot_raster ( struct zint_symbol * symbol , int rotate_angle , int file_type ) ; /* Plot to PNG/BMP/PCX */
2016-07-20 01:02:39 +03:00
extern int render_plot ( struct zint_symbol * symbol , float width , float height ) ; /* Plot to gLabels */
extern int ps_plot ( struct zint_symbol * symbol ) ; /* Plot to EPS */
extern int svg_plot ( struct zint_symbol * symbol ) ; /* Plot to SVG */
2009-11-22 18:38:15 +03:00
2016-02-20 13:50:15 +03:00
void error_tag ( char error_string [ ] , int error_number ) {
char error_buffer [ 100 ] ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
if ( error_number ! = 0 ) {
strcpy ( error_buffer , error_string ) ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
if ( error_number > 4 ) {
strcpy ( error_string , " error: " ) ;
} else {
strcpy ( error_string , " warning: " ) ;
}
2012-12-31 17:41:59 +04:00
2016-03-03 00:12:38 +03:00
strcat ( error_string , error_buffer ) ;
2016-02-20 13:50:15 +03:00
}
2009-11-22 18:38:15 +03:00
}
2016-02-20 13:50:15 +03:00
/* Output a hexadecimal representation of the rendered symbol */
int dump_plot ( struct zint_symbol * symbol ) {
FILE * f ;
int i , r ;
int byt ;
char hex [ ] = { ' 0 ' , ' 1 ' , ' 2 ' , ' 3 ' , ' 4 ' , ' 5 ' , ' 6 ' , ' 7 ' , ' 8 ' ,
' 9 ' , ' A ' , ' B ' , ' C ' , ' D ' , ' E ' , ' F ' } ;
int space = 0 ;
2016-09-06 00:06:50 +03:00
2016-02-20 13:50:15 +03:00
if ( symbol - > output_options & BARCODE_STDOUT ) {
f = stdout ;
} else {
f = fopen ( symbol - > outfile , " w " ) ;
if ( ! f ) {
strcpy ( symbol - > errtxt , " Could not open output file " ) ;
return ZINT_ERROR_FILE_ACCESS ;
}
}
for ( r = 0 ; r < symbol - > rows ; r + + ) {
byt = 0 ;
for ( i = 0 ; i < symbol - > width ; i + + ) {
byt = byt < < 1 ;
if ( module_is_set ( symbol , r , i ) ) {
byt + = 1 ;
}
if ( ( ( i + 1 ) % 4 ) = = 0 ) {
fputc ( hex [ byt ] , f ) ;
space + + ;
2016-02-19 02:23:31 +03:00
byt = 0 ;
2016-02-20 13:50:15 +03:00
}
if ( space = = 2 ) {
fputc ( ' ' , f ) ;
2016-02-19 02:23:31 +03:00
space = 0 ;
2016-02-20 13:50:15 +03:00
}
}
2010-09-12 17:52:44 +04:00
2016-02-20 13:50:15 +03:00
if ( ( symbol - > width % 4 ) ! = 0 ) {
byt = byt < < ( 4 - ( symbol - > width % 4 ) ) ;
fputc ( hex [ byt ] , f ) ;
}
fputs ( " \n " , f ) ;
space = 0 ;
}
2010-09-12 17:52:44 +04:00
2016-02-20 13:50:15 +03:00
if ( symbol - > output_options & BARCODE_STDOUT ) {
fflush ( f ) ;
} else {
fclose ( f ) ;
}
return 0 ;
2010-09-12 17:52:44 +04:00
}
2016-02-20 13:50:15 +03:00
/* Process health industry bar code data */
2016-09-06 00:06:50 +03:00
static int hibc ( struct zint_symbol * symbol , unsigned char source [ ] , size_t length ) {
2016-02-20 13:50:15 +03:00
int counter , error_number , i ;
char to_process [ 40 ] , temp [ 2 ] , check_digit ;
if ( length > 36 ) {
strcpy ( symbol - > errtxt , " Data too long for HIBC LIC " ) ;
return ZINT_ERROR_TOO_LONG ;
}
to_upper ( source ) ;
error_number = is_sane ( TECHNETIUM , source , length ) ;
if ( error_number = = ZINT_ERROR_INVALID_DATA ) {
strcpy ( symbol - > errtxt , " Invalid characters in data " ) ;
return error_number ;
}
strcpy ( to_process , " + " ) ;
counter = 41 ;
for ( i = 0 ; i < length ; i + + ) {
counter + = posn ( TECHNETIUM , source [ i ] ) ;
}
counter = counter % 43 ;
if ( counter < 10 ) {
check_digit = itoc ( counter ) ;
} else {
if ( counter < 36 ) {
check_digit = ( counter - 10 ) + ' A ' ;
} else {
switch ( counter ) {
case 36 : check_digit = ' - ' ;
break ;
case 37 : check_digit = ' . ' ;
break ;
case 38 : check_digit = ' ' ;
break ;
case 39 : check_digit = ' $ ' ;
break ;
case 40 : check_digit = ' / ' ;
break ;
case 41 : check_digit = ' + ' ;
break ;
case 42 : check_digit = ' % ' ;
break ;
default : check_digit = ' ' ;
break ; /* Keep compiler happy */
}
}
}
temp [ 0 ] = check_digit ;
temp [ 1 ] = ' \0 ' ;
2016-03-03 00:12:38 +03:00
strcat ( to_process , ( char * ) source ) ;
strcat ( to_process , temp ) ;
2016-02-20 13:50:15 +03:00
length = strlen ( to_process ) ;
switch ( symbol - > symbology ) {
case BARCODE_HIBC_128 :
error_number = code_128 ( symbol , ( unsigned char * ) to_process , length ) ;
ustrcpy ( symbol - > text , ( unsigned char * ) " * " ) ;
2016-03-03 00:12:38 +03:00
strcat ( ( char * ) symbol - > text , to_process ) ;
strcat ( ( char * ) symbol - > text , " * " ) ;
2016-02-20 13:50:15 +03:00
break ;
case BARCODE_HIBC_39 :
symbol - > option_2 = 0 ;
error_number = c39 ( symbol , ( unsigned char * ) to_process , length ) ;
ustrcpy ( symbol - > text , ( unsigned char * ) " * " ) ;
2016-03-03 00:12:38 +03:00
strcat ( ( char * ) symbol - > text , to_process ) ;
strcat ( ( char * ) symbol - > text , " * " ) ;
2016-02-20 13:50:15 +03:00
break ;
case BARCODE_HIBC_DM :
error_number = dmatrix ( symbol , ( unsigned char * ) to_process , length ) ;
break ;
case BARCODE_HIBC_QR :
error_number = qr_code ( symbol , ( unsigned char * ) to_process , length ) ;
break ;
case BARCODE_HIBC_PDF :
error_number = pdf417enc ( symbol , ( unsigned char * ) to_process , length ) ;
break ;
case BARCODE_HIBC_MICPDF :
error_number = micro_pdf417 ( symbol , ( unsigned char * ) to_process , length ) ;
break ;
case BARCODE_HIBC_AZTEC :
error_number = aztec ( symbol , ( unsigned char * ) to_process , length ) ;
break ;
2016-08-24 21:37:49 +03:00
case BARCODE_HIBC_BLOCKF :
error_number = codablock ( symbol , ( unsigned char * ) to_process , length ) ;
break ;
2016-02-20 13:50:15 +03:00
}
return error_number ;
2009-11-22 18:38:15 +03:00
}
2016-02-29 22:42:32 +03:00
static int gs1_compliant ( const int symbology ) {
2016-02-20 13:50:15 +03:00
/* Returns 1 if symbology supports GS1 data */
int result = 0 ;
switch ( symbology ) {
case BARCODE_EAN128 :
case BARCODE_RSS_EXP :
case BARCODE_RSS_EXPSTACK :
case BARCODE_EANX_CC :
case BARCODE_EAN128_CC :
case BARCODE_RSS14_CC :
case BARCODE_RSS_LTD_CC :
case BARCODE_RSS_EXP_CC :
case BARCODE_UPCA_CC :
case BARCODE_UPCE_CC :
case BARCODE_RSS14STACK_CC :
case BARCODE_RSS14_OMNI_CC :
case BARCODE_RSS_EXPSTACK_CC :
case BARCODE_CODE16K :
case BARCODE_AZTEC :
case BARCODE_DATAMATRIX :
case BARCODE_CODEONE :
case BARCODE_CODE49 :
case BARCODE_QRCODE :
2016-07-26 00:52:29 +03:00
case BARCODE_DOTCODE :
2016-08-24 21:37:49 +03:00
case BARCODE_CODABLOCK :
2016-02-20 13:50:15 +03:00
result = 1 ;
break ;
}
return result ;
2009-11-22 18:38:15 +03:00
}
2016-08-12 21:30:46 +03:00
static int is_matrix ( const int symbology ) {
/* Returns 1 if symbology is a matrix design */
2016-09-06 00:06:50 +03:00
2016-08-12 21:30:46 +03:00
int result = 0 ;
2016-09-06 00:06:50 +03:00
2016-08-12 21:30:46 +03:00
switch ( symbology ) {
case BARCODE_QRCODE :
case BARCODE_DATAMATRIX :
case BARCODE_MICROQR :
case BARCODE_HIBC_DM :
case BARCODE_AZTEC :
case BARCODE_HIBC_QR :
case BARCODE_HIBC_AZTEC :
case BARCODE_AZRUNE :
case BARCODE_CODEONE :
case BARCODE_GRIDMATRIX :
case BARCODE_HANXIN :
case BARCODE_DOTCODE :
result = 1 ;
break ;
}
2016-09-06 00:06:50 +03:00
2016-08-12 21:30:46 +03:00
return result ;
}
2016-08-16 14:43:41 +03:00
static int supports_eci ( const int symbology ) {
/* Returns 1 if symbology can encode the ECI character */
2016-09-06 00:06:50 +03:00
2016-08-16 14:43:41 +03:00
int result = 0 ;
2016-09-06 00:06:50 +03:00
2016-08-16 14:43:41 +03:00
switch ( symbology ) {
case BARCODE_AZTEC :
case BARCODE_DATAMATRIX :
case BARCODE_MAXICODE :
case BARCODE_MICROPDF417 :
case BARCODE_PDF417 :
case BARCODE_PDF417TRUNC :
case BARCODE_QRCODE :
case BARCODE_DOTCODE :
case BARCODE_GRIDMATRIX :
case BARCODE_HANXIN :
result = 1 ;
break ;
}
2016-09-06 00:06:50 +03:00
2016-08-16 14:43:41 +03:00
return result ;
}
2016-02-20 13:50:15 +03:00
int ZBarcode_ValidID ( int symbol_id ) {
/* Checks whether a symbology is supported */
int result = 0 ;
switch ( symbol_id ) {
case BARCODE_CODE11 :
case BARCODE_C25MATRIX :
case BARCODE_C25INTER :
case BARCODE_C25IATA :
case BARCODE_C25LOGIC :
case BARCODE_C25IND :
case BARCODE_CODE39 :
case BARCODE_EXCODE39 :
case BARCODE_EANX :
case BARCODE_EAN128 :
case BARCODE_CODABAR :
case BARCODE_CODE128 :
case BARCODE_DPLEIT :
case BARCODE_DPIDENT :
case BARCODE_CODE16K :
case BARCODE_CODE49 :
case BARCODE_CODE93 :
case BARCODE_FLAT :
case BARCODE_RSS14 :
case BARCODE_RSS_LTD :
case BARCODE_RSS_EXP :
case BARCODE_TELEPEN :
case BARCODE_UPCA :
case BARCODE_UPCE :
case BARCODE_POSTNET :
case BARCODE_MSI_PLESSEY :
case BARCODE_FIM :
case BARCODE_LOGMARS :
case BARCODE_PHARMA :
case BARCODE_PZN :
case BARCODE_PHARMA_TWO :
case BARCODE_PDF417 :
case BARCODE_PDF417TRUNC :
case BARCODE_MAXICODE :
case BARCODE_QRCODE :
case BARCODE_CODE128B :
case BARCODE_AUSPOST :
case BARCODE_AUSREPLY :
case BARCODE_AUSROUTE :
case BARCODE_AUSREDIRECT :
case BARCODE_ISBNX :
case BARCODE_RM4SCC :
case BARCODE_DATAMATRIX :
case BARCODE_EAN14 :
case BARCODE_NVE18 :
case BARCODE_JAPANPOST :
case BARCODE_KOREAPOST :
case BARCODE_RSS14STACK :
case BARCODE_RSS14STACK_OMNI :
case BARCODE_RSS_EXPSTACK :
case BARCODE_PLANET :
case BARCODE_MICROPDF417 :
case BARCODE_ONECODE :
case BARCODE_PLESSEY :
case BARCODE_TELEPEN_NUM :
case BARCODE_ITF14 :
case BARCODE_KIX :
case BARCODE_AZTEC :
case BARCODE_DAFT :
case BARCODE_MICROQR :
case BARCODE_HIBC_128 :
case BARCODE_HIBC_39 :
case BARCODE_HIBC_DM :
case BARCODE_HIBC_QR :
case BARCODE_HIBC_PDF :
case BARCODE_HIBC_MICPDF :
case BARCODE_HIBC_AZTEC :
2016-08-24 21:37:49 +03:00
case BARCODE_HIBC_BLOCKF :
2016-02-20 13:50:15 +03:00
case BARCODE_AZRUNE :
case BARCODE_CODE32 :
case BARCODE_EANX_CC :
case BARCODE_EAN128_CC :
case BARCODE_RSS14_CC :
case BARCODE_RSS_LTD_CC :
case BARCODE_RSS_EXP_CC :
case BARCODE_UPCA_CC :
case BARCODE_UPCE_CC :
case BARCODE_RSS14STACK_CC :
case BARCODE_RSS14_OMNI_CC :
case BARCODE_RSS_EXPSTACK_CC :
case BARCODE_CHANNEL :
case BARCODE_CODEONE :
case BARCODE_GRIDMATRIX :
2016-04-07 19:13:43 +03:00
case BARCODE_HANXIN :
2016-07-26 00:52:29 +03:00
case BARCODE_DOTCODE :
2016-08-24 21:37:49 +03:00
case BARCODE_CODABLOCK :
2016-02-20 13:50:15 +03:00
result = 1 ;
break ;
}
return result ;
2009-11-22 18:38:15 +03:00
}
2016-02-29 22:42:32 +03:00
static int extended_charset ( struct zint_symbol * symbol , const unsigned char * source , const int length ) {
2016-02-20 13:50:15 +03:00
int error_number = 0 ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
/* These are the "elite" standards which can support multiple character sets */
switch ( symbol - > symbology ) {
case BARCODE_QRCODE : error_number = qr_code ( symbol , source , length ) ;
break ;
case BARCODE_MICROQR : error_number = microqr ( symbol , source , length ) ;
break ;
case BARCODE_GRIDMATRIX : error_number = grid_matrix ( symbol , source , length ) ;
break ;
2016-04-07 19:13:43 +03:00
case BARCODE_HANXIN : error_number = han_xin ( symbol , source , length ) ;
break ;
2016-02-20 13:50:15 +03:00
}
2009-11-22 18:38:15 +03:00
2016-02-20 13:50:15 +03:00
return error_number ;
2009-11-22 18:38:15 +03:00
}
2016-09-06 00:06:50 +03:00
static int reduced_charset ( struct zint_symbol * symbol , const unsigned char * source , int in_length ) {
2016-02-20 13:50:15 +03:00
/* These are the "norm" standards which only support Latin-1 at most */
int error_number = 0 ;
2009-11-22 18:38:15 +03:00
# ifndef _MSC_VER
2016-09-06 00:06:50 +03:00
unsigned char preprocessed [ in_length + 1 ] ;
2009-11-22 18:38:15 +03:00
# else
2016-09-06 00:06:50 +03:00
unsigned char * preprocessed = ( unsigned char * ) _alloca ( in_length + 1 ) ;
2009-11-22 18:38:15 +03:00
# endif
2016-02-20 13:50:15 +03:00
if ( symbol - > symbology = = BARCODE_CODE16K ) {
symbol - > whitespace_width = 16 ;
symbol - > border_width = 2 ;
2016-08-26 17:13:40 +03:00
if ( ! ( symbol - > output_options & BARCODE_BIND ) ) {
symbol - > output_options + = BARCODE_BIND ;
}
2016-02-20 13:50:15 +03:00
}
2016-09-06 00:06:50 +03:00
else
if ( symbol - > symbology = = BARCODE_ITF14 ) {
2016-02-20 13:50:15 +03:00
symbol - > whitespace_width = 20 ;
symbol - > border_width = 8 ;
2016-08-26 17:13:40 +03:00
if ( ! ( symbol - > output_options & BARCODE_BOX ) ) {
symbol - > output_options + = BARCODE_BOX ;
}
2016-02-20 13:50:15 +03:00
}
switch ( symbol - > input_mode ) {
case DATA_MODE :
case GS1_MODE :
2016-09-06 00:06:50 +03:00
memcpy ( preprocessed , source , in_length ) ;
preprocessed [ in_length ] = ' \0 ' ;
2016-02-20 13:50:15 +03:00
break ;
case UNICODE_MODE :
2016-09-06 00:06:50 +03:00
error_number = utf_to_eci ( symbol - > eci , source , preprocessed , & in_length ) ;
2016-02-20 13:50:15 +03:00
if ( error_number ! = 0 ) {
2016-08-16 14:43:41 +03:00
strcpy ( symbol - > errtxt , " Invalid characters in input data " ) ;
2016-02-20 13:50:15 +03:00
return error_number ;
}
break ;
}
switch ( symbol - > symbology ) {
2016-09-06 00:06:50 +03:00
case BARCODE_C25MATRIX : error_number = matrix_two_of_five ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_C25IND : error_number = industrial_two_of_five ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_C25INTER : error_number = interleaved_two_of_five ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_C25IATA : error_number = iata_two_of_five ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_C25LOGIC : error_number = logic_two_of_five ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_DPLEIT : error_number = dpleit ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_DPIDENT : error_number = dpident ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_UPCA : error_number = eanx ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_UPCE : error_number = eanx ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_EANX : error_number = eanx ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_EAN128 : error_number = ean_128 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODE39 : error_number = c39 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_PZN : error_number = pharmazentral ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_EXCODE39 : error_number = ec39 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODABAR : error_number = codabar ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODE93 : error_number = c93 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_LOGMARS : error_number = c39 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODE128 : error_number = code_128 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODE128B : error_number = code_128 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_NVE18 : error_number = nve_18 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODE11 : error_number = code_11 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_MSI_PLESSEY : error_number = msi_handle ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_TELEPEN : error_number = telepen ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_TELEPEN_NUM : error_number = telepen_num ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_PHARMA : error_number = pharma_one ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_PLESSEY : error_number = plessey ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_ITF14 : error_number = itf14 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_FLAT : error_number = flattermarken ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_FIM : error_number = fim ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_POSTNET : error_number = post_plot ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_PLANET : error_number = planet_plot ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RM4SCC : error_number = royal_plot ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_AUSPOST : error_number = australia_post ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_AUSREPLY : error_number = australia_post ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_AUSROUTE : error_number = australia_post ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_AUSREDIRECT : error_number = australia_post ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODE16K : error_number = code16k ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_PHARMA_TWO : error_number = pharma_two ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_ONECODE : error_number = imail ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_ISBNX : error_number = eanx ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS14 : error_number = rss14 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS14STACK : error_number = rss14 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS14STACK_OMNI : error_number = rss14 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS_LTD : error_number = rsslimited ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS_EXP : error_number = rssexpanded ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS_EXPSTACK : error_number = rssexpanded ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_EANX_CC : error_number = composite ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_EAN128_CC : error_number = composite ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS14_CC : error_number = composite ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS_LTD_CC : error_number = composite ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS_EXP_CC : error_number = composite ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_UPCA_CC : error_number = composite ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_UPCE_CC : error_number = composite ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS14STACK_CC : error_number = composite ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS14_OMNI_CC : error_number = composite ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_RSS_EXPSTACK_CC : error_number = composite ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_KIX : error_number = kix_code ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODE32 : error_number = code32 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_DAFT : error_number = daft_code ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_EAN14 : error_number = ean_14 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_AZRUNE : error_number = aztec_runes ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_KOREAPOST : error_number = korea_post ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_HIBC_128 : error_number = hibc ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_HIBC_39 : error_number = hibc ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_HIBC_DM : error_number = hibc ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_HIBC_QR : error_number = hibc ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_HIBC_PDF : error_number = hibc ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_HIBC_MICPDF : error_number = hibc ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_HIBC_AZTEC : error_number = hibc ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_HIBC_BLOCKF : error_number = hibc ( symbol , preprocessed , in_length ) ;
2016-08-24 21:37:49 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_JAPANPOST : error_number = japan_post ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODE49 : error_number = code_49 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CHANNEL : error_number = channel_code ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODEONE : error_number = code_one ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_DATAMATRIX : error_number = dmatrix ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_PDF417 : error_number = pdf417enc ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_PDF417TRUNC : error_number = pdf417enc ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_MICROPDF417 : error_number = micro_pdf417 ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_MAXICODE : error_number = maxicode ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_AZTEC : error_number = aztec ( symbol , preprocessed , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_DOTCODE : error_number = dotcode ( symbol , preprocessed , in_length ) ;
2016-07-26 00:52:29 +03:00
break ;
2016-09-06 00:06:50 +03:00
case BARCODE_CODABLOCK : error_number = codablock ( symbol , preprocessed , in_length ) ;
2016-08-24 21:37:49 +03:00
break ;
2016-02-20 13:50:15 +03:00
}
return error_number ;
2009-11-22 18:38:15 +03:00
}
2016-09-06 00:06:50 +03:00
int ZBarcode_Encode ( struct zint_symbol * symbol , unsigned char * source , int in_length ) {
2016-02-20 13:50:15 +03:00
int error_number , error_buffer , i ;
2015-08-18 14:50:42 +03:00
# ifdef _MSC_VER
2016-02-20 13:50:15 +03:00
unsigned char * local_source ;
2015-08-18 14:50:42 +03:00
# endif
2016-02-20 13:50:15 +03:00
error_number = 0 ;
2016-09-06 00:06:50 +03:00
if ( in_length = = 0 ) {
in_length = ( int ) ustrlen ( source ) ;
2016-02-20 13:50:15 +03:00
}
2016-09-06 00:06:50 +03:00
if ( in_length = = 0 ) {
2016-02-20 13:50:15 +03:00
strcpy ( symbol - > errtxt , " No input data " ) ;
error_tag ( symbol - > errtxt , ZINT_ERROR_INVALID_DATA ) ;
return ZINT_ERROR_INVALID_DATA ;
}
if ( strcmp ( symbol - > outfile , " " ) = = 0 ) {
2016-08-26 13:44:02 +03:00
# ifdef NO_PNG
strcpy ( symbol - > outfile , " out.gif " ) ;
# else
2016-02-20 13:50:15 +03:00
strcpy ( symbol - > outfile , " out.png " ) ;
2016-08-26 13:44:02 +03:00
# endif
2016-02-20 13:50:15 +03:00
}
2009-11-22 18:38:15 +03:00
# ifndef _MSC_VER
2016-09-06 00:06:50 +03:00
unsigned char local_source [ in_length + 1 ] ;
2009-11-22 18:38:15 +03:00
# else
2016-09-06 00:06:50 +03:00
local_source = ( unsigned char * ) _alloca ( in_length + 1 ) ;
2009-11-22 18:38:15 +03:00
# endif
2016-02-20 13:50:15 +03:00
/* First check the symbology field */
if ( symbol - > symbology < 1 ) {
strcpy ( symbol - > errtxt , " Symbology out of range, using Code 128 " ) ;
symbol - > symbology = BARCODE_CODE128 ;
error_number = ZINT_WARN_INVALID_OPTION ;
}
/* symbol->symbologys 1 to 86 are defined by tbarcode */
if ( symbol - > symbology = = 5 ) {
symbol - > symbology = BARCODE_C25MATRIX ;
}
if ( ( symbol - > symbology > = 10 ) & & ( symbol - > symbology < = 12 ) ) {
symbol - > symbology = BARCODE_EANX ;
}
if ( ( symbol - > symbology = = 14 ) | | ( symbol - > symbology = = 15 ) ) {
symbol - > symbology = BARCODE_EANX ;
}
if ( symbol - > symbology = = 17 ) {
symbol - > symbology = BARCODE_UPCA ;
}
if ( symbol - > symbology = = 19 ) {
strcpy ( symbol - > errtxt , " Codabar 18 not supported, using Codabar " ) ;
symbol - > symbology = BARCODE_CODABAR ;
error_number = ZINT_WARN_INVALID_OPTION ;
}
if ( symbol - > symbology = = 26 ) {
symbol - > symbology = BARCODE_UPCA ;
}
if ( symbol - > symbology = = 27 ) {
strcpy ( symbol - > errtxt , " UPCD1 not supported " ) ;
error_number = ZINT_ERROR_INVALID_OPTION ;
}
if ( symbol - > symbology = = 33 ) {
symbol - > symbology = BARCODE_EAN128 ;
}
if ( ( symbol - > symbology = = 35 ) | | ( symbol - > symbology = = 36 ) ) {
symbol - > symbology = BARCODE_UPCA ;
}
if ( ( symbol - > symbology = = 38 ) | | ( symbol - > symbology = = 39 ) ) {
symbol - > symbology = BARCODE_UPCE ;
}
if ( ( symbol - > symbology > = 41 ) & & ( symbol - > symbology < = 45 ) ) {
symbol - > symbology = BARCODE_POSTNET ;
}
if ( symbol - > symbology = = 46 ) {
symbol - > symbology = BARCODE_PLESSEY ;
}
if ( symbol - > symbology = = 48 ) {
symbol - > symbology = BARCODE_NVE18 ;
}
if ( symbol - > symbology = = 54 ) {
strcpy ( symbol - > errtxt , " General Parcel Code not supported, using Code 128 " ) ;
symbol - > symbology = BARCODE_CODE128 ;
error_number = ZINT_WARN_INVALID_OPTION ;
}
if ( ( symbol - > symbology = = 59 ) | | ( symbol - > symbology = = 61 ) ) {
symbol - > symbology = BARCODE_CODE128 ;
}
if ( symbol - > symbology = = 62 ) {
symbol - > symbology = BARCODE_CODE93 ;
}
if ( ( symbol - > symbology = = 64 ) | | ( symbol - > symbology = = 65 ) ) {
symbol - > symbology = BARCODE_AUSPOST ;
}
if ( symbol - > symbology = = 73 ) {
2016-08-24 21:37:49 +03:00
symbol - > symbology = BARCODE_CODABLOCK ;
symbol - > input_mode = GS1_MODE ;
2016-02-20 13:50:15 +03:00
}
if ( symbol - > symbology = = 78 ) {
symbol - > symbology = BARCODE_RSS14 ;
}
if ( symbol - > symbology = = 83 ) {
symbol - > symbology = BARCODE_PLANET ;
}
if ( symbol - > symbology = = 88 ) {
symbol - > symbology = BARCODE_EAN128 ;
}
if ( symbol - > symbology = = 91 ) {
strcpy ( symbol - > errtxt , " Symbology out of range, using Code 128 " ) ;
symbol - > symbology = BARCODE_CODE128 ;
error_number = ZINT_WARN_INVALID_OPTION ;
}
if ( ( symbol - > symbology > = 94 ) & & ( symbol - > symbology < = 96 ) ) {
strcpy ( symbol - > errtxt , " Symbology out of range, using Code 128 " ) ;
symbol - > symbology = BARCODE_CODE128 ;
error_number = ZINT_WARN_INVALID_OPTION ;
}
if ( symbol - > symbology = = 100 ) {
symbol - > symbology = BARCODE_HIBC_128 ;
}
if ( symbol - > symbology = = 101 ) {
symbol - > symbology = BARCODE_HIBC_39 ;
}
if ( symbol - > symbology = = 103 ) {
symbol - > symbology = BARCODE_HIBC_DM ;
}
if ( symbol - > symbology = = 105 ) {
symbol - > symbology = BARCODE_HIBC_QR ;
}
if ( symbol - > symbology = = 107 ) {
symbol - > symbology = BARCODE_HIBC_PDF ;
}
if ( symbol - > symbology = = 109 ) {
symbol - > symbology = BARCODE_HIBC_MICPDF ;
}
if ( symbol - > symbology = = 111 ) {
symbol - > symbology = BARCODE_HIBC_BLOCKF ;
}
2016-04-07 19:13:43 +03:00
if ( ( symbol - > symbology = = 113 ) | | ( symbol - > symbology = = 114 ) ) {
strcpy ( symbol - > errtxt , " Symbology out of range, using Code 128 " ) ;
symbol - > symbology = BARCODE_CODE128 ;
error_number = ZINT_WARN_INVALID_OPTION ;
}
if ( symbol - > symbology = = 115 ) {
2016-07-26 00:52:29 +03:00
symbol - > symbology = BARCODE_DOTCODE ;
2016-04-07 19:13:43 +03:00
}
if ( ( symbol - > symbology > = 117 ) & & ( symbol - > symbology < = 127 ) ) {
2016-02-20 13:50:15 +03:00
strcpy ( symbol - > errtxt , " Symbology out of range, using Code 128 " ) ;
symbol - > symbology = BARCODE_CODE128 ;
error_number = ZINT_WARN_INVALID_OPTION ;
}
/* Everything from 128 up is Zint-specific */
if ( symbol - > symbology > = 143 ) {
strcpy ( symbol - > errtxt , " Symbology out of range, using Code 128 " ) ;
symbol - > symbology = BARCODE_CODE128 ;
error_number = ZINT_WARN_INVALID_OPTION ;
}
if ( error_number > 4 ) {
error_tag ( symbol - > errtxt , error_number ) ;
return error_number ;
} else {
error_buffer = error_number ;
}
2016-09-06 00:06:50 +03:00
2016-08-16 14:43:41 +03:00
if ( ( ! ( supports_eci ( symbol - > symbology ) ) ) & & ( symbol - > eci ! = 3 ) ) {
strcpy ( symbol - > errtxt , " Symbology does not support ECI switching " ) ;
error_number = ZINT_ERROR_INVALID_OPTION ;
}
2016-09-06 00:06:50 +03:00
2016-08-16 14:43:41 +03:00
if ( ( symbol - > eci < 3 ) | | ( symbol - > eci > 26 ) | | ( symbol - > eci = = 14 ) | | ( symbol - > eci = = 19 ) | | ( symbol - > eci = = 25 ) ) {
strcpy ( symbol - > errtxt , " Invalid or unsupported ECI mode " ) ;
error_number = ZINT_ERROR_INVALID_OPTION ;
}
2016-02-20 13:50:15 +03:00
if ( ( symbol - > input_mode < 0 ) | | ( symbol - > input_mode > 2 ) ) {
symbol - > input_mode = DATA_MODE ;
}
if ( symbol - > input_mode = = GS1_MODE ) {
2016-09-06 00:06:50 +03:00
for ( i = 0 ; i < in_length ; i + + ) {
2016-02-20 13:50:15 +03:00
if ( source [ i ] = = ' \0 ' ) {
strcpy ( symbol - > errtxt , " NULL characters not permitted in GS1 mode " ) ;
return ZINT_ERROR_INVALID_DATA ;
}
}
if ( gs1_compliant ( symbol - > symbology ) = = 1 ) {
2016-09-06 00:06:50 +03:00
error_number = ugs1_verify ( symbol , source , in_length , local_source ) ;
2016-02-20 13:50:15 +03:00
if ( error_number ! = 0 ) {
return error_number ;
}
2016-09-06 00:06:50 +03:00
in_length = ustrlen ( local_source ) ;
2016-02-20 13:50:15 +03:00
} else {
strcpy ( symbol - > errtxt , " Selected symbology does not support GS1 mode " ) ;
return ZINT_ERROR_INVALID_OPTION ;
}
} else {
2016-09-06 00:06:50 +03:00
memcpy ( local_source , source , in_length ) ;
local_source [ in_length ] = ' \0 ' ;
2016-02-20 13:50:15 +03:00
}
switch ( symbol - > symbology ) {
case BARCODE_QRCODE :
case BARCODE_MICROQR :
case BARCODE_GRIDMATRIX :
2016-04-07 19:13:43 +03:00
case BARCODE_HANXIN :
2016-09-06 00:06:50 +03:00
error_number = extended_charset ( symbol , local_source , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
default :
2016-09-06 00:06:50 +03:00
error_number = reduced_charset ( symbol , local_source , in_length ) ;
2016-02-20 13:50:15 +03:00
break ;
}
2016-09-06 00:06:50 +03:00
2016-08-16 14:43:41 +03:00
if ( ( error_number = = ZINT_ERROR_INVALID_DATA ) & & ( supports_eci ( symbol - > symbology )
& & ( symbol - > input_mode = = UNICODE_MODE ) ) ) {
/* Try another ECI mode */
2016-09-06 00:06:50 +03:00
symbol - > eci = get_best_eci ( local_source , in_length ) ;
2016-08-16 14:43:41 +03:00
if ( symbol - > eci > = 3 ) {
2016-09-06 00:06:50 +03:00
2016-08-16 14:43:41 +03:00
//printf("Data will encode with ECI %d\n", symbol->eci);
2016-09-06 00:06:50 +03:00
2016-08-16 14:43:41 +03:00
switch ( symbol - > symbology ) {
case BARCODE_QRCODE :
case BARCODE_MICROQR :
case BARCODE_GRIDMATRIX :
case BARCODE_HANXIN :
2016-09-06 00:06:50 +03:00
error_number = utf_to_eci ( symbol - > eci , source , local_source , & in_length ) ;
error_number = extended_charset ( symbol , local_source , in_length ) ;
2016-08-16 14:43:41 +03:00
break ;
default :
2016-09-06 00:06:50 +03:00
error_number = reduced_charset ( symbol , local_source , in_length ) ;
2016-08-16 14:43:41 +03:00
break ;
}
}
}
2016-02-20 13:50:15 +03:00
if ( ( symbol - > symbology = = BARCODE_CODE128 ) | | ( symbol - > symbology = = BARCODE_CODE128B ) ) {
2016-09-06 00:06:50 +03:00
for ( i = 0 ; i < in_length ; i + + ) {
2016-02-20 13:50:15 +03:00
if ( local_source [ i ] = = ' \0 ' ) {
symbol - > text [ i ] = ' ' ;
} else {
symbol - > text [ i ] = local_source [ i ] ;
}
}
}
if ( error_number = = 0 ) {
error_number = error_buffer ;
}
error_tag ( symbol - > errtxt , error_number ) ;
return error_number ;
2009-11-22 18:38:15 +03:00
}
2016-02-20 13:50:15 +03:00
int ZBarcode_Print ( struct zint_symbol * symbol , int rotate_angle ) {
int error_number ;
char output [ 4 ] ;
switch ( rotate_angle ) {
case 0 :
case 90 :
case 180 :
case 270 :
break ;
default :
strcpy ( symbol - > errtxt , " Invalid rotation angle " ) ;
return ZINT_ERROR_INVALID_OPTION ;
}
2016-08-26 14:15:54 +03:00
if ( symbol - > output_options & BARCODE_DOTTY_MODE ) {
2016-08-12 21:30:46 +03:00
if ( ! ( is_matrix ( symbol - > symbology ) ) ) {
strcpy ( symbol - > errtxt , " Selected symbology cannot be rendered as dots " ) ;
return ZINT_ERROR_INVALID_OPTION ;
}
}
2016-09-06 00:06:50 +03:00
2016-02-20 13:50:15 +03:00
if ( strlen ( symbol - > outfile ) > 3 ) {
output [ 0 ] = symbol - > outfile [ strlen ( symbol - > outfile ) - 3 ] ;
output [ 1 ] = symbol - > outfile [ strlen ( symbol - > outfile ) - 2 ] ;
output [ 2 ] = symbol - > outfile [ strlen ( symbol - > outfile ) - 1 ] ;
output [ 3 ] = ' \0 ' ;
to_upper ( ( unsigned char * ) output ) ;
2009-11-22 18:38:15 +03:00
2016-02-20 13:50:15 +03:00
if ( ! ( strcmp ( output , " PNG " ) ) ) {
if ( symbol - > scale < 1.0 ) {
symbol - > text [ 0 ] = ' \0 ' ;
}
2016-07-20 01:02:39 +03:00
error_number = plot_raster ( symbol , rotate_angle , OUT_PNG_FILE ) ;
} else
if ( ! ( strcmp ( output , " BMP " ) ) ) {
if ( symbol - > scale < 1.0 ) {
symbol - > text [ 0 ] = ' \0 ' ;
}
error_number = plot_raster ( symbol , rotate_angle , OUT_BMP_FILE ) ;
2016-07-23 17:08:55 +03:00
} else
if ( ! ( strcmp ( output , " PCX " ) ) ) {
if ( symbol - > scale < 1.0 ) {
symbol - > text [ 0 ] = ' \0 ' ;
}
2016-09-06 00:06:50 +03:00
error_number = plot_raster ( symbol , rotate_angle , OUT_PCX_FILE ) ;
2016-07-28 21:58:33 +03:00
} else
if ( ! ( strcmp ( output , " GIF " ) ) ) {
if ( symbol - > scale < 1.0 ) {
symbol - > text [ 0 ] = ' \0 ' ;
}
error_number = plot_raster ( symbol , rotate_angle , OUT_GIF_FILE ) ;
2016-02-20 13:50:15 +03:00
} else
if ( ! ( strcmp ( output , " TXT " ) ) ) {
error_number = dump_plot ( symbol ) ;
} else
if ( ! ( strcmp ( output , " EPS " ) ) ) {
error_number = ps_plot ( symbol ) ;
} else
if ( ! ( strcmp ( output , " SVG " ) ) ) {
error_number = svg_plot ( symbol ) ;
} else {
strcpy ( symbol - > errtxt , " Unknown output format " ) ;
error_tag ( symbol - > errtxt , ZINT_ERROR_INVALID_OPTION ) ;
return ZINT_ERROR_INVALID_OPTION ;
}
} else {
strcpy ( symbol - > errtxt , " Unknown output format " ) ;
error_tag ( symbol - > errtxt , ZINT_ERROR_INVALID_OPTION ) ;
return ZINT_ERROR_INVALID_OPTION ;
}
2016-08-26 13:44:02 +03:00
if ( error_number = = ZINT_ERROR_INVALID_OPTION ) {
/* If libpng is not installed */
strcpy ( symbol - > errtxt , " Unknown output format " ) ;
}
2016-09-06 00:06:50 +03:00
2016-02-20 13:50:15 +03:00
error_tag ( symbol - > errtxt , error_number ) ;
return error_number ;
2009-11-22 18:38:15 +03:00
}
2016-02-20 13:50:15 +03:00
int ZBarcode_Buffer ( struct zint_symbol * symbol , int rotate_angle ) {
int error_number ;
switch ( rotate_angle ) {
case 0 :
case 90 :
case 180 :
case 270 :
break ;
default :
strcpy ( symbol - > errtxt , " Invalid rotation angle " ) ;
return ZINT_ERROR_INVALID_OPTION ;
}
2016-07-20 01:02:39 +03:00
error_number = plot_raster ( symbol , rotate_angle , OUT_BMP_FILE ) ;
2016-02-20 13:50:15 +03:00
error_tag ( symbol - > errtxt , error_number ) ;
return error_number ;
2009-11-22 18:38:15 +03:00
}
2016-02-20 13:50:15 +03:00
int ZBarcode_Encode_and_Print ( struct zint_symbol * symbol , unsigned char * input , int length , int rotate_angle ) {
int error_number ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
error_number = 0 ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
error_number = ZBarcode_Encode ( symbol , input , length ) ;
if ( error_number ! = 0 ) {
return error_number ;
}
2009-11-22 18:38:15 +03:00
2016-02-20 13:50:15 +03:00
error_number = ZBarcode_Print ( symbol , rotate_angle ) ;
return error_number ;
2009-11-22 18:38:15 +03:00
}
2016-02-20 13:50:15 +03:00
int ZBarcode_Encode_and_Buffer ( struct zint_symbol * symbol , unsigned char * input , int length , int rotate_angle ) {
int error_number ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
error_number = 0 ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
error_number = ZBarcode_Encode ( symbol , input , length ) ;
if ( error_number ! = 0 ) {
return error_number ;
}
2009-11-22 18:38:15 +03:00
2016-02-20 13:50:15 +03:00
error_number = ZBarcode_Buffer ( symbol , rotate_angle ) ;
return error_number ;
2009-11-22 18:38:15 +03:00
}
2016-02-20 13:50:15 +03:00
int ZBarcode_Encode_File ( struct zint_symbol * symbol , char * filename ) {
FILE * file ;
unsigned char * buffer ;
unsigned long fileLen ;
unsigned int nRead = 0 , n = 0 ;
int ret ;
if ( ! strcmp ( filename , " - " ) ) {
file = stdin ;
fileLen = 7100 ;
} else {
file = fopen ( filename , " rb " ) ;
if ( ! file ) {
strcpy ( symbol - > errtxt , " Unable to read input file " ) ;
return ZINT_ERROR_INVALID_DATA ;
}
/* Get file length */
fseek ( file , 0 , SEEK_END ) ;
fileLen = ftell ( file ) ;
fseek ( file , 0 , SEEK_SET ) ;
if ( fileLen > 7100 ) {
/* The largest amount of data that can be encoded is 7089 numeric digits in QR Code */
strcpy ( symbol - > errtxt , " Input file too long " ) ;
fclose ( file ) ;
return ZINT_ERROR_INVALID_DATA ;
}
}
/* Allocate memory */
buffer = ( unsigned char * ) malloc ( fileLen * sizeof ( unsigned char ) ) ;
if ( ! buffer ) {
strcpy ( symbol - > errtxt , " Internal memory error " ) ;
2012-12-29 22:37:03 +04:00
if ( strcmp ( filename , " - " ) )
2016-02-20 13:50:15 +03:00
fclose ( file ) ;
return ZINT_ERROR_MEMORY ;
}
/* Read file contents into buffer */
do {
n = fread ( buffer + nRead , 1 , fileLen - nRead , file ) ;
if ( ferror ( file ) ) {
strcpy ( symbol - > errtxt , strerror ( errno ) ) ;
nRead = 0 ;
return ZINT_ERROR_INVALID_DATA ;
}
nRead + = n ;
} while ( ! feof ( file ) & & ( 0 < n ) & & ( nRead < fileLen ) ) ;
fclose ( file ) ;
ret = ZBarcode_Encode ( symbol , buffer , nRead ) ;
free ( buffer ) ;
return ret ;
2009-11-22 18:38:15 +03:00
}
2016-02-20 13:50:15 +03:00
int ZBarcode_Encode_File_and_Print ( struct zint_symbol * symbol , char * filename , int rotate_angle ) {
int error_number ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
error_number = 0 ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
error_number = ZBarcode_Encode_File ( symbol , filename ) ;
if ( error_number ! = 0 ) {
return error_number ;
}
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
return ZBarcode_Print ( symbol , rotate_angle ) ;
2009-11-22 18:38:15 +03:00
}
2016-02-20 13:50:15 +03:00
int ZBarcode_Encode_File_and_Buffer ( struct zint_symbol * symbol , char * filename , int rotate_angle ) {
int error_number ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
error_number = 0 ;
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
error_number = ZBarcode_Encode_File ( symbol , filename ) ;
if ( error_number ! = 0 ) {
return error_number ;
}
2012-12-31 17:41:59 +04:00
2016-02-20 13:50:15 +03:00
return ZBarcode_Buffer ( symbol , rotate_angle ) ;
2009-11-22 18:38:15 +03:00
}
2010-05-30 21:25:24 +04:00
/*
* Rendering support , initially added by Sam Lown .
*
* Converts encoded data into an intermediate format to be interpreted
* in other applications using this library .
2010-06-11 21:42:51 +04:00
*
* If the width and height are not set to zero , the barcode will be resized to those
* dimensions . The symbol - > scale and symbol - > height values are totally ignored in this case .
*
2010-05-30 21:25:24 +04:00
*/
2016-04-06 23:55:14 +03:00
int ZBarcode_Render ( struct zint_symbol * symbol , const float width , const float height ) {
2016-02-20 13:50:15 +03:00
// Send the request to the render_plot method
return render_plot ( symbol , width , height ) ;
2010-05-30 21:25:24 +04:00
}