mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +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
This commit is contained in:
ChangeLogREADME.linux
backend
2of5.cbmp.ccodablock.ccode128.ccommon.cdmatrix.cemf.cgif.cgridmtx.clibrary.cmailmark.cmedical.coutput.coutput.hpcx.cpdf417.cpng.cps.cqr.craster.csvg.c
tests
READMEtest_2of5.ctest_bmp.ctest_code128.ctest_eci.ctest_emf.ctest_gif.ctest_library.ctest_mailmark.ctest_output.ctest_pcx.ctest_png.ctest_print.ctest_ps.ctest_qr.ctest_raster.ctest_svg.ctest_tif.ctest_vector.ctestcommon.ctestcommon.h
tif.cultra.czint.hdata
emf
code128_egrave_bold.emfcode128_egrave_bold_100dpi.emfcode128_egrave_bold_1200dpi.emfcode128_egrave_bold_150dpi.emfcode128_egrave_bold_300dpi.emfcode128_egrave_bold_400dpi.emfcode39_rotate_180.emfcode39_rotate_270.emfcode39_rotate_90.emfcode39_rotate_90_300dpi.emfean13_5addon_#185.emfean13_5addon_ggs_5.2.2.5.2-2.emfitf14_bold.emfitf14_bold_600dpi.emfmaxicode_#185.emfmaxicode_#185_150dpi.emfmaxicode_#185_600dpi.emfmaxicode_rotate_90_nobg.emfmaxicode_rotate_90_nobg_300dpi.emftelenum_fg_bg.emftelenum_fg_bg_150dpi.emfultracode_fg_bg.emfultracode_fg_bg_box2.emfultracode_fg_bg_box2_600dpi.emfupca_2addon_ggs_5.2.6.6-5.emfupce_2addon.emfupce_2addon_150dpi.emfupce_2addon_small_bold.emf
print
backend_qt
backend_tcl
docs
Makefile
images
code128ab.svgdpident.svgdpleit.svggui_appearance.pnggui_black_eye.pnggui_delete.pnggui_scaling.pnggui_set_printing_scale.pnggui_swap.pnggui_white_eye.pnggui_zap.png
manual.pmdmanual.txtzint.1zint.1.pmdzint_images.shfrontend
frontend_qt
CMakeLists.txtcliwindow.cppcliwindow.hextData.uiextExport.uiextScale.uifrontend_qt.profrontend_qt_zintdll.profrontend_vc8.progrpDAFT.uigrpUPCA.uigrpUPCEAN.uimainWindow.uimainwindow.cppmainwindow.h
res
resources.qrcscalewindow.cppscalewindow.hwin32
@ -62,21 +62,25 @@ To run a single dataset item in a single test function, use '-i <index>':
|
||||
|
||||
backend/tests/test_dotcode -f input -i 2
|
||||
|
||||
To run a range of dataset items in a single test function, use '-i <start>,<end>':
|
||||
To run a range of dataset items in a single test function, use '-i <start>-<end>':
|
||||
|
||||
backend/tests/test_dotcode -f input -i 2,5
|
||||
backend/tests/test_dotcode -f input -i 2-5
|
||||
|
||||
To exclude a single dataset item in a single test function, use '-x <index>':
|
||||
|
||||
backend/tests/test_dotcode -f input -x 4
|
||||
|
||||
This can also take a range, '-x <start>,<end>':
|
||||
This can also take a range, '-x <start>-<end>':
|
||||
|
||||
backend/tests/test_dotcode -f input -x 4,6
|
||||
|
||||
Exclude can be used multiple times (unlike '-i'):
|
||||
|
||||
backend/tests/test_dotcode -f input -x 4 -x 6-8
|
||||
|
||||
The include and exclude options can be used together:
|
||||
|
||||
backend/tests/test_dotcode -f input -i 2,7 -x 4
|
||||
backend/tests/test_dotcode -f input -i 2-7 -x 4 -x 6
|
||||
|
||||
To show debug info (if any), use '-d <flag>':
|
||||
|
||||
|
Reference in New Issue
Block a user