在go语言中生成Code128条形码示例
在Go语言中生成Code 128条码可以通过这个包:barcode
https://github.com/boombuler/barcode
轻松完成,我们只需将之前关于如何生成Codabar的教程中的代码改编为生成Code 128条码。
代码示例:
package main
import (
"fmt"
"github.com/boombuler/barcode"
"github.com/boombuler/barcode/code128"
"github.com/disintegration/imaging"
"github.com/llgcode/draw2d"
"image"
"image/color"
"image/draw"
"os"
)
func main() {
code := "www.zongscan.com"
fmt.Println("Generating code128 barcode for : ", code)
bcode, err := code128.Encode(code)
if err != nil {
fmt.Printf("String %s cannot be encoded", code)
os.Exit(1)
}
//比例为250x20
bcode, err = barcode.Scale(bcode, 250, 20)
if err != nil {
fmt.Println("Code128 scaling error!")
os.Exit(1)
}
// 现在我们要将代码附加在Codabar的底部。
// 的代码
// 创建一个带有文本数据的新图像
// 从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, 300, color.NRGBA{255, 255, 255, 255})
//将代码栏粘贴到新的空白图像上
newImg = imaging.Paste(newImg, bcode, image.Pt(50, 50))
//将文本粘贴到新的空白图像上
newImg = imaging.Paste(newImg, img, image.Pt(50, 90))
err = draw2d.SaveToPngFile("./code128.png", newImg)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
//完成
fmt.Println("Code128 code generated and saved to code128.png")
}
code 128输出:
注意:
由于一些奇怪的原因,来自
https://github.com/llgcode/draw2d.samples/tree/master/helloworld
的luximbi.ttf字体不能使用。因此,我用Monterey字体代替了它。
你可以从
http://www.1001freefonts.com/monterey.font
解压压缩文件,用这个命令将MontereyFLF.ttf重命名为Montereymbi.ttf,
然后在'Montereymbi.ttf'文件的同一目录下执行上述代码:
cp MontereyFLF.ttf Montereymbi.ttf
参考资料 :
http://en.wikipedia.org/wiki/Code_128
https://github.com/boombuler/barcode/tree/master/code128
相关文章 :
在go语言中实现生成Codabar示例
https://www.zongscan.com/demo333/96119.html
相关文章