-
安装
- pip install ddddocr安装特别慢,几kb每秒,而且容易超时报错
- 使用清华源下载:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple ddddocr
-
使用
img_url = "https://user.wangxiao.cn/apis//common/getImageCaptcha"
img_resp = session.post(img_url)
img_dict = img_resp.json()
img_b64 = img_dict.get("data").replace("data:image/png;base64,", "")
img = base64.b64decode(img_b64)
with open("tu.png", mode="wb") as f:
f.write(img)
# 识别验证码 (其它收费平台:图鉴, 超级鹰)
dddd = ddddocr.DdddOcr(show_ad=False)
result = dddd.classification(img)
print(result)
-
报错
- 运行代码,发现报错
- 运行代码,发现报错
-
解决方案
- 原因
- 原来是在pillow的10.0.0版本中,ANTIALIAS方法被删除了
- 解决办法:降低pillow版本
- 原因
pip uninstall -y Pillow
pip install Pillow==9.5.0
标签:PIL,img,no,ANTIALIAS,ddddocr,报错,install,pip
From: https://www.cnblogs.com/xwltest/p/17658652.html