发上等愿,结中等缘,享下等福;择高处立,寻平处住,向宽处行

Brick walls are there for a reason :they let us prove how badly we want things

代码改变世界

解决python PIL多线程 'image file is truncated'

2024-10-25 20:39  kowme  阅读(40)  评论(0编辑  收藏  举报
开启多线程检测 处理图片时,遇到'image file is truncated'。

 

解决办法:
在 im = Image.open(file_path)之后,增加上 im.load()
原因:
PIL.Image.open()打开并标识给定的图像文件。
这是一个懒惰的操作;此函数可识别文件,但文件保持打开状态,直到尝试处理数据(或调用load()方法),才会从文件中读取实际图像数据。请参阅new()。
 
 

It's not who you are underneath, it's what you do that defines you

Brick walls are there for a reason :they let us prove how badly we want things