Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.42 KB

README.md

File metadata and controls

22 lines (18 loc) · 1.42 KB

latin1-barcode-js (Code128)

Tests

Javascript functions to encode symbols from the Latin-1 (ISO/IEC 8859-1) charset in a Code128 barcode. Beware, this project is in its early stages. All three encoding modes Code128A, B and C are supported. Most inputs will be short enough and fully optimized. Long inputs are not always optimized to save runtime. Inputs containing consecutive, non-ASCII characters might also be non-optimal, though in practice this case should be rare.

zbar does not supports the Latin-1 extension, which is why we can't automatically test this charset. If you know a command line tool to read Code128 barcodes with Latin-1 extension please let me know.

Usage

<canvas id="myCanvas" width="400" height="100">
Your browser does not support the canvas element.
</canvas>
<script src="latin1-barcode.js"></script> 
<script>
latin1_barcode("latin1 §ÄÖÜ", "myCanvas", 400, 100);
</script>

Download