Python:IOError: image file is truncated 的解決辦法

來源:互聯網
上載者:User

標籤:

代碼如下:

#coding:utf-8from PIL import Imageimport pytesseractdef test():    im = Image.open(r"pic.gif")    vcode = pytesseract.image_to_string(im)    print vcode

執行以上代碼進行簡單驗證碼識別的時候會拋出一個異常:

Traceback (most recent call last):  File "D:\test\vcode.py", line 15, in <module>    main()  File "D:\test\vcode.py", line 9, in main    test()  File "D:\test\test.py", line 8, in test    vcode = pytesseract.image_to_string(im)  File "build\bdist.win32\egg\pytesseract\pytesseract.py", line 143, in image_to_string  File "D:\Program Files (x86)\Python\Python27\lib\site-packages\PIL\Image.py", line 1749, in split    self.load()  File "D:\Program Files (x86)\Python\Python27\lib\site-packages\PIL\ImageFile.py", line 232, in load    "(%d bytes not processed)" % len(b))IOError: image file is truncated (5 bytes not processed)

解決辦法是,再添加如下2句代碼:

from PIL import ImageFileImageFile.LOAD_TRUNCATED_IMAGES = True

最終,完整的代碼如下:

#coding:utf-8from PIL import Imageimport pytesseractfrom PIL import ImageFileImageFile.LOAD_TRUNCATED_IMAGES = Truedef test():    im = Image.open(r"pic.gif")    vcode = pytesseract.image_to_string(im)    print vcode
相關文章:

關於利用python進行驗證碼識別的一些想法:http://www.cnblogs.com/xiaowuyi/archive/2012/09/10/2675286.html

python利用pytesser模組實現圖片文字識別:http://www.jinglingshu.org/?p=9281

驗證碼圖片字元識別兩種python實現方法:http://vipscu.blog.163.com/blog/static/18180837220134234528457/

原文地址:http://www.cnblogs.com/hongfei/p/4436767.html

Python:IOError: image file is truncated 的解決辦法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.