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