Temp

[Pillow] image file is truncated

ju_young 2022. 1. 13. 09:47
728x90

대게 해상도가 크거나 해당 이미지의 바이트 크기가 24를 넘어갈때 Resize를 시도할 경우 나타나는 에러이다. 이때 Pillow에서는 truncated image를 허용해주는 설정을 해줄 수 있다. 그 설정은 다음과 같다.

 

from PIL import ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True

 

[ref]

https://stackoverflow.com/questions/12984426/pil-ioerror-image-file-truncated-with-big-images#

728x90