barcode icon indicating copy to clipboard operation
barcode copied to clipboard

a barcode creation lib for golang

Results 11 barcode issues
Sort by recently updated
recently updated
newest added

Would you see any possibility MaxiCode barcodes could be included in the library in the (near) future ?

We have been using https://linux.die.net/man/1/dmtxwrite for a while but I'd like to use more this library. I'm reading the code and fiddling around to implement a 16x48 datamatrix with a...

The following errors are happening with Go 1.15 on Fedora Rawhide: ``` github.com/boombuler/barcode/utils # github.com/boombuler/barcode/utils ./runeint_test.go:7:3: Errorf format %d has arg string(IntToRune(0)) of wrong type string ./runeint_test.go:16:3: Error call has...

## Proposal Inclusion of JABCode and HiQ color barcode creators, to adapt those repos (C and Java respectively) into Golang. ## References ### For JABCode * Repo https://github.com/jabcode/jabcode * Website...

enhancement
help wanted

Hi, I think i found a strange limitation in the AZTEC barcode. When there is more than 472 chars in the barcode, it is not readable in 33% error code...

bug

All methods take a string as an input. While raw data _could_. be base64 encoded. There are applications where barcodes contain a byte array. To the extent that the barcode...

enhancement

This library is only capable of encoding UTF-8 strings. Many external systems that read barcodes require specific encoding such as ISO-8859-1 or Shift_JIS. This is especially true of legacy hardware....

enhancement

Some readers are getting confused while (not) reading the stop pattern. Currently the component renders the sequence: black bar (**2 dots wide**), white bar (1 dot wide), black bar (1...

Add support for fractional scaling to the barcode.Scale function for 2D barcodes. Take the following example code: ```go package main import ( "fmt" "image" "image/png" "os" "github.com/boombuler/barcode" "github.com/boombuler/barcode/pdf417" ) func...