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
'Temp' 카테고리의 다른 글
[Ubuntu/Linux] Change timezone (0) | 2022.02.08 |
---|---|
[Git] git clone with ssh key (0) | 2022.02.07 |
[Streamlit] @st.cache를 사용하여 Torchscript load하기 (0) | 2021.12.17 |
[Ubuntu] Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution). (0) | 2021.12.15 |
[Pillow] 이미지를 읽었더니 회전될 때 (0) | 2021.12.13 |