在go语言中生成EAN(European Article Number)条形码示例
在Go语言中生成EAN条码可以通过这个包:barcode
https://github.com/boombuler/barcode
以前也我也写过关于生成Code128条形码的文章,有兴趣的自行搜索,也可以拉到底部相关文章,
下面关于如何使用barcode包来生成EAN(European Article Number)条形码,看下面例子。
代码示例:
package main
import (
"fmt"
"github.com/boombuler/barcode"
"github.com/boombuler/barcode/ean"
"github.com/disintegration/imaging"
"github.com/llgcode/draw2d"
"image"
"image/color"
"image/draw"
"os"
)
func main() {
//13位数
code := "5901234123457"
fmt.Println("生成Datamatrix条形码,用于 : ", code)
//看看https://godoc.org/github.com/boombuler/barcode/ean
bcode, err := ean.Encode(code)
//如果校验和不匹配,请取消注释
//fmt.Println(err)
if err != nil {
fmt.Printf("String %s cannot be encoded\n", code)
os.Exit(1)
}
//比例为100x100
bcode, err = barcode.Scale(bcode, 100, 100)
if err != nil {
fmt.Println("EAN比例错误 : ", err)
os.Exit(1)
}
// 现在,我们要将代码附加在 EAN 的底部。
// 的底部。
// 创建一个带有文本数据的新图像
// 来自https://github.com/llgcode/draw2d.samples/tree/master/helloworld
// 设置用于搜索字体的全局文件夹
draw2d.SetFontFolder(".")
//在一个RGBA图像上初始化图形上下文
img := image.NewRGBA(image.Rect(0, 0, 250, 50))
//设置背景为白色
white := color.RGBA{255, 255, 255, 255}
draw.Draw(img, img.Bounds(), &image.Uniform{white}, image.ZP, draw.Src)
gc := draw2d.NewGraphicContext(img)
gc.FillStroke()
//设置字体 Montereymbi.ttf
gc.SetFontData(draw2d.FontData{"Monterey", draw2d.FontFamilyMono, draw2d.FontStyleBold | draw2d.FontStyleItalic})
//将文本填充颜色设为黑色
gc.SetFillColor(image.Black)
gc.SetFontSize(14)
gc.FillStringAt(code, 50, 20)
//创建一个新的白色背景的空白图像
newImg := imaging.New(300, 200, color.NRGBA{255, 255, 255, 255})
//将代码栏粘贴到新的空白图像上
newImg = imaging.Paste(newImg, bcode, image.Pt(100, 30))
//将文本粘贴到新的空白图像上
newImg = imaging.Paste(newImg, img, image.Pt(50, 150))
err = draw2d.SaveToPngFile("./ean.png", newImg)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
//完成
fmt.Println("生成EAN条形码并保存为ean.png")
}
输出:
相关文章
在go语言中生成Code128条形码示例
https://www.zongscan.com/demo333/96120.html
相关文章