在go语言中实现生成Codabar示例
如何用Go语言生成Codabar。我们将使用几个第三方软件包来实现我们的目标,因为一些图像软件包在编写时缺乏某些功能和清晰的文档。
下面这个代码例子将:
1.从代码:="A80186B "生成coda条形码
2.缩放到更大的尺寸。
3.将字符串代码 "A80186B "写入另一个图像中。
4.将条码和字符串都粘贴到一个新的图像中。
5.将图像保存为png文件.
代码示例:
package main
import (
"fmt"
"github.com/boombuler/barcode"
"github.com/boombuler/barcode/codabar"
"github.com/disintegration/imaging"
"github.com/llgcode/draw2d"
"image"
"image/color"
"image/draw"
"os"
)
func main() {
code := "A80186B"
fmt.Println("Generating Codabar for : ", code)
bcode, err := codabar.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("Codabar 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(90, 90))
err = draw2d.SaveToPngFile("./codabar.png", newImg)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
// everything ok
fmt.Println("CodaBar code generated and saved to codabar.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/Codabar
https://github.com/boombuler/barcode
相关文章