Javascript-Barcode-Reader icon indicating copy to clipboard operation
Javascript-Barcode-Reader copied to clipboard

Issue reading code-128 sample

Open cfjedimaster opened this issue 2 years ago • 2 comments

Describe the bug I'm having an issue with a barcode in Code-128B format. I used this site, https://www.barcodesinc.com/generator/index.php, to generate t his image:

fileoutpart3

When using this simple code,

async function getBarcode(path) {
	console.log(path);
	let result = await jsBarcodeReader({ 
		barcode:'code-128',
		image:path
	});
	return result;

}

I get: ???r????3?uu?????}????????????

To Reproduce See above code and sample. :)

Expected behavior A URL.

Desktop (please complete the following information):

  • Node Or Browser version [e.g. 10] 18

cfjedimaster avatar Jan 05 '23 19:01 cfjedimaster