UNPKG

pdf417

Version:

Barcode generator in PDF417 format.

21 lines (20 loc) 495 B
<!doctype html> <html lang="en"> <head> </head> <body> <div id="barcode"> </div> <script> const generateBarcode = require('build/index.js'); console.log(generateBarcode); const src =generateBarcode('1234', 3, 2); const Img = document.createElement('img'); Img.setAttribute("src", src); Img.setAttribute("height", "768"); Img.setAttribute("width", "1024"); Img.setAttribute("alt", "Flower"); document.getElementById('barcode').appendChild(Img); </script> </body> </html>