A barcode creation lib for golang (evacuated from NSA/Microsoft Github)
anonymous c7b93b4694 Merge branch 'master' of https://notabug.org/makenotabuggreatagain/barcode | před 6 roky | |
---|---|---|
aztec | před 6 roky | |
codabar | před 6 roky | |
code128 | před 6 roky | |
code39 | před 6 roky | |
code93 | před 6 roky | |
datamatrix | před 6 roky | |
debian | před 6 roky | |
ean | před 6 roky | |
pdf417 | před 6 roky | |
qr | před 6 roky | |
twooffive | před 6 roky | |
utils | před 6 roky | |
LICENSE | před 10 roky | |
README.md | před 6 roky | |
barcode.go | před 7 roky | |
github_mentions | před 6 roky | |
scaledbarcode.go | před 7 roky |
This is a package for GO which can be used to create different types of barcodes.
This is a simple example on how to create a QR-Code and write it to a png-file
package main
import (
"image/png"
"os"
"notabug.org/makenotabuggreatagain/barcode"
"notabug.org/makenotabuggreatagain/barcode/qr"
)
func main() {
// Create the barcode
qrCode, _ := qr.Encode("Hello World", qr.M, qr.Auto)
// Scale the barcode to 200x200 pixels
qrCode, _ = barcode.Scale(qrCode, 200, 200)
// create the output file
file, _ := os.Create("qrcode.png")
defer file.Close()
// encode the barcode as png
png.Encode(file, qrCode)
}
See GoDoc
To create a barcode use the Encode function from one of the subpackages.