Aucune description

Florian 45e1f5ec9e Merge pull request #27 from PMoneda/master il y a 8 ans
aztec 2e13775dbc added constants for barcode types il y a 8 ans
codabar 2e13775dbc added constants for barcode types il y a 8 ans
code128 2e13775dbc added constants for barcode types il y a 8 ans
code39 2e13775dbc added constants for barcode types il y a 8 ans
code93 2e13775dbc added constants for barcode types il y a 8 ans
datamatrix 2e13775dbc added constants for barcode types il y a 8 ans
ean 2e13775dbc added constants for barcode types il y a 8 ans
pdf417 2e13775dbc added constants for barcode types il y a 8 ans
qr 2e13775dbc added constants for barcode types il y a 8 ans
twooffive f2af083559 Update encoder_test.go il y a 8 ans
utils b066487b3e moved checksum function to its own interface il y a 9 ans
.gitignore a4f901055a added .gitignore file il y a 8 ans
LICENSE 03fa651512 added license il y a 11 ans
README.md 30df39e13a updated readme il y a 8 ans
barcode.go 2e13775dbc added constants for barcode types il y a 8 ans
scaledbarcode.go c0b5aafe4c Fix typo il y a 9 ans

README.md

Introduction

This is a package for GO which can be used to create different types of barcodes.

Supported Barcode Types

  • 2 of 5
  • Aztec Code
  • Codabar
  • Code 128
  • Code 39
  • Code 93
  • Datamatrix
  • EAN 13
  • EAN 8
  • PDF 417
  • QR Code

Example

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)
}

Documentation

See GoDoc

To create a barcode use the Encode function from one of the subpackages.