We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi I am trying to use this lib, and it works great with QR codes and code128, but when I try to use UPCA/E or EAN8/13 it just does not work.
Could you tell me if this should work in theory? ` file, err := os.Open("image.png")
if err != nil { fmt.Println("Error opening file:", err) return } defer file.Close() img, _, err := image.Decode(file) if err != nil { fmt.Println("Error decoding image:", err) return } // Prepare BinaryBitmap bmp, err := gozxing.NewBinaryBitmapFromImage(img) if err != nil { fmt.Println("Error creating BinaryBitmap:", err) return } // Decode the barcode reader := oned.NewUPCAReader() result, err := reader.Decode(bmp, nil) if err != nil { fmt.Println("Error decoding barcode:", err) return } fmt.Println("Decoded text:", result.GetText())`
This is my image that other tools can parse easily
The text was updated successfully, but these errors were encountered:
It looks like there isn't enough white space on the right side.
I got the result with this code:
img2 := image.NewRGBA(image.Rect(0, 0, 600, 356)) draw.Draw(img2, img2.Bounds(), image.White, image.Pt(0, 0), draw.Over) draw.Draw(img2, image.Rect(0, 0, 559, 356), img, image.Pt(0, 0), draw.Over) // Prepare BinaryBitmap bmp, err := gozxing.NewBinaryBitmapFromImage(img2)
Sorry, something went wrong.
No branches or pull requests
Hi I am trying to use this lib, and it works great with QR codes and code128, but when I try to use UPCA/E or EAN8/13 it just does not work.
Could you tell me if this should work in theory?
`
file, err := os.Open("image.png")
This is my image that other tools can parse easily
The text was updated successfully, but these errors were encountered: