Hello - create a barcode using the following code:
from barcode import Code39
from barcode.writer import ImageWriter
with open("somefile.png", "wb") as f:
Code39(str(5234), writer=ImageWriter()).write(f)
Generally this works fine - but is there any way so only the barcode without the text under it is outputted?