我正在使用zbarcam从Web应用程序中的网络摄像头读取条形码。
但是,由于zbarcam在末尾显示\ n,因此我的表单已提交。
这是我用的:
read_one.py
#!/usr/bin/python
from sys import argv
import zbar
import webbrowser
# create a Processor
proc = zbar.Processor()
# configure the Processor
proc.parse_config('enable')
# initialize the Processor
device = '/dev/video0'
if len(argv) > 1:
device = argv[1]
proc.init(device)
# enable the preview window
proc.visible = True
# read at least one barcode (or until window closed)
proc.process_one()
# hide the preview window
proc.visible = False
# extract results
for symbol in proc.results:
# do something useful with results
print symbol.data
键盘
python read_one.py | xvkbd -file -
如何在将条形码发送到xvkbd之前删除'\ n'或禁用xvkbd中的Enter键?
最佳答案
尝试这个:
printf "$(python read_one.py)" | xvkbd -file -
关于python - 使用xvkbd读取条形码。如何禁用Enter键?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1844457/