2010-03-02 11:34:35 +13:00
|
|
|
Zint and libzint 2.3.1
|
2009-08-06 20:36:01 +12:00
|
|
|
----------------------
|
2009-07-18 10:12:39 +12:00
|
|
|
Zint is a suite of programs to allow easy encoding of data in any of the wide range of public domain
|
|
|
|
barcode standards and to allow integration of this capability into your own programs. This version
|
|
|
|
of Zint is able to encode data in the following formats:
|
2008-07-14 09:15:55 +12:00
|
|
|
|
|
|
|
Code 11, Standard Code 2 of 5, IATA Code 2 of 5, Industrial Code 2 of 5, Interleaved Code 2 of 5,
|
|
|
|
Code 2 of 5 Data Logic, ITF-14, Deutche Post Leitcode, Deutche Post Identcode, UPC-A, UPC-E, EAN-2,
|
|
|
|
EAN-5, EAN-8, EAN-13, UK Plessey, MSI Plessey, Telepen Alpha, Telepen Numeric, Code 39,
|
2008-09-03 07:29:22 +12:00
|
|
|
Extended Code 39, Code 93, PZN, Code 23, LOGMARS, Codabar, Pharmacode, Code 128, EAN-128, NVE-18,
|
|
|
|
Code 16k, PDF417, MicroPDF417, Two-Track Pharmacode, PostNet, PLANET, Australia Post 4-State Symbols,
|
|
|
|
RM4SCC, USPS OneCode, GS1 DataBar, DataBar-14, DataBar Limited, DataBar Extended, DataBar Stacked,
|
2010-02-27 21:34:35 +13:00
|
|
|
Composite Symbology, Data Matrix, QR Code, Maxicode, Aztec Code, EAN-13, Micro QR,
|
2009-02-11 12:35:14 +13:00
|
|
|
Korea Post Barcode, HIBC Code 128, HIBC Code 39, HIBC Data Matrix, HIBC PDF417, HIBC MicroPDF417,
|
2009-11-09 11:17:11 +13:00
|
|
|
HIBC QR Code, HIBC Codablock-F, HIBC Aztec Code, Japanese Postal Code, Code 49, Channel Code, Code One,
|
|
|
|
Grid Matrix, FIM and Flattermarken.
|
2008-07-14 09:15:55 +12:00
|
|
|
|
2010-03-02 11:34:35 +13:00
|
|
|
******************************************************************************
|
|
|
|
* PLEASE NOTE: This is just a simple guide to getting Zint working. *
|
|
|
|
* More complete documentation is available from the project website: *
|
|
|
|
* >>> http://www.zint.org.uk <<< *
|
|
|
|
******************************************************************************
|
2008-09-03 07:29:22 +12:00
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
PROJECT STATUS
|
|
|
|
--------------
|
2010-03-02 11:34:35 +13:00
|
|
|
Version 2.3.0:
|
2009-11-09 11:17:11 +13:00
|
|
|
This release features a complete rebuild of QR Code and Micro QR Code functionality which now:
|
|
|
|
|
|
|
|
* Automatically detects and adjusts to Japanese characters
|
|
|
|
* Supports GS1 encoding
|
|
|
|
* Does not require the qrencode library.
|
|
|
|
|
|
|
|
Also new in this release is Grid Matrix support which similarly supports Chinese character encoding.
|
2008-09-03 07:29:22 +12:00
|
|
|
|
2010-03-02 11:34:35 +13:00
|
|
|
Version 2.3.1:
|
|
|
|
Correction of some minor bugs in Code 128 and Data Matrix, addition of --notext option to CLI and
|
|
|
|
better operation of --scale option which now scales human readable text and MaxiCode.
|
2008-07-14 09:15:55 +12:00
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
COMPILING THE CODE
|
|
|
|
------------------
|
2010-03-02 11:34:35 +13:00
|
|
|
The CMake Method: (Linux, BSD and Cygwin)
|
|
|
|
The easiest way to configure compilation is to take advantage of the CMake utilities. You will
|
|
|
|
need to install CMake first. If no Qt libraries are installed then CMake will not attempt to
|
|
|
|
build the Zint Barcode Studio GUI. Similarly if libpng is not detected then CMake will not attempt
|
|
|
|
to compile PNG image support.
|
2008-07-14 09:15:55 +12:00
|
|
|
|
2010-03-02 11:34:35 +13:00
|
|
|
Once CMake is installed follow these steps:
|
2008-07-14 09:15:55 +12:00
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
cd build
|
|
|
|
cmake ..
|
2010-03-02 11:34:35 +13:00
|
|
|
make
|
2009-07-18 10:12:39 +12:00
|
|
|
make install
|
2008-07-14 09:15:55 +12:00
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
The command line program can be accessed by typing
|
2008-07-14 09:15:55 +12:00
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
zint {options} -d {data}
|
2008-07-14 09:15:55 +12:00
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
Notice that the data needs to be entered after all other options. Any options given after the
|
|
|
|
data will be ignored. The GUI can be accessed by typing
|
2008-07-14 09:15:55 +12:00
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
zint-qt
|
2008-07-14 09:15:55 +12:00
|
|
|
|
2010-03-02 11:34:35 +13:00
|
|
|
The MakeFile Method:
|
|
|
|
(Linux, BSD and MinGW)
|
|
|
|
MakeFiles are provided for some systems although this method is depreciated. To compile using
|
|
|
|
this method simply run:
|
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
If compiling on BSD, RHEL or CentOS substitute MakeFile.bsd for the default MakeFiles.
|
|
|
|
If compiling on MinGW substitute MakeFile.mingw for the default MakeFiles.
|
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
MS Windows:
|
2010-03-02 11:34:35 +13:00
|
|
|
Compiling on Cygwin and MinGW are covered above. Compiling with MS Visual Studio is more involved!
|
|
|
|
Full instructions are currently not available but will be placed on the project website as soon
|
|
|
|
as possible.
|
2009-07-18 10:12:39 +12:00
|
|
|
|
|
|
|
Mac OSX:
|
2010-03-02 11:34:35 +13:00
|
|
|
Efforts are currently under way to allow compiling on OSX using the CMake method. If you have
|
|
|
|
any success with compiling Zint on OSX then please get in touch.
|
2009-02-11 12:35:14 +13:00
|
|
|
|
|
|
|
THINGS TO DO
|
|
|
|
------------
|
2009-07-18 10:12:39 +12:00
|
|
|
If you are interested in improving this package then here are a few ideas.
|
2009-02-11 12:35:14 +13:00
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
Backend
|
|
|
|
-------
|
|
|
|
* Create filters for more output file formats.
|
|
|
|
* Add ECI character support to allow encoding in more languages than are covered
|
|
|
|
by the Latin-1 character set.
|
|
|
|
* The code was developed to be easy to understand rather than efficient so may benefit
|
|
|
|
from some memory optimisation for embedded systems.
|
2009-02-11 12:35:14 +13:00
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
GUI Frontend
|
|
|
|
------------
|
|
|
|
* Allow copying of generated barcodes to the clipboard with a "Copy" button.
|
2009-05-20 06:11:00 +12:00
|
|
|
* Allow dragging and dropping to external apps.
|
2009-02-11 12:35:14 +13:00
|
|
|
|
|
|
|
Packaging
|
|
|
|
---------
|
|
|
|
Binary packages are needed for distribution in the following formats
|
2009-07-14 07:03:28 +12:00
|
|
|
* RPMs for various Linux distros (.spec file now available thanks to Radist)
|
2009-02-11 12:35:14 +13:00
|
|
|
* Install binaries for Mac OSX
|
|
|
|
|
|
|
|
Translations
|
|
|
|
------------
|
|
|
|
Documentation is currently only in English. If you have the knowledge and the
|
|
|
|
time please consider translating into other languages.
|
|
|
|
|
|
|
|
Research
|
|
|
|
--------
|
|
|
|
The following standards would be welcomed in Zint but the full documentation has
|
|
|
|
not yet been found.
|
|
|
|
* DPD Code
|
|
|
|
* Italian Postal Code
|
|
|
|
|
2009-07-18 10:12:39 +12:00
|
|
|
|
|
|
|
CONTACT ME
|
|
|
|
----------
|
|
|
|
The home of libzint is:
|
|
|
|
|
|
|
|
http://www.sourceforge.net/projects/zint
|
|
|
|
|
|
|
|
and the home for information about Zint is:
|
|
|
|
|
|
|
|
http://www.zint.org.uk
|
|
|
|
|
|
|
|
I am keen to hear your ideas / recieve bug reports at robin@zint.org.uk
|
|
|
|
|
|
|
|
Thanks for your interest in libzint.
|
|
|
|
Happy encoding.
|
|
|
|
|
|
|
|
Robin.
|
|
|
|
|
|
|
|
|
|
|
|
|