2020-04-04 07:40:59 +13:00
/*
libzint - the open source barcode library
- `zint_symbol->fgcolour` & `bgcolour` buffer lengths extended 10
-> 16 to allow for "C,M,Y,K" comma-separated decimal percentage
strings
- API/CLI/GUI: allow foreground/background colours to be specified
as comma-separated decimal "C,M,Y,K" strings where "C", "M" etc.
are percentages (0-100) (ticket #281, 3rd point)
- output.c: new funcs `out_colour_get_rgb()` & `out_colour_get_cmyk()`
and use in bmp/emf/gif etc.
- PCX: add alpha support
- GUI: fix fg/gbcolor icon background not being reset on zap
- GUI: Rearrange some Appearance tab inputs (Border Type <-> Width,
Show Text <-> Font, Text/Font <-> Printing Scale/Size) to flow
more naturally (hopefully)
- GUI: save button "Save As..." -> "Save..." and add icon
- CLI: add --bgcolor/colour & --fgcolor/colour synonyms
2023-01-30 08:51:11 +13:00
Copyright ( C ) 2020 - 2023 Robin Stuart < rstuart114 @ gmail . com >
2020-04-04 07:40:59 +13: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 .
*/
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
/* SPDX-License-Identifier: BSD-3-Clause */
2020-04-04 07:40:59 +13:00
# include "testcommon.h"
2021-07-27 02:29:05 +12:00
# include <errno.h>
2020-04-04 07:40:59 +13:00
# include <sys/stat.h>
2020-12-23 23:57:24 +13:00
INTERNAL int png_pixel_plot ( struct zint_symbol * symbol , unsigned char * pixelbuf ) ;
2020-05-06 09:28:25 +12:00
2022-09-13 06:26:04 +12:00
static void test_pixel_plot ( const testCtx * const p_ctx ) {
int debug = p_ctx - > debug ;
2020-05-06 09:28:25 +12:00
struct item {
int width ;
int height ;
2020-10-04 10:51:08 +13:00
char * pattern ;
2020-05-06 09:28:25 +12:00
int repeat ;
2021-07-27 02:29:05 +12:00
int ret ;
2020-05-06 09:28:25 +12:00
} ;
2022-08-19 09:25:09 +12:00
/* s/\/\*[ 0-9]*\*\//\=printf("\/\*%3d*\/", line(".") - line("'<")): */
2020-05-06 09:28:25 +12:00
struct item data [ ] = {
2021-07-27 02:29:05 +12:00
/* 0*/ { 1 , 1 , " 1 " , 0 , 0 } ,
/* 1*/ { 2 , 1 , " 11 " , 0 , 0 } ,
/* 2*/ { 2 , 2 , " 10 " , 1 , 0 } ,
/* 3*/ { 3 , 1 , " 101 " , 0 , 0 } ,
/* 4*/ { 3 , 2 , " 101010 " , 0 , 0 } ,
/* 5*/ { 3 , 3 , " 101010101 " , 0 , 0 } ,
/* 6*/ { 8 , 2 , " CBMWKRYGGYRKWMBC " , 0 , 0 } ,
2020-05-06 09:28:25 +12:00
} ;
int data_size = ARRAY_SIZE ( data ) ;
2021-06-24 02:00:49 +12:00
int i , ret ;
struct zint_symbol * symbol ;
2020-05-06 09:28:25 +12:00
char * png = " out.png " ;
2020-05-06 12:33:56 +12:00
char data_buf [ 8 * 2 + 1 ] ;
2020-05-06 09:28:25 +12:00
- API: add new zint_symbol `dpmm` field for output resolution (BMP/
EMF/PCX/PNG/TIF only, i.e. excluding EPS, GIF & SVG)
- Add support for specifying scale by X-dimension and resolution
with new option `--scalexdimdp` for CLI/Tcl & new API function
`ZBarcode_Scale_From_XdimDp()` (+ `ZBarcode_XdimDp_From_Scale()`
& `ZBarcode_Default_Xdim()`) and new GUI popup; manual: document
- BMP/EMF/PCX/PNG/TIF: use new `dpmm` resolution field (for EMF
following Inkscape)
- backend_qt: add `dpmm()`, `vectorWidth()`, `vectorHeight()`,
`noPng()`, `getVersion()`, `takesGS1AIData()`, & `XdimDp` stuff
incl. new `QZintXdimDp` struct for passing around scale vars &
use in `getAsCLI()`; add comments
- Raise `scale` limit to 200 (from 100) to allow for large dpmm
- output: create directories & subdirectories as necessary for
output path using new function `out_fopen()` and use in BMP/EMF/
EPS/GIF/PCX/PNG/SVG/TIF
- DPLEIT/DPIDENT: format HRT according to (incomplete)
documentation, and set default height to 72X (from 50X)
- CODE128B renamed to CODE128AB as can use subsets A and/or B
- CODABAR: fix minimum height calc
- EMF: fix indexing of handles (zero-based not 1-based)
- GUI: fix symbology zap (previous technique of clearing and
re-loading settings without doing a sync no longer works);
fix UPCEAN guard descent enable
- MAILMARK: better error message if input < 14 characters
- GUI: add "Default" button for DAFT tracker ratio & enable/disable
various default buttons; use new `takesGS1AIData()` to
enable/disable GS1-specific checkboxes
- CLI: use new `validate_float()` to parse float options (7
significant digits allowed only, no scientific notation)
- DATAMATRIX/GRIDMATRIX/PDF417/QR/ULTRA: micro-optimize structapp
ID parse
- library/CLI: fiddle with static asserts (make CHAR_BIT sensitive,
supposedly)
- win32/README: update building libpng (assembly removed)
- README.linux: document incompatibility of Qt6 >= 6.3
- manual: expand Barcode Studio waffle
- test suite: change range separator to hyphen and allow multiple
excludes
2022-12-03 10:39:01 +13:00
const char * const have_identify = testUtilHaveIdentify ( ) ;
2021-06-24 02:00:49 +12:00
2021-07-27 02:29:05 +12:00
testStart ( " test_pixel_plot " ) ;
2021-06-24 02:00:49 +12:00
for ( i = 0 ; i < data_size ; i + + ) {
int size ;
2020-05-06 09:28:25 +12:00
2022-09-13 06:26:04 +12:00
if ( testContinue ( p_ctx , i ) ) continue ;
2020-05-06 09:28:25 +12:00
2021-06-24 02:00:49 +12:00
symbol = ZBarcode_Create ( ) ;
2020-05-06 09:28:25 +12:00
assert_nonnull ( symbol , " Symbol not created \n " ) ;
strcpy ( symbol - > outfile , png ) ;
symbol - > bitmap_width = data [ i ] . width ;
symbol - > bitmap_height = data [ i ] . height ;
2020-05-07 06:57:27 +12:00
symbol - > debug | = debug ;
2020-05-06 09:28:25 +12:00
2021-06-24 02:00:49 +12:00
size = data [ i ] . width * data [ i ] . height ;
2020-05-06 09:28:25 +12:00
assert_nonzero ( size < ( int ) sizeof ( data_buf ) , " i:%d png_pixel_plot size %d < sizeof(data_buf) %d \n " , i , size , ( int ) sizeof ( data_buf ) ) ;
if ( data [ i ] . repeat ) {
2020-05-06 12:33:56 +12:00
testUtilStrCpyRepeat ( data_buf , data [ i ] . pattern , size ) ;
2020-05-06 09:28:25 +12:00
} else {
strcpy ( data_buf , data [ i ] . pattern ) ;
}
assert_equal ( size , ( int ) strlen ( data_buf ) , " i:%d png_pixel_plot size %d != strlen(data_buf) %d \n " , i , size , ( int ) strlen ( data_buf ) ) ;
2020-10-04 10:51:08 +13:00
symbol - > bitmap = ( unsigned char * ) data_buf ;
2020-05-06 09:28:25 +12:00
2020-11-02 07:32:55 +13:00
ret = png_pixel_plot ( symbol , ( unsigned char * ) data_buf ) ;
2021-07-27 02:29:05 +12:00
assert_equal ( ret , data [ i ] . ret , " i:%d png_pixel_plot ret %d != %d (%s) \n " , i , ret , data [ i ] . ret , symbol - > errtxt ) ;
2020-05-06 09:28:25 +12:00
2021-07-27 02:29:05 +12:00
if ( ret < ZINT_ERROR ) {
if ( have_identify ) {
- API: add new zint_symbol `dpmm` field for output resolution (BMP/
EMF/PCX/PNG/TIF only, i.e. excluding EPS, GIF & SVG)
- Add support for specifying scale by X-dimension and resolution
with new option `--scalexdimdp` for CLI/Tcl & new API function
`ZBarcode_Scale_From_XdimDp()` (+ `ZBarcode_XdimDp_From_Scale()`
& `ZBarcode_Default_Xdim()`) and new GUI popup; manual: document
- BMP/EMF/PCX/PNG/TIF: use new `dpmm` resolution field (for EMF
following Inkscape)
- backend_qt: add `dpmm()`, `vectorWidth()`, `vectorHeight()`,
`noPng()`, `getVersion()`, `takesGS1AIData()`, & `XdimDp` stuff
incl. new `QZintXdimDp` struct for passing around scale vars &
use in `getAsCLI()`; add comments
- Raise `scale` limit to 200 (from 100) to allow for large dpmm
- output: create directories & subdirectories as necessary for
output path using new function `out_fopen()` and use in BMP/EMF/
EPS/GIF/PCX/PNG/SVG/TIF
- DPLEIT/DPIDENT: format HRT according to (incomplete)
documentation, and set default height to 72X (from 50X)
- CODE128B renamed to CODE128AB as can use subsets A and/or B
- CODABAR: fix minimum height calc
- EMF: fix indexing of handles (zero-based not 1-based)
- GUI: fix symbology zap (previous technique of clearing and
re-loading settings without doing a sync no longer works);
fix UPCEAN guard descent enable
- MAILMARK: better error message if input < 14 characters
- GUI: add "Default" button for DAFT tracker ratio & enable/disable
various default buttons; use new `takesGS1AIData()` to
enable/disable GS1-specific checkboxes
- CLI: use new `validate_float()` to parse float options (7
significant digits allowed only, no scientific notation)
- DATAMATRIX/GRIDMATRIX/PDF417/QR/ULTRA: micro-optimize structapp
ID parse
- library/CLI: fiddle with static asserts (make CHAR_BIT sensitive,
supposedly)
- win32/README: update building libpng (assembly removed)
- README.linux: document incompatibility of Qt6 >= 6.3
- manual: expand Barcode Studio waffle
- test suite: change range separator to hyphen and allow multiple
excludes
2022-12-03 10:39:01 +13:00
ret = testUtilVerifyIdentify ( have_identify , symbol - > outfile , debug ) ;
2021-07-27 02:29:05 +12:00
assert_zero ( ret , " i:%d identify %s ret %d != 0 \n " , i , symbol - > outfile , ret ) ;
}
if ( ! ( debug & ZINT_DEBUG_TEST_KEEP_OUTFILE ) ) {
2023-05-11 08:29:09 +12:00
assert_zero ( testUtilRemove ( symbol - > outfile ) , " i:%d testUtilRemove(%s) != 0 \n " , i , symbol - > outfile ) ;
2021-07-27 02:29:05 +12:00
}
} else {
if ( ! ( debug & ZINT_DEBUG_TEST_KEEP_OUTFILE ) ) {
2023-05-11 08:29:09 +12:00
( void ) testUtilRemove ( symbol - > outfile ) ;
2021-07-27 02:29:05 +12:00
}
}
2020-05-06 09:28:25 +12:00
symbol - > bitmap = NULL ;
ZBarcode_Delete ( symbol ) ;
}
testFinish ( ) ;
}
2022-09-13 06:26:04 +12:00
static void test_print ( const testCtx * const p_ctx ) {
int debug = p_ctx - > debug ;
2020-04-04 07:40:59 +13:00
struct item {
int symbology ;
2020-10-01 00:19:12 +13:00
int input_mode ;
2021-03-19 13:12:13 +13:00
int border_width ;
2020-10-01 00:19:12 +13:00
int output_options ;
2020-11-02 07:32:55 +13:00
int whitespace_width ;
2021-05-26 07:42:26 +12:00
int whitespace_height ;
2020-10-01 00:19:12 +13:00
int show_hrt ;
2020-04-04 07:40:59 +13:00
int option_1 ;
int option_2 ;
2021-06-20 00:11:23 +12:00
float height ;
2020-10-01 00:19:12 +13:00
float scale ;
Add Structured Append support for AZTEC, CODEONE, DATAMATRIX, DOTCODE,
GRIDMATRIX, MAXICODE, MICROPDF417, PDF417, QRCODE, ULTRA
DOTCODE: use pre-calculated generator poly coeffs in Reed-Solomon for
performance improvement
PDF417/MICROPDF417: use common routine pdf417_initial()
GUI: code lines <= 118, shorthand widget_obj(),
shorten calling upcean_addon_gap(), upcean_guard_descent()
various backend: var name debug -> debug_print
2021-09-29 09:42:44 +13:00
struct zint_structapp structapp ;
2020-11-02 07:32:55 +13:00
char * fgcolour ;
char * bgcolour ;
2023-02-11 03:44:10 +13:00
float text_gap ;
2020-10-04 10:51:08 +13:00
char * data ;
2020-10-01 00:19:12 +13:00
char * composite ;
2021-06-20 00:11:23 +12:00
int ret ;
2020-10-01 00:19:12 +13:00
char * expected_file ;
char * comment ;
2020-04-04 07:40:59 +13:00
} ;
struct item data [ ] = {
2023-02-11 03:44:10 +13:00
/* 0*/ { BARCODE_CODE128 , UNICODE_MODE , - 1 , BOLD_TEXT , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " Égjpqy " , " " , 0 , " code128_egrave_bold.png " , " " } ,
/* 1*/ { BARCODE_CODE128 , UNICODE_MODE , 3 , BOLD_TEXT | BARCODE_BOX , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " Égjpqy " , " " , 0 , " code128_egrave_bold_box3.png " , " " } ,
/* 2*/ { BARCODE_CODE128 , UNICODE_MODE , 2 , BOLD_TEXT | BARCODE_BOX , 2 , 2 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " Égjpqy " , " " , 0 , " code128_egrave_bold_hvwsp2_box2.png " , " " } ,
/* 3*/ { BARCODE_GS1_128_CC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 3 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " [00]030123456789012340 " , " [02]13012345678909[37]24[10]1234567ABCDEFG " , 0 , " gs1_128_cc_fig12.png " , " " } ,
/* 4*/ { BARCODE_CODABLOCKF , - 1 , 3 , - 1 , - 1 , - 1 , - 1 , 3 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " AAAAAAAAA " , " " , 0 , " codablockf_3rows.png " , " " } ,
/* 5*/ { BARCODE_CODABLOCKF , - 1 , - 1 , - 1 , 2 , 2 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " AAAAAAAAA " , " " , 0 , " codablockf_hvwsp2.png " , " " } ,
/* 6*/ { BARCODE_CODABLOCKF , - 1 , 2 , BARCODE_BOX , 2 , 2 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " AAAAAAAAA " , " " , 0 , " codablockf_hvwsp2_box2.png " , " " } ,
2023-06-12 12:25:55 +12:00
/* 7*/ { BARCODE_EANX , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 9771384524017 " , " " , 0 , " ean13_ggs_5.2.2.1-1.png " , " " } ,
/* 8*/ { BARCODE_EANX , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 9771384524017 " , " " , 0 , " ean13_ggs_5.2.2.1-1_gws.png " , " " } ,
/* 9*/ { BARCODE_EANX , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 9771384524017+12 " , " " , 0 , " ean13_2addon_ggs_5.2.2.5.1-2.png " , " " } ,
/* 10*/ { BARCODE_EANX , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 9771384524017+12 " , " " , 0 , " ean13_2addon_ggs_5.2.2.5.1-2_gws.png " , " " } ,
/* 11*/ { BARCODE_EANX , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 9780877799306+54321 " , " " , 0 , " ean13_5addon_ggs_5.2.2.5.2-2.png " , " " } ,
/* 12*/ { BARCODE_EANX , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 9780877799306+54321 " , " " , 0 , " ean13_5addon_ggs_5.2.2.5.2-2_gws.png " , " " } ,
/* 13*/ { BARCODE_EANX_CC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 123456789012 " , " [91]12345678901234567890123456789 " , 0 , " ean13_cc_cca_5x4.png " , " " } ,
/* 14*/ { BARCODE_EANX_CC , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 123456789012 " , " [91]12345678901234567890123456789 " , 0 , " ean13_cc_cca_5x4_gws.png " , " " } ,
/* 15*/ { BARCODE_EANX_CC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 123456789012+12 " , " [91]123456789012345678901 " , 0 , " ean13_cc_2addon_cca_4x4.png " , " " } ,
/* 16*/ { BARCODE_EANX_CC , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 123456789012+12 " , " [91]123456789012345678901 " , 0 , " ean13_cc_2addon_cca_4x4_gws.png " , " " } ,
/* 17*/ { BARCODE_EANX_CC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 2 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 123456789012+54321 " , " [91]1234567890 " , 0 , " ean13_cc_5addon_ccb_3x4.png " , " " } ,
/* 18*/ { BARCODE_EANX_CC , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , 2 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 123456789012+54321 " , " [91]1234567890 " , 0 , " ean13_cc_5addon_ccb_3x4_gws.png " , " " } ,
/* 19*/ { BARCODE_EANX_CC , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 2 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 123456789012+54321 " , " [91]1234567890 " , 0 , " ean13_cc_5addon_ccb_3x4_notext.png " , " " } ,
/* 20*/ { BARCODE_UPCA , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 012345678905+24 " , " " , 0 , " upca_2addon_ggs_5.2.6.6-5.png " , " " } ,
/* 21*/ { BARCODE_UPCA , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 012345678905+24 " , " " , 0 , " upca_2addon_ggs_5.2.6.6-5_gws.png " , " " } ,
/* 22*/ { BARCODE_UPCA , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 614141234417+12345 " , " " , 0 , " upca_5addon.png " , " " } ,
/* 23*/ { BARCODE_UPCA , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 614141234417+12345 " , " " , 0 , " upca_5addon_gws.png " , " " } ,
/* 24*/ { BARCODE_UPCA , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 614141234417+12345 " , " " , 0 , " upca_5addon_notext.png " , " " } ,
/* 25*/ { BARCODE_UPCA , - 1 , 3 , BARCODE_BIND , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 614141234417+12345 " , " " , 0 , " upca_5addon_bind3.png " , " " } ,
/* 26*/ { BARCODE_UPCA_CC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12345678901+12 " , " [91]123456789 " , 0 , " upca_cc_2addon_cca_3x4.png " , " " } ,
/* 27*/ { BARCODE_UPCA_CC , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12345678901+12 " , " [91]123456789 " , 0 , " upca_cc_2addon_cca_3x4_gws.png " , " " } ,
/* 28*/ { BARCODE_UPCA_CC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 2 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12345678901+12121 " , " [91]1234567890123 " , 0 , " upca_cc_5addon_ccb_4x4.png " , " " } ,
/* 29*/ { BARCODE_UPCA_CC , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 2 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12345678901+12121 " , " [91]1234567890123 " , 0 , " upca_cc_5addon_ccb_4x4_notext.png " , " " } ,
/* 30*/ { BARCODE_UPCA_CC , - 1 , 3 , BARCODE_BIND , - 1 , - 1 , - 1 , 2 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12345678901+12121 " , " [91]1234567890123 " , 0 , " upca_cc_5addon_ccb_4x4_bind3.png " , " " } ,
/* 31*/ { BARCODE_UPCE , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567+12 " , " " , 0 , " upce_2addon.png " , " " } ,
/* 32*/ { BARCODE_UPCE , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567+12 " , " " , 0 , " upce_2addon_gws.png " , " " } ,
/* 33*/ { BARCODE_UPCE , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567+12345 " , " " , 0 , " upce_5addon.png " , " " } ,
/* 34*/ { BARCODE_UPCE , - 1 , - 1 , SMALL_TEXT , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567+12345 " , " " , 0 , " upce_5addon_small.png " , " " } ,
/* 35*/ { BARCODE_UPCE , - 1 , - 1 , SMALL_TEXT | EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567+12345 " , " " , 0 , " upce_5addon_small_gws.png " , " " } ,
/* 36*/ { BARCODE_UPCE_CC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 0654321+89 " , " [91]1 " , 0 , " upce_cc_2addon_cca_5x2.png " , " " } ,
/* 37*/ { BARCODE_UPCE_CC , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 0654321+89 " , " [91]1 " , 0 , " upce_cc_2addon_cca_5x2_gws.png " , " " } ,
/* 38*/ { BARCODE_UPCE_CC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 2 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1876543+56789 " , " [91]12345 " , 0 , " upce_cc_5addon_ccb_8x2.png " , " " } ,
/* 39*/ { BARCODE_UPCE_CC , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , 2 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1876543+56789 " , " [91]12345 " , 0 , " upce_cc_5addon_ccb_8x2_gws.png " , " " } ,
/* 40*/ { BARCODE_UPCE_CC , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 2 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1876543+56789 " , " [91]12345 " , 0 , " upce_cc_5addon_ccb_8x2_notext.png " , " " } ,
/* 41*/ { BARCODE_EANX , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567 " , " " , 0 , " ean8_gss_5.2.2.2-1.png " , " " } ,
/* 42*/ { BARCODE_EANX , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567 " , " " , 0 , " ean8_gss_5.2.2.2-1_gws.png " , " " } ,
/* 43*/ { BARCODE_EANX , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567+12 " , " " , 0 , " ean8_2addon.png " , " " } ,
/* 44*/ { BARCODE_EANX , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567+12 " , " " , 0 , " ean8_2addon_gws.png " , " " } ,
/* 45*/ { BARCODE_EANX , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567+12345 " , " " , 0 , " ean8_5addon.png " , " " } ,
/* 46*/ { BARCODE_EANX , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 1234567+12345 " , " " , 0 , " ean8_5addon_gws.png " , " " } ,
/* 47*/ { BARCODE_EANX_CC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 9876543+65 " , " [91]1234567 " , 0 , " ean8_cc_2addon_cca_4x3.png " , " " } ,
/* 48*/ { BARCODE_EANX_CC , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 9876543+65 " , " [91]1234567 " , 0 , " ean8_cc_2addon_cca_4x3_gws.png " , " " } ,
/* 49*/ { BARCODE_EANX_CC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 9876543+74083 " , " [91]123456789012345678 " , 0 , " ean8_cc_5addon_ccb_8x3.png " , " " } ,
/* 50*/ { BARCODE_EANX_CC , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 9876543+74083 " , " [91]123456789012345678 " , 0 , " ean8_cc_5addon_ccb_8x3_gws.png " , " " } ,
/* 51*/ { BARCODE_EANX , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12345 " , " " , 0 , " ean5.png " , " " } ,
/* 52*/ { BARCODE_EANX , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12345 " , " " , 0 , " ean5_gws.png " , " " } ,
/* 53*/ { BARCODE_EANX , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12 " , " " , 0 , " ean2.png " , " " } ,
/* 54*/ { BARCODE_EANX , - 1 , - 1 , EANUPC_GUARD_WHITESPACE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12 " , " " , 0 , " ean2_gws.png " , " " } ,
/* 55*/ { BARCODE_CODE39 , - 1 , - 1 , SMALL_TEXT , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 123 " , " " , 0 , " code39_small.png " , " " } ,
/* 56*/ { BARCODE_POSTNET , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 3.5 , { 0 , 0 , " " } , " " , " " , 0 , " 12345 " , " " , 0 , " postnet_zip.png " , " 300 dpi, using 1/43in X, 300 / 43 / 2 = ~3.5 scale " } ,
/* 57*/ { BARCODE_PDF417 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " CFCECDCC " , 0 , " 12345 " , " " , 0 , " pdf417_bgalpha.png " , " " } ,
/* 58*/ { BARCODE_PDF417 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " 30313233 " , " " , 0 , " 12345 " , " " , 0 , " pdf417_fgalpha.png " , " " } ,
/* 59*/ { BARCODE_PDF417 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " 20212244 " , " CFCECDCC " , 0 , " 12345 " , " " , 0 , " pdf417_bgfgalpha.png " , " " } ,
/* 60*/ { BARCODE_ULTRA , - 1 , - 1 , - 1 , 2 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " 0000007F " , " FF000033 " , 0 , " 12345 " , " " , 0 , " ultra_bgfgalpha.png " , " " } ,
/* 61*/ { BARCODE_ULTRA , - 1 , - 1 , - 1 , 2 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " FF000033 " , 0 , " 12345 " , " " , 0 , " ultra_bgalpha.png " , " " } ,
/* 62*/ { BARCODE_ULTRA , - 1 , - 1 , - 1 , 2 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " 0000007F " , " FF0000 " , 0 , " 12345 " , " " , 0 , " ultra_fgalpha.png " , " " } ,
/* 63*/ { BARCODE_ULTRA , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " 0000007F " , " " , 0 , " 12345 " , " " , 0 , " ultra_fgalpha_nobg.png " , " " } ,
/* 64*/ { BARCODE_ULTRA , - 1 , 1 , BARCODE_BOX , 1 , 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12345 " , " " , 0 , " ultra_hvwsp1_box1.png " , " " } ,
/* 65*/ { BARCODE_ULTRA , - 1 , 1 , BARCODE_BOX , 1 , 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " 00FF007F " , " BABDB6 " , 0 , " 12345 " , " " , 0 , " ultra_fgalpha_hvwsp1_box1.png " , " " } ,
/* 66*/ { BARCODE_ULTRA , - 1 , 1 , BARCODE_BIND_TOP , 1 , 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " 00FF007F " , " BABDB6 " , 0 , " 12345 " , " " , 0 , " ultra_fgalpha_hvwsp1_bindtop1.png " , " " } ,
/* 67*/ { BARCODE_ULTRA , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0.5 , { 0 , 0 , " " } , " " , " " , 0 , " 1 " , " " , 0 , " ultra_odd.png " , " " } ,
/* 68*/ { BARCODE_MAXICODE , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0.5 , { 0 , 0 , " " } , " " , " " , 0 , " ABCDEFGHIJKLMNOPQRSTUVWXYZ " , " " , 0 , " maxicode_0.5.png " , " 6 dpmm, 150 dpi " } ,
/* 69*/ { BARCODE_MAXICODE , - 1 , 1 , BARCODE_BOX , 3 , - 1 , - 1 , - 1 , - 1 , 0 , 0.7 , { 0 , 0 , " " } , " " , " " , 0 , " ABCDEFGHIJKLMNOPQRSTUVWXYZ " , " " , 0 , " maxicode_0.7_wsp3_box1.png " , " 8 dpmm, 200 dpi " } ,
/* 70*/ { BARCODE_MAXICODE , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 1.4 , { 0 , 0 , " " } , " 1111117F " , " EEEEEEEE " , 0 , " ABCDEFGHIJKLMNOPQRSTUVWXYZ " , " " , 0 , " maxicode_1.4_bgfgalpha.png " , " 16 dpmm, 400 dpi " } ,
/* 71*/ { BARCODE_MAXICODE , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 2.1 , { 0 , 0 , " " } , " " , " " , 0 , " ABCDEFGHIJKLMNOPQRSTUVWXYZ " , " " , 0 , " maxicode_2.1.png " , " 24 dpmm, 600 dpi " } ,
/* 72*/ { BARCODE_MAXICODE , - 1 , 2 , BARCODE_BOX , 1 , 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " ABCDEFGHIJKLMNOPQRSTUVWXYZ " , " " , 0 , " maxicode_hvwsp1_box2.png " , " " } ,
/* 73*/ { BARCODE_MAXICODE , - 1 , 1 , BARCODE_BIND , - 1 , 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " ABCDEFGHIJKLMNOPQRSTUVWXYZ " , " " , 0 , " maxicode_vwsp1_bind1.png " , " " } ,
/* 74*/ { BARCODE_DATAMATRIX , - 1 , 1 , BARCODE_BIND | BARCODE_DOTTY_MODE , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 2.0f , { 0 , 0 , " " } , " " , " " , 0 , " 1234 " , " " , 0 , " datamatrix_2.0_bind1_dotty.png " , " " } ,
/* 75*/ { BARCODE_DATAMATRIX , - 1 , 1 , BARCODE_BIND | BARCODE_DOTTY_MODE , 1 , 1 , - 1 , - 1 , - 1 , 0 , 2.0f , { 0 , 0 , " " } , " " , " " , 0 , " 1234 " , " " , 0 , " datamatrix_2.0_hvwsp1_bind1_dotty.png " , " " } ,
/* 76*/ { BARCODE_DBAR_LTD , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12345678909 " , " " , 0 , " dbar_ltd.png " , " " } ,
/* 77*/ { BARCODE_PDF417 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 5.0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " Your Data Here! " , " " , ZINT_WARN_NONCOMPLIANT , " pdf417_height5.png " , " " } ,
/* 78*/ { BARCODE_USPS_IMAIL , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 7.75 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 12345678901234567890 " , " " , 0 , " imail_height7.75.png " , " " } ,
/* 79*/ { BARCODE_AZTEC , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 4 , 7 , " Z1.txt " } , " " , " " , 0 , " 3456 " , " " , 0 , " aztec_z1_seq4of7.png " , " " } ,
/* 80*/ { BARCODE_PDF417 , - 1 , - 1 , BARCODE_NO_QUIET_ZONES , - 1 , - 1 , - 1 , 5 , 8 , 16 , 1.5 , { 0 , 0 , " " } , " " , " " , 0 , " AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBB " , " " , ZINT_WARN_NONCOMPLIANT , " pdf417_#204.png " , " Ticket #204 Blank line in PDF417 " } ,
/* 81*/ { BARCODE_DPD , - 1 , - 1 , BARCODE_QUIET_ZONES | COMPLIANT_HEIGHT , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " " , " " , 0 , " 008182709980000020028101276 " , " " , 0 , " dpd_compliant.png " , " Now with bind top 3X default " } ,
/* 82*/ { BARCODE_CHANNEL , - 1 , - 1 , CMYK_COLOUR | COMPLIANT_HEIGHT , - 1 , - 1 , - 1 , - 1 , - 1 , 0 , 0 , { 0 , 0 , " " } , " 100,85,0,20 " , " FFFFFF00 " , 0 , " 123 " , " " , 0 , " channel_cmyk_nobg.png " , " " } ,
2020-04-04 07:40:59 +13:00
} ;
2020-05-06 09:28:25 +12:00
int data_size = ARRAY_SIZE ( data ) ;
2021-06-24 02:00:49 +12:00
int i , length , ret ;
struct zint_symbol * symbol ;
2020-04-04 07:40:59 +13:00
2021-06-14 11:48:29 +12:00
const char * data_dir = " /backend/tests/data/png " ;
const char * png = " out.png " ;
char expected_file [ 1024 ] ;
2020-04-04 07:40:59 +13:00
char escaped [ 1024 ] ;
int escaped_size = 1024 ;
2020-10-01 00:19:12 +13:00
char * text ;
2020-04-04 07:40:59 +13:00
- API: add new zint_symbol `dpmm` field for output resolution (BMP/
EMF/PCX/PNG/TIF only, i.e. excluding EPS, GIF & SVG)
- Add support for specifying scale by X-dimension and resolution
with new option `--scalexdimdp` for CLI/Tcl & new API function
`ZBarcode_Scale_From_XdimDp()` (+ `ZBarcode_XdimDp_From_Scale()`
& `ZBarcode_Default_Xdim()`) and new GUI popup; manual: document
- BMP/EMF/PCX/PNG/TIF: use new `dpmm` resolution field (for EMF
following Inkscape)
- backend_qt: add `dpmm()`, `vectorWidth()`, `vectorHeight()`,
`noPng()`, `getVersion()`, `takesGS1AIData()`, & `XdimDp` stuff
incl. new `QZintXdimDp` struct for passing around scale vars &
use in `getAsCLI()`; add comments
- Raise `scale` limit to 200 (from 100) to allow for large dpmm
- output: create directories & subdirectories as necessary for
output path using new function `out_fopen()` and use in BMP/EMF/
EPS/GIF/PCX/PNG/SVG/TIF
- DPLEIT/DPIDENT: format HRT according to (incomplete)
documentation, and set default height to 72X (from 50X)
- CODE128B renamed to CODE128AB as can use subsets A and/or B
- CODABAR: fix minimum height calc
- EMF: fix indexing of handles (zero-based not 1-based)
- GUI: fix symbology zap (previous technique of clearing and
re-loading settings without doing a sync no longer works);
fix UPCEAN guard descent enable
- MAILMARK: better error message if input < 14 characters
- GUI: add "Default" button for DAFT tracker ratio & enable/disable
various default buttons; use new `takesGS1AIData()` to
enable/disable GS1-specific checkboxes
- CLI: use new `validate_float()` to parse float options (7
significant digits allowed only, no scientific notation)
- DATAMATRIX/GRIDMATRIX/PDF417/QR/ULTRA: micro-optimize structapp
ID parse
- library/CLI: fiddle with static asserts (make CHAR_BIT sensitive,
supposedly)
- win32/README: update building libpng (assembly removed)
- README.linux: document incompatibility of Qt6 >= 6.3
- manual: expand Barcode Studio waffle
- test suite: change range separator to hyphen and allow multiple
excludes
2022-12-03 10:39:01 +13:00
const char * const have_identify = testUtilHaveIdentify ( ) ;
2021-06-24 02:00:49 +12:00
testStart ( " test_print " ) ;
2022-09-13 06:26:04 +12:00
if ( p_ctx - > generate ) {
2021-06-17 04:56:32 +12:00
char data_dir_path [ 1024 ] ;
assert_nonzero ( testUtilDataPath ( data_dir_path , sizeof ( data_dir_path ) , data_dir , NULL ) , " testUtilDataPath(%s) == 0 \n " , data_dir ) ;
2021-06-24 02:00:49 +12:00
if ( ! testUtilDirExists ( data_dir_path ) ) {
ret = testUtilMkDir ( data_dir_path ) ;
assert_zero ( ret , " testUtilMkDir(%s) ret %d != 0 (%d: %s) \n " , data_dir_path , ret , errno , strerror ( errno ) ) ;
2020-05-06 09:28:25 +12:00
}
2020-04-04 07:40:59 +13:00
}
2021-06-24 02:00:49 +12:00
for ( i = 0 ; i < data_size ; i + + ) {
int text_length ;
2020-04-04 07:40:59 +13:00
2022-09-13 06:26:04 +12:00
if ( testContinue ( p_ctx , i ) ) continue ;
2020-05-06 09:28:25 +12:00
2021-06-24 02:00:49 +12:00
symbol = ZBarcode_Create ( ) ;
2020-04-04 07:40:59 +13:00
assert_nonnull ( symbol , " Symbol not created \n " ) ;
2021-06-24 02:00:49 +12:00
length = testUtilSetSymbol ( symbol , data [ i ] . symbology , data [ i ] . input_mode , - 1 /*eci*/ , data [ i ] . option_1 , data [ i ] . option_2 , - 1 , data [ i ] . output_options , data [ i ] . data , - 1 , debug ) ;
2020-10-01 00:19:12 +13:00
if ( data [ i ] . show_hrt ! = - 1 ) {
symbol - > show_hrt = data [ i ] . show_hrt ;
2020-04-04 07:40:59 +13:00
}
2020-10-01 00:19:12 +13:00
if ( data [ i ] . height ) {
symbol - > height = data [ i ] . height ;
2020-04-04 07:40:59 +13:00
}
2020-10-01 00:19:12 +13:00
if ( data [ i ] . scale ) {
symbol - > scale = data [ i ] . scale ;
}
2021-03-19 13:12:13 +13:00
if ( data [ i ] . border_width ! = - 1 ) {
symbol - > border_width = data [ i ] . border_width ;
2020-10-01 00:19:12 +13:00
}
2020-11-02 07:32:55 +13:00
if ( data [ i ] . whitespace_width ! = - 1 ) {
symbol - > whitespace_width = data [ i ] . whitespace_width ;
}
2021-05-26 07:42:26 +12:00
if ( data [ i ] . whitespace_height ! = - 1 ) {
symbol - > whitespace_height = data [ i ] . whitespace_height ;
}
Add Structured Append support for AZTEC, CODEONE, DATAMATRIX, DOTCODE,
GRIDMATRIX, MAXICODE, MICROPDF417, PDF417, QRCODE, ULTRA
DOTCODE: use pre-calculated generator poly coeffs in Reed-Solomon for
performance improvement
PDF417/MICROPDF417: use common routine pdf417_initial()
GUI: code lines <= 118, shorthand widget_obj(),
shorten calling upcean_addon_gap(), upcean_guard_descent()
various backend: var name debug -> debug_print
2021-09-29 09:42:44 +13:00
if ( data [ i ] . structapp . count ) {
symbol - > structapp = data [ i ] . structapp ;
}
2020-11-02 07:32:55 +13:00
if ( * data [ i ] . fgcolour ) {
strcpy ( symbol - > fgcolour , data [ i ] . fgcolour ) ;
}
if ( * data [ i ] . bgcolour ) {
strcpy ( symbol - > bgcolour , data [ i ] . bgcolour ) ;
}
2023-02-11 03:44:10 +13:00
symbol - > text_gap = data [ i ] . text_gap ;
2020-10-01 00:19:12 +13:00
if ( strlen ( data [ i ] . composite ) ) {
text = data [ i ] . composite ;
strcpy ( symbol - > primary , data [ i ] . data ) ;
} else {
text = data [ i ] . data ;
}
2021-06-24 02:00:49 +12:00
text_length = ( int ) strlen ( text ) ;
2020-04-04 07:40:59 +13:00
2020-10-04 10:51:08 +13:00
ret = ZBarcode_Encode ( symbol , ( unsigned char * ) text , text_length ) ;
2021-06-20 00:11:23 +12:00
assert_equal ( ret , data [ i ] . ret , " i:%d %s ZBarcode_Encode ret %d != %d (%s) \n " , i , testUtilBarcodeName ( data [ i ] . symbology ) , ret , data [ i ] . ret , symbol - > errtxt ) ;
2020-04-04 07:40:59 +13:00
strcpy ( symbol - > outfile , png ) ;
ret = ZBarcode_Print ( symbol , 0 ) ;
2021-06-20 00:11:23 +12:00
assert_zero ( ret , " i:%d %s ZBarcode_Print %s ret %d != 0 (%s) \n " , i , testUtilBarcodeName ( data [ i ] . symbology ) , symbol - > outfile , ret , symbol - > errtxt ) ;
2020-04-04 07:40:59 +13:00
2021-06-14 11:48:29 +12:00
assert_nonzero ( testUtilDataPath ( expected_file , sizeof ( expected_file ) , data_dir , data [ i ] . expected_file ) , " i:%d testUtilDataPath == 0 \n " , i ) ;
2022-09-13 06:26:04 +12:00
if ( p_ctx - > generate ) {
2021-10-31 10:00:31 +13:00
printf ( " /*%3d*/ { %s, %s, %d, %s, %d, %d, %d, %d, %d, %.5g, %.5g, \" %s \" , \" %s \" , \" %s \" , \" %s \" , %s, \" %s \" , \" %s \" }, \n " ,
2021-03-19 13:12:13 +13:00
i , testUtilBarcodeName ( data [ i ] . symbology ) , testUtilInputModeName ( data [ i ] . input_mode ) , data [ i ] . border_width , testUtilOutputOptionsName ( data [ i ] . output_options ) ,
2021-05-26 07:42:26 +12:00
data [ i ] . whitespace_width , data [ i ] . whitespace_height , data [ i ] . show_hrt , data [ i ] . option_1 , data [ i ] . option_2 , data [ i ] . height , data [ i ] . scale , data [ i ] . fgcolour , data [ i ] . bgcolour ,
2021-10-31 10:00:31 +13:00
testUtilEscape ( data [ i ] . data , length , escaped , escaped_size ) , data [ i ] . composite , testUtilErrorName ( data [ i ] . ret ) , data [ i ] . expected_file , data [ i ] . comment ) ;
2021-06-24 02:00:49 +12:00
ret = testUtilRename ( symbol - > outfile , expected_file ) ;
assert_zero ( ret , " i:%d testUtilRename(%s, %s) ret %d != 0 \n " , i , symbol - > outfile , expected_file , ret ) ;
2020-05-06 09:28:25 +12:00
if ( have_identify ) {
- API: add new zint_symbol `dpmm` field for output resolution (BMP/
EMF/PCX/PNG/TIF only, i.e. excluding EPS, GIF & SVG)
- Add support for specifying scale by X-dimension and resolution
with new option `--scalexdimdp` for CLI/Tcl & new API function
`ZBarcode_Scale_From_XdimDp()` (+ `ZBarcode_XdimDp_From_Scale()`
& `ZBarcode_Default_Xdim()`) and new GUI popup; manual: document
- BMP/EMF/PCX/PNG/TIF: use new `dpmm` resolution field (for EMF
following Inkscape)
- backend_qt: add `dpmm()`, `vectorWidth()`, `vectorHeight()`,
`noPng()`, `getVersion()`, `takesGS1AIData()`, & `XdimDp` stuff
incl. new `QZintXdimDp` struct for passing around scale vars &
use in `getAsCLI()`; add comments
- Raise `scale` limit to 200 (from 100) to allow for large dpmm
- output: create directories & subdirectories as necessary for
output path using new function `out_fopen()` and use in BMP/EMF/
EPS/GIF/PCX/PNG/SVG/TIF
- DPLEIT/DPIDENT: format HRT according to (incomplete)
documentation, and set default height to 72X (from 50X)
- CODE128B renamed to CODE128AB as can use subsets A and/or B
- CODABAR: fix minimum height calc
- EMF: fix indexing of handles (zero-based not 1-based)
- GUI: fix symbology zap (previous technique of clearing and
re-loading settings without doing a sync no longer works);
fix UPCEAN guard descent enable
- MAILMARK: better error message if input < 14 characters
- GUI: add "Default" button for DAFT tracker ratio & enable/disable
various default buttons; use new `takesGS1AIData()` to
enable/disable GS1-specific checkboxes
- CLI: use new `validate_float()` to parse float options (7
significant digits allowed only, no scientific notation)
- DATAMATRIX/GRIDMATRIX/PDF417/QR/ULTRA: micro-optimize structapp
ID parse
- library/CLI: fiddle with static asserts (make CHAR_BIT sensitive,
supposedly)
- win32/README: update building libpng (assembly removed)
- README.linux: document incompatibility of Qt6 >= 6.3
- manual: expand Barcode Studio waffle
- test suite: change range separator to hyphen and allow multiple
excludes
2022-12-03 10:39:01 +13:00
ret = testUtilVerifyIdentify ( have_identify , expected_file , debug ) ;
2021-06-14 11:48:29 +12:00
assert_zero ( ret , " i:%d %s identify %s ret %d != 0 \n " , i , testUtilBarcodeName ( data [ i ] . symbology ) , expected_file , ret ) ;
2020-05-06 09:28:25 +12:00
}
} else {
assert_nonzero ( testUtilExists ( symbol - > outfile ) , " i:%d testUtilExists(%s) == 0 \n " , i , symbol - > outfile ) ;
2021-06-14 11:48:29 +12:00
assert_nonzero ( testUtilExists ( expected_file ) , " i:%d testUtilExists(%s) == 0 \n " , i , expected_file ) ;
2020-05-06 09:28:25 +12:00
2021-06-14 11:48:29 +12:00
ret = testUtilCmpPngs ( symbol - > outfile , expected_file ) ;
assert_zero ( ret , " i:%d %s testUtilCmpPngs(%s, %s) %d != 0 \n " , i , testUtilBarcodeName ( data [ i ] . symbology ) , symbol - > outfile , expected_file , ret ) ;
ret = testUtilCmpBins ( symbol - > outfile , expected_file ) ;
assert_zero ( ret , " i:%d %s testUtilCmpBins(%s, %s) %d != 0 \n " , i , testUtilBarcodeName ( data [ i ] . symbology ) , symbol - > outfile , expected_file , ret ) ;
2023-05-11 08:29:09 +12:00
assert_zero ( testUtilRemove ( symbol - > outfile ) , " i:%d testUtilRemove(%s) != 0 \n " , i , symbol - > outfile ) ;
2020-05-06 09:28:25 +12:00
}
2020-04-04 07:40:59 +13:00
ZBarcode_Delete ( symbol ) ;
}
testFinish ( ) ;
}
2022-09-13 06:26:04 +12:00
static void test_outfile ( const testCtx * const p_ctx ) {
2021-07-27 02:29:05 +12:00
int ret ;
2022-12-07 04:09:06 +13:00
int skip_readonly_test = 0 ;
2021-07-27 02:29:05 +12:00
struct zint_symbol symbol = { 0 } ;
unsigned char data [ ] = { " 1 " } ;
2022-09-13 06:26:04 +12:00
( void ) p_ctx ;
2021-07-27 02:29:05 +12:00
testStart ( " test_outfile " ) ;
symbol . symbology = BARCODE_CODE128 ;
symbol . bitmap = data ;
symbol . bitmap_width = symbol . bitmap_height = 1 ;
- API: add new zint_symbol `dpmm` field for output resolution (BMP/
EMF/PCX/PNG/TIF only, i.e. excluding EPS, GIF & SVG)
- Add support for specifying scale by X-dimension and resolution
with new option `--scalexdimdp` for CLI/Tcl & new API function
`ZBarcode_Scale_From_XdimDp()` (+ `ZBarcode_XdimDp_From_Scale()`
& `ZBarcode_Default_Xdim()`) and new GUI popup; manual: document
- BMP/EMF/PCX/PNG/TIF: use new `dpmm` resolution field (for EMF
following Inkscape)
- backend_qt: add `dpmm()`, `vectorWidth()`, `vectorHeight()`,
`noPng()`, `getVersion()`, `takesGS1AIData()`, & `XdimDp` stuff
incl. new `QZintXdimDp` struct for passing around scale vars &
use in `getAsCLI()`; add comments
- Raise `scale` limit to 200 (from 100) to allow for large dpmm
- output: create directories & subdirectories as necessary for
output path using new function `out_fopen()` and use in BMP/EMF/
EPS/GIF/PCX/PNG/SVG/TIF
- DPLEIT/DPIDENT: format HRT according to (incomplete)
documentation, and set default height to 72X (from 50X)
- CODE128B renamed to CODE128AB as can use subsets A and/or B
- CODABAR: fix minimum height calc
- EMF: fix indexing of handles (zero-based not 1-based)
- GUI: fix symbology zap (previous technique of clearing and
re-loading settings without doing a sync no longer works);
fix UPCEAN guard descent enable
- MAILMARK: better error message if input < 14 characters
- GUI: add "Default" button for DAFT tracker ratio & enable/disable
various default buttons; use new `takesGS1AIData()` to
enable/disable GS1-specific checkboxes
- CLI: use new `validate_float()` to parse float options (7
significant digits allowed only, no scientific notation)
- DATAMATRIX/GRIDMATRIX/PDF417/QR/ULTRA: micro-optimize structapp
ID parse
- library/CLI: fiddle with static asserts (make CHAR_BIT sensitive,
supposedly)
- win32/README: update building libpng (assembly removed)
- README.linux: document incompatibility of Qt6 >= 6.3
- manual: expand Barcode Studio waffle
- test suite: change range separator to hyphen and allow multiple
excludes
2022-12-03 10:39:01 +13:00
strcpy ( symbol . outfile , " test_png_out.png " ) ;
2022-12-07 04:09:06 +13:00
# ifndef _WIN32
skip_readonly_test = getuid ( ) = = 0 ; /* Skip if running as root on Unix as can't create read-only file */
# endif
if ( ! skip_readonly_test ) {
( void ) testUtilRmROFile ( symbol . outfile ) ; /* In case lying around from previous fail */
assert_nonzero ( testUtilCreateROFile ( symbol . outfile ) , " png_pixel_plot testUtilCreateROFile(%s) fail (%d: %s) \n " , symbol . outfile , errno , strerror ( errno ) ) ;
ret = png_pixel_plot ( & symbol , data ) ;
assert_equal ( ret , ZINT_ERROR_FILE_ACCESS , " png_pixel_plot ret %d != ZINT_ERROR_FILE_ACCESS (%d) (%s) \n " , ret , ZINT_ERROR_FILE_ACCESS , symbol . errtxt ) ;
assert_zero ( testUtilRmROFile ( symbol . outfile ) , " png_pixel_plot testUtilRmROFile(%s) != 0 (%d: %s) \n " , symbol . outfile , errno , strerror ( errno ) ) ;
}
2021-07-27 02:29:05 +12:00
symbol . output_options | = BARCODE_STDOUT ;
2023-06-12 12:25:55 +12:00
printf ( " >>>Begin ignore (PNG to stdout) \n " ) ; fflush ( stdout ) ;
2021-07-27 02:29:05 +12:00
ret = png_pixel_plot ( & symbol , data ) ;
2023-06-12 12:25:55 +12:00
printf ( " \n <<<End ignore (PNG to stdout) \n " ) ; fflush ( stdout ) ;
2021-07-27 02:29:05 +12:00
assert_zero ( ret , " png_pixel_plot ret %d != 0 (%s) \n " , ret , symbol . errtxt ) ;
testFinish ( ) ;
}
# include <png.h>
# include <setjmp.h>
struct wpng_error_type {
struct zint_symbol * symbol ;
jmp_buf jmpbuf ;
} ;
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
INTERNAL void wpng_error_handler_test ( png_structp png_ptr , png_const_charp msg ) ;
2021-07-27 02:29:05 +12:00
2022-09-13 06:26:04 +12:00
static void test_wpng_error_handler ( const testCtx * const p_ctx ) {
2021-07-27 02:29:05 +12:00
int ret ;
char filename [ ] = " out.png " ;
FILE * fp ;
struct wpng_error_type wpng_error ;
struct zint_symbol symbol = { 0 } ;
png_structp png_ptr ;
png_infop info_ptr ;
2022-09-13 06:26:04 +12:00
( void ) p_ctx ;
2021-07-27 02:29:05 +12:00
testStart ( " test_wpng_error_handler " ) ;
wpng_error . symbol = & symbol ;
2022-08-19 09:25:09 +12:00
/* Create empty file */
2023-05-11 08:29:09 +12:00
( void ) testUtilRemove ( filename ) ; /* In case junk hanging around */
fp = testUtilOpen ( filename , " w+ " ) ;
assert_nonnull ( fp , " testUtilOpen(%s) failed \n " , filename ) ;
2021-07-27 02:29:05 +12:00
ret = fclose ( fp ) ;
assert_zero ( ret , " fclose(%s) %d != 0 \n " , filename , ret ) ;
2022-08-19 09:25:09 +12:00
/* Re-open for read, which will cause libpng to error */
2023-05-11 08:29:09 +12:00
fp = testUtilOpen ( filename , " r " ) ;
assert_nonnull ( fp , " testUtilOpen(%s) for read failed \n " , filename ) ;
2021-07-27 02:29:05 +12:00
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
png_ptr = png_create_write_struct ( PNG_LIBPNG_VER_STRING , & wpng_error , wpng_error_handler_test , NULL ) ;
2021-07-27 02:29:05 +12:00
assert_nonnull ( png_ptr , " png_create_write_struct failed \n " ) ;
info_ptr = png_create_info_struct ( png_ptr ) ;
assert_nonnull ( info_ptr , " png_create_info_struct failed \n " ) ;
if ( setjmp ( wpng_error . jmpbuf ) ) {
png_destroy_write_struct ( & png_ptr , & info_ptr ) ;
ret = fclose ( fp ) ;
assert_zero ( ret , " fclose(%s) %d != 0 \n " , filename , ret ) ;
assert_nonnull ( strstr ( symbol . errtxt , " 635: libpng error: " ) , " strstr(%s) NULL \n " , symbol . errtxt ) ;
2023-05-11 08:29:09 +12:00
assert_zero ( testUtilRemove ( filename ) , " testUtilRemove(%s) != 0 (%d: %s) \n " , filename , errno , strerror ( errno ) ) ;
2021-07-27 02:29:05 +12:00
} else {
png_init_io ( png_ptr , fp ) ;
2022-08-19 09:25:09 +12:00
/* This should fail and jmp to setjmp */
2021-07-27 02:29:05 +12:00
png_write_info ( png_ptr , info_ptr ) ;
assert_zero ( 1 , " libpng error setjmp failed \n " ) ;
}
testFinish ( ) ;
}
2022-08-19 09:25:09 +12:00
/* Check compliant height printable for max CODABLOCKF with 44 rows * ((62 cols) * 0.55 + 3)) = 1632.4 */
2022-09-13 06:26:04 +12:00
static void test_large_compliant_height ( const testCtx * const p_ctx ) {
2021-10-21 11:05:30 +13:00
int ret ;
struct zint_symbol * symbol = NULL ;
const char pattern [ ] = { " 1 " } ;
const int codablockf_max = 2726 ;
char data_buf [ 2726 + 1 ] ;
2022-09-13 06:26:04 +12:00
( void ) p_ctx ;
2021-10-21 11:05:30 +13:00
testStart ( " test_large_compliant_height " ) ;
symbol = ZBarcode_Create ( ) ;
assert_nonnull ( symbol , " Symbol not created \n " ) ;
symbol - > symbology = BARCODE_CODABLOCKF ;
symbol - > output_options | = COMPLIANT_HEIGHT ;
testUtilStrCpyRepeat ( data_buf , pattern , codablockf_max ) ;
assert_equal ( codablockf_max , ( int ) strlen ( data_buf ) , " length %d != strlen(data_buf) %d \n " , codablockf_max , ( int ) strlen ( data_buf ) ) ;
ret = ZBarcode_Encode_and_Print ( symbol , ( const unsigned char * ) data_buf , codablockf_max , 0 ) ;
assert_zero ( ret , " ZBarcode_Encode_and_Print ret %d != 0 (%s) \n " , ret , symbol - > errtxt ) ;
2023-05-11 08:29:09 +12:00
assert_zero ( testUtilRemove ( symbol - > outfile ) , " testUtilRemove(%s) != 0 \n " , symbol - > outfile ) ;
2021-10-21 11:05:30 +13:00
ZBarcode_Delete ( symbol ) ;
testFinish ( ) ;
}
2020-05-06 09:28:25 +12:00
int main ( int argc , char * argv [ ] ) {
2022-09-13 06:26:04 +12:00
testFunction funcs [ ] = { /* name, func */
{ " test_pixel_plot " , test_pixel_plot } ,
{ " test_print " , test_print } ,
{ " test_outfile " , test_outfile } ,
{ " test_wpng_error_handler " , test_wpng_error_handler } ,
{ " test_large_compliant_height " , test_large_compliant_height } ,
2020-05-06 09:28:25 +12:00
} ;
testRun ( argc , argv , funcs , ARRAY_SIZE ( funcs ) ) ;
2020-04-04 07:40:59 +13:00
testReport ( ) ;
return 0 ;
}
RMQR: update to ISO/IEC 23941:2022 - R13x77 numeric cclens change 8 -> 7
QRCODE: use stricter interpretation of ZINT_FULL_MULTIBYTE, excluding
certain trailing bytes
libzint: fix some confusing error messages introduced by segment stuff
general: new escape chars \U, \d and \o
backend_qt: fudge rendering of border rectangles due to scaling/translation
rounding errors TODO: better fudge
GUI: foreground/background colours -> text boxes and icon buttons, add swap
button, independently movable picker (NULL parent), preview colour changes,
preview Data Window changes, add clear data (del) buttons, add zap button
and Factory Reset menu option, various other fixes
libzint: remove STATIC_UNLESS_ZINT_TEST, use wrappers
CMake: add find package QtSvg, remove QtXml
manual: split symbology and general specs and sort, move DAFT to 4-state,
UPC/EAN -> EAN/UPC, DataBar -> GS1 DataBar always, expand MAILMARK info,
various other fiddlings
man page: options or -> |, expand MSI Plessey check digit options
README.linux: add packages info
license: add SPDX-License-Identifier to touched files
2022-06-10 08:52:02 +12:00
/* vim: set ts=4 sw=4 et : */