JsBarcode icon indicating copy to clipboard operation
JsBarcode copied to clipboard

Barcode generation library written in JavaScript that works in both the browser and on Node.js

Results 125 JsBarcode issues
Sort by recently updated
recently updated
newest added

Which format should I use (CODE128; EAN / UPC; CODE39; ITF-14; MSI; Pharmacode; Codabar;) to generate a [brazilian "Boleto bancário" or bank slip](https://pt.wikipedia.org/wiki/Boleto_banc%C3%A1rio)? Or is it possible to do this...

JS Barcode seems to be creating a memory leak. ![Screen Shot 2019-07-12 at 2 26 04 PM](https://user-images.githubusercontent.com/161068/61150264-0580bb00-a4b1-11e9-849d-3874feaf1616.png) I'm no expert, but I believe the problem lies in line 56 of...

Can we show barcode text position both top and bottom? I have tried following: `` or ``

Is it possible to generate a barcode with the text that is recessed (similar to UPC) but using type "auto"? I'm trying to generate a barcode that looks like this:...

This PR changes the Typscript typings for `BaseOptions.format` from `string` to `type Format = 'CODE39 | 'CODE128' | ...`. This will help us spell and case the formats correctly and...

When I draw the barcode, the text becomes a mosaic. ![image](https://user-images.githubusercontent.com/17265888/53618834-0a428200-3c28-11e9-9eef-f7fcf1eb0b4a.png) code show as below ``` javascript var canvas = document.createElement("canvas"); JsBarcode(canvas, md5Key, { format: "CODE128", height:100, fontSize:10, margin:1, fontOptions:'italic',...

Everytime I try to run the JSBarcode code I get the following error in chrome: > Uncaught TypeError: Encoder is not a constructor at encode (JsBarcode.all.js:1322) at JsBarcode.all.js:1393 at ErrorHandler.wrapBarcodeCall...

I don't know if this documented, but "width" can be not only int but float (this is required to draw fitted svg barcodes). But since it works using options it...

It seems that many of the barcode types will automatically generate a checksum character if the data meets certain requirements: https://github.com/lindell/JsBarcode/blob/c2c7a5aec7eac60f6aee26bd26f4915cb319dbf6/src/barcodes/EAN_UPC/EAN13.js#L25-L27 I use this library to generate barcodes for user...

The parsed size is too huge.(webpack^2.6.1) ![tim 20171107173147](https://user-images.githubusercontent.com/20217146/32486518-d638fb70-c3e1-11e7-9935-0a552ef3ea5b.png) ``` bash # It doesn't work. # How to import a single sub library? import JsBarcode from 'jsbarcode/bin/barcodes/CODE128' ```