Florian 6c824513ba Merge pull request #51 from CodeLingoBot/rewrite | 5 years ago | |
---|---|---|
aztec | 7 years ago | |
codabar | 6 years ago | |
code128 | 7 years ago | |
code39 | 7 years ago | |
code93 | 7 years ago | |
datamatrix | 7 years ago | |
ean | 7 years ago | |
pdf417 | 7 years ago | |
qr | 7 years ago | |
twooffive | 7 years ago | |
utils | 5 years ago | |
.gitignore | 7 years ago | |
LICENSE | 10 years ago | |
README.md | 7 years ago | |
barcode.go | 7 years ago | |
go.mod | 6 years ago | |
scaledbarcode.go | 7 years ago |
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"
"github.com/boombuler/barcode"
"github.com/boombuler/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.