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