Graphics and media/Collections of tips and tricks/Create barcodes
< Graphics and media | Collections of tips and tricks
Jump to navigation
Jump to search
Revision as of 18:16, 18 January 2025 by Garulfoo (talk | contribs) (Garulfoo moved page Barcodes to Graphics and media/Collections of tips and tricks/Create barcodes without leaving a redirect)
How to create barcodes from within ConTeXt (MkIV/LMTX)?
Zint module
- Download
zintfrom https://www.zint.org.uk (Windows, Linux) or install it with Homebrew or MacPorts (MacOS). - MkIV: The
zintexecutable must be in yourPATH. - LMTX: LuaMetaTeX uses the library. On Windows, that’s
libzint.dll, on Linux and MacOSlibzint.so(on MacOS the actual file name islibzint.dylib, but LuaMetaTeX expects.so).- Find that file, it should be in
/usr/local/lib(Linux, Homebrew) or/opt/local/lib(MacPorts). - Create the path
$TEXROOT/tex/texmf-$ARCH/bin/lib/luametatex/zint. - Copy or symlink the library into it (on MacOS remember naming it
libzint.so). - Run
mtxrun --generateto update the file database.
- Find that file, it should be in
\usemodule[zint] \barcode[alternative=isbnx, text=9783865419026, width=4cm] \barcode[alternative=qrcode, text={https://wiki.contextgarden.net}, width=3cm]
Zint can produce about 40 different code types (“alternatives“). Try the name (but lowercase with spaces) or look into the source
Barcodes module
The old module uses PStricks and is deprecated. (Source)
barcode.lua
In 2012, Patrick published a small LuaTeX library on Stack Exchange. It can only create EAN codes, but it has no dependencies and doesn’t even use MetaPost.
\loadluafile[barcode] \define[1]\luabarcode{\directlua{generate_barcode_lua("#1")}} \luabarcode{9783865419026}