You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my case, an 8 digit code is correctly shown by changing the line 83 in code128.py from return [0, 0, self._count_chars(codestring)*11+2, height*DPI]
to return [0, 0, self._count_chars(codestring)*13+2, height*DPI]
The text was updated successfully, but these errors were encountered:
Please see:
https://stackoverflow.com/questions/37800370/python-elaphe-generates-broken-barcodes
The generated code128 barcodes are missing the pixels to the right.
In my case, an 8 digit code is correctly shown by changing the line 83 in
code128.py
fromreturn [0, 0, self._count_chars(codestring)*11+2, height*DPI]
to
return [0, 0, self._count_chars(codestring)*13+2, height*DPI]
The text was updated successfully, but these errors were encountered: