0
点赞
收藏
分享

微信扫一扫

python图片解析

平时有些图片需要扫描才知道里面的链接地址,通过以下代码可实现解析

import pyzbar.pyzbar as pyzbar
image = Image.open("webfilehelper.jpg")
barcodes = pyzbar.decode(image)
print (barcodes)


举报

相关推荐

0 条评论