2008-07-14 09:15:55 +12:00
/* library.c - external functions of libzint
libzint - the open source barcode library
Copyright ( C ) 2008 Robin Stuart < zint @ hotmail . co . 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 <stdio.h>
# include <stdlib.h>
# include <string.h>
# include "common.h"
struct zint_symbol * ZBarcode_Create ( )
{
struct zint_symbol * symbol ;
int i , j ;
2008-09-03 07:41:14 +12:00
2008-07-14 09:15:55 +12:00
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 , " out.png " ) ;
symbol - > option_1 = - 1 ;
symbol - > option_2 = 0 ;
2008-09-03 07:41:14 +12:00
symbol - > option_3 = 928 ; // PDF_MAX
2008-07-14 09:15:55 +12:00
strcpy ( symbol - > primary , " " ) ;
for ( i = 0 ; i < 90 ; i + + ) {
for ( j = 0 ; j < 1000 ; j + + ) {
symbol - > encoded_data [ i ] [ j ] = ' 0 ' ;
}
symbol - > row_height [ i ] = 0 ;
}
return symbol ;
}
int ZBarcode_Delete ( struct zint_symbol * symbol )
{
free ( symbol ) ;
return 0 ;
}
extern int eanx ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* EAN system barcodes */
extern int c39 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Code 3 from 9 (or Code 39) */
extern int pharmazentral ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Pharmazentral Nummer (PZN) */
extern int ec39 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Extended Code 3 from 9 (or Code 39+) */
extern int codabar ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Codabar - a simple substitution cipher */
extern int matrix_two_of_five ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Code 2 of 5 Standard (& Matrix) */
extern int industrial_two_of_five ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Code 2 of 5 Industrial */
extern int iata_two_of_five ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Code 2 of 5 IATA */
extern int interleaved_two_of_five ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Code 2 of 5 Interleaved */
extern int logic_two_of_five ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Code 2 of 5 Data Logic */
extern int itf14 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* ITF-14 */
extern int dpleit ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Deutsche Post Leitcode */
extern int dpident ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Deutsche Post Identcode */
extern int c93 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Code 93 - a re-working of Code 39+, generates 2 check digits */
extern int code_128 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Code 128 and NVE-18 */
extern int ean_128 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* EAN-128 (GS1-128) */
extern int code_11 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Code 11 */
2008-09-16 19:39:47 +12:00
extern int msi_handle ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* MSI Plessey */
2008-07-14 09:15:55 +12:00
extern int telepen ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Telepen ASCII */
extern int telepen_num ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Telepen Numeric */
extern int plessey ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Plessey Code */
extern int pharma_one ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Pharmacode One Track */
extern int flattermarken ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Flattermarken */
extern int fim ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Facing Identification Mark */
extern int pharma_two ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Pharmacode Two Track */
extern int post_plot ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Postnet */
extern int planet_plot ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* PLANET */
extern int imail ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Intelligent Mail (aka USPS OneCode) */
extern int royal_plot ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* RM4SCC */
extern int australia_post ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Australia Post 4-state */
extern int code16k ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Code 16k */
extern int pdf417enc ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* PDF417 */
extern int dmatrix ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Data Matrix (IEC16022) */
extern int qr_code ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* QR Code */
extern int micro_pdf417 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Micro PDF417 */
extern int maxicode ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Maxicode */
extern int rss14 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* RSS-14 */
extern int rsslimited ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* RSS Limited */
extern int rssexpanded ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* RSS Expanded */
extern int composite ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Composite Symbology */
2008-09-03 07:41:14 +12:00
extern int kix_code ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* TNT KIX Code */
extern int aztec ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Aztec Code */
extern int code32 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Italian Pharmacode */
2008-09-16 19:39:47 +12:00
extern int codablock ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* Codablock F */
extern int daft_code ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* DAFT Code */
2008-09-19 21:02:52 +12:00
extern int ean_14 ( struct zint_symbol * symbol , unsigned char source [ ] ) ; /* EAN-14 */
2008-07-14 09:15:55 +12:00
extern int png_plot ( struct zint_symbol * symbol ) ;
extern int ps_plot ( struct zint_symbol * symbol ) ;
int ZBarcode_Encode ( struct zint_symbol * symbol , unsigned char * input )
{
2008-09-16 19:39:47 +12:00
int error_number ;
error_number = 0 ;
2008-07-14 09:15:55 +12:00
/* First check the symbology field */
2008-09-03 07:41:14 +12:00
2008-09-16 19:39:47 +12:00
if ( symbol - > symbology < 1 ) { strcpy ( symbol - > errtxt , " Symbology out of range, using Code 128 " ) ; symbol - > symbology = BARCODE_CODE128 ; error_number = WARN_INVALID_OPTION ; }
2008-07-14 09:15:55 +12:00
/* 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 ; }
2008-09-16 19:39:47 +12:00
if ( symbol - > symbology = = 19 ) { strcpy ( symbol - > errtxt , " Codabar 18 not supported, using Codabar " ) ; symbol - > symbology = BARCODE_CODABAR ; error_number = WARN_INVALID_OPTION ; }
if ( symbol - > symbology = = 24 ) { strcpy ( symbol - > errtxt , " Code 49 not supported, using Code 93 " ) ; symbol - > symbology = BARCODE_CODE93 ; error_number = WARN_INVALID_OPTION ; }
2008-07-14 09:15:55 +12:00
if ( symbol - > symbology = = 26 ) { symbol - > symbology = BARCODE_UPCA ; }
2008-09-16 19:39:47 +12:00
if ( symbol - > symbology = = 27 ) { strcpy ( symbol - > errtxt , " UPCD1 not supported " ) ; error_number = ERROR_INVALID_OPTION ; }
2008-07-14 09:15:55 +12:00
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 ; }
2008-09-16 19:39:47 +12:00
if ( symbol - > symbology = = 54 ) { strcpy ( symbol - > errtxt , " General Parcel Code not supported, using Code 128 " ) ; symbol - > symbology = BARCODE_CODE128 ; error_number = WARN_INVALID_OPTION ; }
2008-07-14 09:15:55 +12:00
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 ; }
2008-09-16 19:39:47 +12:00
if ( symbol - > symbology = = 73 ) { strcpy ( symbol - > errtxt , " Codablock E not supported " ) ; error_number = ERROR_INVALID_OPTION ; }
if ( symbol - > symbology = = 76 ) { strcpy ( symbol - > errtxt , " Japanese Postal Code not supported " ) ; error_number = ERROR_INVALID_OPTION ; }
if ( symbol - > symbology = = 77 ) { strcpy ( symbol - > errtxt , " Korean Postal Code not supported " ) ; error_number = ERROR_INVALID_OPTION ; }
2008-07-14 09:15:55 +12:00
if ( symbol - > symbology = = 78 ) { symbol - > symbology = BARCODE_RSS14 ; }
if ( symbol - > symbology = = 83 ) { symbol - > symbology = BARCODE_PLANET ; }
2008-09-16 19:39:47 +12:00
/* NOTE: Tbarcode v8 needs sorting out */
2008-09-19 21:02:52 +12:00
if ( symbol - > symbology = = 88 ) { symbol - > symbology = BARCODE_EAN128 ; }
2008-09-16 19:39:47 +12:00
if ( symbol - > symbology = = 91 ) { strcpy ( symbol - > errtxt , " Symbology out of range, using Code 128 \n " ) ; symbol - > symbology = BARCODE_CODE128 ; error_number = WARN_INVALID_OPTION ; }
2008-07-14 09:15:55 +12:00
/* leave a gap for future expansion of tbarcode */
2008-09-19 21:02:52 +12:00
if ( ( symbol - > symbology > = 94 ) & & ( symbol - > symbology < = 128 ) ) { strcpy ( symbol - > errtxt , " Symbology out of range, using Code 128 \n " ) ; symbol - > symbology = BARCODE_CODE128 ; error_number = WARN_INVALID_OPTION ; }
2008-07-14 09:15:55 +12:00
/* Everything from 100 up is Zint-specific */
2008-09-16 19:39:47 +12:00
if ( symbol - > symbology > = 140 ) { strcpy ( symbol - > errtxt , " Symbology out of range, using Code 128 " ) ; symbol - > symbology = BARCODE_CODE128 ; error_number = WARN_INVALID_OPTION ; }
2008-09-03 07:41:14 +12:00
2008-09-16 19:39:47 +12:00
if ( error_number > 4 ) {
return error_number ;
2008-07-14 09:15:55 +12:00
}
2008-09-03 07:41:14 +12:00
2008-07-14 09:15:55 +12:00
if ( symbol - > symbology = = BARCODE_CODE16K ) {
symbol - > whitespace_width = 16 ;
symbol - > border_width = 2 ;
symbol - > output_options = BARCODE_BIND ;
}
2008-09-03 07:41:14 +12:00
2008-07-14 09:15:55 +12:00
if ( symbol - > symbology = = BARCODE_ITF14 ) {
symbol - > whitespace_width = 20 ;
symbol - > border_width = 8 ;
symbol - > output_options = BARCODE_BOX ;
}
2008-09-03 07:41:14 +12:00
2008-07-14 09:15:55 +12:00
switch ( symbol - > symbology ) {
2008-09-16 19:39:47 +12:00
case BARCODE_C25MATRIX : error_number = matrix_two_of_five ( symbol , input ) ; break ;
case BARCODE_C25IND : error_number = industrial_two_of_five ( symbol , input ) ; break ;
case BARCODE_C25INTER : error_number = interleaved_two_of_five ( symbol , input ) ; break ;
case BARCODE_C25IATA : error_number = iata_two_of_five ( symbol , input ) ; break ;
case BARCODE_C25LOGIC : error_number = logic_two_of_five ( symbol , input ) ; break ;
case BARCODE_DPLEIT : error_number = dpleit ( symbol , input ) ; break ;
case BARCODE_DPIDENT : error_number = dpident ( symbol , input ) ; break ;
case BARCODE_UPCA : error_number = eanx ( symbol , input ) ; break ;
case BARCODE_UPCE : error_number = eanx ( symbol , input ) ; break ;
case BARCODE_EANX : error_number = eanx ( symbol , input ) ; break ;
case BARCODE_EAN128 : error_number = ean_128 ( symbol , input ) ; break ;
case BARCODE_CODE39 : error_number = c39 ( symbol , input ) ; break ;
case BARCODE_PZN : error_number = pharmazentral ( symbol , input ) ; break ;
case BARCODE_EXCODE39 : error_number = ec39 ( symbol , input ) ; break ;
case BARCODE_CODABAR : error_number = codabar ( symbol , input ) ; break ;
case BARCODE_CODE93 : error_number = c93 ( symbol , input ) ; break ;
case BARCODE_LOGMARS : error_number = c39 ( symbol , input ) ; break ;
case BARCODE_CODE128 : error_number = code_128 ( symbol , input ) ; break ;
case BARCODE_CODE128B : error_number = code_128 ( symbol , input ) ; break ;
case BARCODE_NVE18 : error_number = code_128 ( symbol , input ) ; break ;
case BARCODE_CODE11 : error_number = code_11 ( symbol , input ) ; break ;
case BARCODE_MSI_PLESSEY : error_number = msi_handle ( symbol , input ) ; break ;
case BARCODE_TELEPEN : error_number = telepen ( symbol , input ) ; break ;
case BARCODE_TELEPEN_NUM : error_number = telepen_num ( symbol , input ) ; break ;
case BARCODE_PHARMA : error_number = pharma_one ( symbol , input ) ; break ;
case BARCODE_PLESSEY : error_number = plessey ( symbol , input ) ; break ;
case BARCODE_ITF14 : error_number = itf14 ( symbol , input ) ; break ;
case BARCODE_FLAT : error_number = flattermarken ( symbol , input ) ; break ;
case BARCODE_FIM : error_number = fim ( symbol , input ) ; break ;
case BARCODE_POSTNET : error_number = post_plot ( symbol , input ) ; break ;
case BARCODE_PLANET : error_number = planet_plot ( symbol , input ) ; break ;
case BARCODE_RM4SCC : error_number = royal_plot ( symbol , input ) ; break ;
case BARCODE_AUSPOST : error_number = australia_post ( symbol , input ) ; break ;
case BARCODE_AUSREPLY : error_number = australia_post ( symbol , input ) ; break ;
case BARCODE_AUSROUTE : error_number = australia_post ( symbol , input ) ; break ;
case BARCODE_AUSREDIRECT : error_number = australia_post ( symbol , input ) ; break ;
case BARCODE_CODE16K : error_number = code16k ( symbol , input ) ; break ;
case BARCODE_PHARMA_TWO : error_number = pharma_two ( symbol , input ) ; break ;
case BARCODE_ONECODE : error_number = imail ( symbol , input ) ; break ;
case BARCODE_DATAMATRIX : error_number = dmatrix ( symbol , input ) ; break ;
case BARCODE_PDF417 : error_number = pdf417enc ( symbol , input ) ; break ;
case BARCODE_PDF417TRUNC : error_number = pdf417enc ( symbol , input ) ; break ;
case BARCODE_QRCODE : error_number = qr_code ( symbol , input ) ; break ;
case BARCODE_MICROPDF417 : error_number = micro_pdf417 ( symbol , input ) ; break ;
case BARCODE_ISBNX : error_number = eanx ( symbol , input ) ; break ;
case BARCODE_MAXICODE : error_number = maxicode ( symbol , input ) ; break ;
case BARCODE_RSS14 : error_number = rss14 ( symbol , input ) ; break ;
case BARCODE_RSS14STACK : error_number = rss14 ( symbol , input ) ; break ;
case BARCODE_RSS14STACK_OMNI : error_number = rss14 ( symbol , input ) ; break ;
case BARCODE_RSS_LTD : error_number = rsslimited ( symbol , input ) ; break ;
case BARCODE_RSS_EXP : error_number = rssexpanded ( symbol , input ) ; break ;
case BARCODE_RSS_EXPSTACK : error_number = rssexpanded ( symbol , input ) ; break ;
case BARCODE_EANX_CC : error_number = composite ( symbol , input ) ; break ;
case BARCODE_EAN128_CC : error_number = composite ( symbol , input ) ; break ;
case BARCODE_RSS14_CC : error_number = composite ( symbol , input ) ; break ;
case BARCODE_RSS_LTD_CC : error_number = composite ( symbol , input ) ; break ;
case BARCODE_RSS_EXP_CC : error_number = composite ( symbol , input ) ; break ;
case BARCODE_UPCA_CC : error_number = composite ( symbol , input ) ; break ;
case BARCODE_UPCE_CC : error_number = composite ( symbol , input ) ; break ;
case BARCODE_RSS14STACK_CC : error_number = composite ( symbol , input ) ; break ;
case BARCODE_RSS14_OMNI_CC : error_number = composite ( symbol , input ) ; break ;
case BARCODE_RSS_EXPSTACK_CC : error_number = composite ( symbol , input ) ; break ;
case BARCODE_AZTEC : error_number = aztec ( symbol , input ) ; break ;
case BARCODE_KIX : error_number = kix_code ( symbol , input ) ; break ;
case BARCODE_CODE32 : error_number = code32 ( symbol , input ) ; break ;
case BARCODE_CODABLOCKF : error_number = codablock ( symbol , input ) ; break ;
case BARCODE_DAFT : error_number = daft_code ( symbol , input ) ; break ;
2008-09-19 21:02:52 +12:00
case BARCODE_EAN14 : error_number = ean_14 ( symbol , input ) ; break ;
2008-07-14 09:15:55 +12:00
}
2008-09-03 07:41:14 +12:00
2008-09-16 19:39:47 +12:00
return error_number ;
2008-07-14 09:15:55 +12:00
}
int ZBarcode_Print ( struct zint_symbol * symbol )
{
2008-09-16 19:39:47 +12:00
int error_number ;
2008-07-14 09:15:55 +12:00
char output [ 4 ] ;
2008-09-03 07:41:14 +12:00
2008-07-14 09:15:55 +12: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 ( output ) ;
2008-07-19 02:43:30 +12:00
# ifndef NO_PNG
2008-07-14 09:15:55 +12:00
if ( ! ( strcmp ( output , " PNG " ) ) ) {
2008-09-16 19:39:47 +12:00
error_number = png_handle ( symbol , 0 ) ;
2008-07-14 09:15:55 +12:00
} else {
2008-07-19 02:43:30 +12:00
# endif
2008-07-14 09:15:55 +12:00
if ( ! ( strcmp ( output , " EPS " ) ) ) {
2008-09-16 19:39:47 +12:00
error_number = ps_plot ( symbol ) ;
2008-07-14 09:15:55 +12:00
} else {
strcpy ( symbol - > errtxt , " error: unknown output format " ) ;
return ERROR_INVALID_OPTION ;
}
2008-07-19 02:43:30 +12:00
# ifndef NO_PNG
2008-07-14 09:15:55 +12:00
}
2008-07-19 02:43:30 +12:00
# endif
2008-07-14 09:15:55 +12:00
} else {
strcpy ( symbol - > errtxt , " error: unknown output format " ) ;
return ERROR_INVALID_OPTION ;
}
2008-09-16 19:39:47 +12:00
return error_number ;
2008-07-14 09:15:55 +12:00
}
2008-09-03 07:41:14 +12:00
int ZBarcode_Print_Rotated ( struct zint_symbol * symbol , int rotate_angle )
2008-07-14 09:15:55 +12:00
{
2008-09-16 19:39:47 +12:00
int error_number ;
2008-09-03 07:41:14 +12:00
char output [ 4 ] ;
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 ( output ) ;
2008-09-18 06:24:15 +12:00
# ifndef NO_PNG
2008-09-03 07:41:14 +12:00
if ( ! ( strcmp ( output , " PNG " ) ) ) {
2008-09-16 19:39:47 +12:00
error_number = png_handle ( symbol , rotate_angle ) ;
2008-09-03 07:41:14 +12:00
} else {
2008-09-18 06:24:15 +12:00
# endif
2008-09-03 07:41:14 +12:00
if ( ! ( strcmp ( output , " EPS " ) ) ) {
2008-09-16 19:39:47 +12:00
error_number = ps_plot ( symbol ) ;
2008-09-03 07:41:14 +12:00
} else {
strcpy ( symbol - > errtxt , " error: unknown output format " ) ;
return ERROR_INVALID_OPTION ;
}
2008-09-18 06:24:15 +12:00
# ifndef NO_PNG
2008-09-03 07:41:14 +12:00
}
2008-09-18 06:24:15 +12:00
# endif
2008-09-03 07:41:14 +12:00
} else {
strcpy ( symbol - > errtxt , " error: unknown output format " ) ;
return ERROR_INVALID_OPTION ;
}
2008-07-19 02:43:30 +12:00
2008-09-16 19:39:47 +12:00
return error_number ;
2008-09-03 07:41:14 +12:00
}
2008-07-19 02:43:30 +12:00
2008-09-03 07:41:14 +12:00
int ZBarcode_Encode_and_Print ( struct zint_symbol * symbol , unsigned char * input )
{
2008-09-16 19:39:47 +12:00
int error_number ;
2008-09-03 07:41:14 +12:00
2008-09-16 19:39:47 +12:00
error_number = 0 ;
2008-09-03 07:41:14 +12:00
2008-09-16 19:39:47 +12:00
error_number = ZBarcode_Encode ( symbol , input ) ;
if ( error_number ! = 0 ) {
return error_number ;
2008-07-14 09:15:55 +12:00
}
2008-09-16 19:39:47 +12:00
error_number = ZBarcode_Print ( symbol ) ;
return error_number ;
2008-07-14 09:15:55 +12:00
}
2008-09-03 07:41:14 +12:00
int ZBarcode_Encode_and_Print_Rotated ( struct zint_symbol * symbol , unsigned char * input , int rotate_angle )
{
2008-09-16 19:39:47 +12:00
int error_number ;
2008-09-03 07:41:14 +12:00
2008-09-16 19:39:47 +12:00
error_number = 0 ;
2008-09-03 07:41:14 +12:00
2008-09-16 19:39:47 +12:00
error_number = ZBarcode_Encode ( symbol , input ) ;
if ( error_number ! = 0 ) {
return error_number ;
2008-09-03 07:41:14 +12:00
}
2008-09-16 19:39:47 +12:00
error_number = ZBarcode_Print_Rotated ( symbol , rotate_angle ) ;
return error_number ;
2008-09-03 07:41:14 +12:00
}