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

I am trying to generate a CODE39 bar code that contains an asterisk but it generates this error => 0x800a139e - JavaScript runtime error: "W20121921377700*" is not a valid input...

Hi, I'm using your library from ReactJS. How can I handle the exception when I provide the barcode value of `1` and the format is `EAN13`? I keep getting the...

I am trying to create multiple barcodes to later print in multiple pages. My issue is that when looking on an array of data to put in the barcode, I...

var JsBarcode = require('jsbarcode'); const { createCanvas } = require('canvas'); const canvas = createCanvas(0, 0); // create a bar code with the number/text I want and populate the canvas with...

With the auto mode, my postal code (2 letter, 9 digits, 2 letter) generated as B(3)-C(8)-A(2) coding. I need B(3)-C(8)-**B**(2) format, so I tried: ``` JsBarcode('#svg-barcode') .options(barcodeConfig) .CODE128B(code.substr(0, 3), {})...

Users can input 12 or 13 digits to generate an EAN13 barcode. If they only use 12, how do I get the full code that includes the last check digit?...

There is a bug in helper/getRenderProperties: `element && element.nodeName === 'svg'` This is caused by the fact browser can sometimes return nodeName UPPERCASE (see https://johnresig.com/blog/nodename-case-sensitivity/). Therefore: ` var element =...

Hi, First of all, thank you for a great job. My question is how to select a format for barcode from the back (server)? It is well documented for the...

`` isn't working properly when using JsBarcode.init(). The reason is that the jsbarcode-ean128 option is not being read because ean128 is missing from src/options/defaults.js. This can be fixed by adding...