Questions tagged [jsbarcode]

barcode generator available on npm

22 questions
6
votes
3 answers

How to open a canvas as an image in a new tab with Reactjs

I currently have a canvas barcode generated by the react implementation of JsBarcode called react-barcode. Currently, I am able to right-click the canvas and open it as an image in a new tab. How do I implement this functionality with a click of a…
Muljayan
  • 3,588
  • 10
  • 30
  • 54
4
votes
1 answer

How to generate an image from the JsBarcode implementation?

I am using JsBarcode to generate one during a person's checkout. I want to send this to their email but I can't since the generated one is a collection of paths inside an SVG so they don't make it to their email (nothing is rendered). So I wanted to…
user11530349
1
vote
1 answer

JsBarcode options does not work with jQuery

I'm using jQuery to generate the barcodes and tried to add the size options but it doesn't work. The demo at https://codepen.io/lindell/pen/mPvLXx?editors=1010 isn't working for me because I am using php to loop through the items then only loop it…
Dragon
  • 71
  • 1
  • 7
1
vote
1 answer

ngx-barcode not working with dynamic value in Angular

I am trying to use ngx-barcode in Angular page. When I try to use this code in app.component.html, it works. But when I try to use the same code in subcomponent, which is opened via window.open with some parameters, it does not work.
Recep
  • 11
  • 5
1
vote
2 answers

Barcode not printing correctly using JSBarcode library

I am trying to print a generated barcode. I am using the JSBarcode library to generate the barcode. On the print screen, visuality is good but when I print it, the result is 4 pages and just one page has the barcode, and the barcode is very little…
Mustafa UYSAL
  • 143
  • 3
  • 14
0
votes
0 answers

Barcode Bar width adjustment with nodejs

Is it possible to do bar width adjustment with Jsbarcode library? To create a barcode now, we are using software called "Barcode producer" They had an option called bar width adjustment, which can be set from (-23 to +23), which actually decreases…
Amit Dutta
  • 171
  • 1
  • 8
0
votes
0 answers

How to adjust printer based barcode window.print() in GPrinter GP-3120TUC

Last few days, I am facing a problem with printing barcode labels by using a GPrinter GP-3120TUC model printer. Basically, I am generating the barcode during runtime by the JSBarcode javascript plugin. And then, print that barcode by window.print()…
0
votes
1 answer

Finding the shadowRoot from a script tag inside the shadowRoot?

I am attempting to find a selector that is relative to the script that I have injected into the shadow dom. I can find the element I need if I explicitly find it using the document, then selecting the shadowRoot and using querySelector again. i.e.…
Ash McConnell
  • 1,340
  • 1
  • 17
  • 28
0
votes
1 answer

JaBarcode not show in div generate by JS

I have a barcode and want to display it multiple times to print it out. When I do add the tag svg from javascript, after generating barcode they don't show up. $scope.generatePrintBarcodePage = function (sampleCode, number) { $scope.barCodePrint…
Gacom111haaa
  • 45
  • 1
  • 8
0
votes
0 answers

How to inlude multiple barcodes inside of the svg file

I want to create a svg file with some bar codes inside. So I have tried Layer 1
Murtrag
  • 31
  • 4
0
votes
1 answer

How to generate barcode inside mustache template - React/JS

Need to find a way to display a generated barcode inside a mustache template. Currently working with https://github.com/lindell/JsBarcode to generate the barcodes. The syntax used for JsBarcode has me a bit confused as to how to pass the completed…
0
votes
0 answers

How do i get output JsBarcode ITF-14 format

I am using JsBarcode library in my project. I use CODE128 format as standard but now I want to use ITF-14. It works but no framework is added. Is there any solution about it ? JS
NicLovin
  • 317
  • 3
  • 20
0
votes
1 answer

JsBarcode is not defined

Using jsbarcode in my node.js web application I am unable to get rid of error: JsBarcode is not defined. In my .ejs file I have the following code:
NicLovin
  • 317
  • 3
  • 20
0
votes
1 answer

How to correctly use tags with jquery in intellij?

So here I have CDN of both JQuery & jsbarcode -> jsbarcode info https://lindell.me/JsBarcode/ The output should show a barcode the the const "number" var. …
1
2