17 lines
332 B
Go
17 lines
332 B
Go
package generation
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/boombuler/barcode"
|
|
"github.com/boombuler/barcode/datamatrix"
|
|
)
|
|
|
|
func generateDatamatrix(parameters Parameters) (barcode.Barcode, error) {
|
|
barcode, err := datamatrix.Encode(parameters.Content)
|
|
if err != nil {
|
|
fmt.Println("Error creating Barcode", err)
|
|
}
|
|
return barcode, err
|
|
}
|