-4
我想將此url下載轉換爲gif。 http://t.51chuli.com/contact/d91779cced1ade729yz45q72bn3o5o1z.gif如何將GIF轉換爲字符串?
到PHONE_NUM串
我能做些什麼呢? 我的代碼是:
import requests
from PIL import Image
import tesserocr
img = requests.get(url='http://t.51chuli.com/contact/d91779cced1ade729yz45q72bn3o5o1z.gif')
with open('image.gif','wb') as f:
f.write(img.content)
pil = Image.open('image.gif')
text = tesserocr.image_to_text(pil)
print text
,但沒有輸出
不要截圖你的代碼。將其作爲文本發佈在您的問題中。 – khelwood