问题
Does anyone know how to remove text below a bar-code? Bar-code is generated using barcode.py library. I was trying to check in https://bitbucket.org/whitie/python-barcode but could not find solution,what properties should be written in barcode saving line in python:
ean = barcode.get('code39', str(row['PART']), writer=ImageWriter())
Attaching barcode picture with marked line what i would like to remove from barcode generation.
回答1:
try this: barcode.default_writer_options['write_text'] = False
回答2:
Looking at the code, it appears you can set the attribute 'human' (human-readable text) to a non-empty string to override the text at the bottom. If this is set to a string with a single blank, ' ', the text will be empty.
来源:https://stackoverflow.com/questions/38659202/remove-text-below-barcode-in-python-barcode-py-library