Skip to content
New issue

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

Wrong SVG generation for EAN13 #231

Open
ildarworld opened this issue Jun 22, 2024 · 1 comment
Open

Wrong SVG generation for EAN13 #231

ildarworld opened this issue Jun 22, 2024 · 1 comment

Comments

@ildarworld
Copy link

Don't know, is that a border case, but package generates wrong image for '5032783267860' in EAN13.
its generate barcode for '5032783267863'.
Generated file attached:

5032783267860

To reproduce the issue it just use following.

  • macOS Sonoma 14.5
  • chip Apple M1
  • python-barcode 0.15.1
  • python version 3.11.9
import barcode
from barcode.writer import SVGWriter

barcoder = barcode.get_barcode_class('EAN13')
writer = SVGWriter()
barcode_image = barcoder('5032783267860', writer=writer)
barcode_image.save('~/5032783267860.svg')
@WhyNotHugo
Copy link
Owner

WhyNotHugo commented Aug 25, 2024

The last digit is the verification digit, and this library will calculate it for you. If you want to force the provided digit, you need to use no_checksum=True.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants