0.1.8 • Published 1 year ago

jspdf-barcode v0.1.8

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Demo

https://castrix.github.io/jspdf-barcode

Code

Why should I use jspdf-barcode?

The barcode that is generated by this library will not break when zoomed in/printed out since it's not generating picture/pixel

Installation

npm install jspdf jspdf-barcode --save

Ussage

ES6

import jsPDF from "jspdf"; // please use default import
import "jspdf-barcode";

const doc = new jsPDF()
doc.barcode("barcodeValue", {
    fontSize: 23,
    textColor: "#000000",
    x: 5.4,
    y: 25.5,
    textOptions: { align: "center" } // optional text options
  })
doc.setFont("Courier"); // reset font to your font

CJS

const { jsPDF } = require("jspdf")
require("jspdf-barcode")

const doc = new jsPDF()
doc.barcode("barcodeValue", {
    fontSize: 23,
    textColor: "#000000",
    x: 5.4,
    y: 25.5,
    textOptions: { align: "center" } // optional text options
  })
doc.setFont("Courier"); // reset font to your font

Support

Currently only support Code 128 Barcode

Arguments

argumentstypeaccepted value
barcodeValuestringalphanumeric
optionsobjectfontSize number, textColor string, x: number // x coordinate of pdf, y: number // y coordinate of pdf, textOptions(optional)
0.1.0

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.4

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.0.10

1 year ago

0.0.11

1 year ago

0.0.12

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago