From 4b43e5554e8c7b89e56d9e87b1b8977d1b89168c Mon Sep 17 00:00:00 2001 From: Ruud Kamphuis Date: Sun, 15 May 2016 16:58:49 +0200 Subject: Add support for Pdf417 barcodes --- contrib/barcode/barcode.go | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'contrib') diff --git a/contrib/barcode/barcode.go b/contrib/barcode/barcode.go index 4a143da..c5e4193 100644 --- a/contrib/barcode/barcode.go +++ b/contrib/barcode/barcode.go @@ -32,6 +32,7 @@ import ( "github.com/boombuler/barcode/ean" "github.com/boombuler/barcode/qr" "github.com/boombuler/barcode/twooffive" + "github.com/ruudk/golang-pdf417" "github.com/jung-kurt/gofpdf" ) @@ -131,6 +132,15 @@ func RegisterDataMatrix(pdf barcodePdf, code string) string { return registerBarcode(pdf, bcode, err) } +// RegisterPdf417 registers a barcode of type Pdf417 to the PDF, but not +// to the page. Use Barcode() with the return value to put the barcode on the +// page. +func RegisterPdf417(pdf barcodePdf, code string) string { + bcode := pdf417.Encode(code) + + return registerBarcode(pdf, bcode, nil) +} + // RegisterEAN registers a barcode of type EAN to the PDF, but not to the page. // It will automatically detect if the barcode is EAN8 or EAN13. Use Barcode() // with the return value to put the barcode on the page. -- cgit v1.2.1-24-ge1ad