Remove text below barcode in python barcode.py library

守給你的承諾、 提交于 2019-12-02 12:11:24

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!