python生成条形码
【摘要】 code128c
https://github.com/damiandennis/code128cgen/blob/master/code128cgen/__init__.py
code128a:
https://github.com/damiandennis/code128agen/blob/master/code128agen/__init__.py
上面两个的编...
code128c
https://github.com/damiandennis/code128cgen/blob/master/code128cgen/__init__.py
code128a:
https://github.com/damiandennis/code128agen/blob/master/code128agen/__init__.py
上面两个的编码11好像写反了。
可以自己改代码,出来的是二值图,有时pyzbar和支付宝识别不了.
https://github.com/sumsted/candybar/blob/master/candybar/CandyBarCode128.py
这个条码不能控制宽高,会有灰色值出来,不是二值图。
-
-
pip install python-barcode
-
import cv2
-
import barcode
-
from barcode.writer import ImageWriter
-
bar = barcode.get(u'code39', u"test123456",writer=ImageWriter())
-
output = bar.render(writer_options={"format": "PNG"}) #渲染生成图像对象
-
cv2.imshow("barcode",output)
-
cv2.waitkey()
-
bar.save("11",options={"format": "JPEG"})#保存图形里有渲染然后保存到文件
文章来源: blog.csdn.net,作者:网奇,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/jacke121/article/details/109315148
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)