Ask Your Question
3

How can I generate EAN-128 barcodes using Python?

asked 2022-01-22 11:00:00 +0000

djk gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2021-07-24 10:00:00 +0000

lakamha gravatar image

You can use the python-barcode library to generate EAN-128 barcodes in Python. Here is an example code on how to generate a barcode:

from barcode import EAN128
from barcode.writer import ImageWriter

code = '123456789012'
ean128 = EAN128(code, writer=ImageWriter())
ean128.save('barcode_ean128')

This code generates an EAN-128 barcode for the code '123456789012' and saves it as a PNG image file named 'barcode_ean128.png'. You can change the code and the output file name as per your requirement.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-01-22 11:00:00 +0000

Seen: 8 times

Last updated: Jul 24 '21