A barcode creation lib for golang (evacuated from NSA/Microsoft Github)
anonymous c7b93b4694 Merge branch 'master' of https://notabug.org/makenotabuggreatagain/barcode | vor 6 Jahren | |
---|---|---|
aztec | vor 6 Jahren | |
codabar | vor 6 Jahren | |
code128 | vor 6 Jahren | |
code39 | vor 6 Jahren | |
code93 | vor 6 Jahren | |
datamatrix | vor 6 Jahren | |
debian | vor 6 Jahren | |
ean | vor 6 Jahren | |
pdf417 | vor 6 Jahren | |
qr | vor 6 Jahren | |
twooffive | vor 6 Jahren | |
utils | vor 6 Jahren | |
LICENSE | vor 10 Jahren | |
README.md | vor 6 Jahren | |
barcode.go | vor 7 Jahren | |
github_mentions | vor 6 Jahren | |
scaledbarcode.go | vor 7 Jahren |
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.