OSError: cannot write mode RGBA as JPEG - 에러메시지, 해결방법
CODEDRAGON ㆍDevelopment/Python
반응형
에러메시지
OSError: cannot write mode RGBA as JPEG
OSError: cannot write mode RGBA as JPEG |
오류원인
jpg파일은 투명도를 표현할 수 없는 파일 포멧인데 여기에 alpha값을 저장하려고 할 경우 발생되어집니다.
해결방법
im = im.convert("RGB") im.save('python.jpg') |
'Development > Python' 카테고리의 다른 글
Visual Studio Code - .py 프로그래밍 및 디버깅 - .py 코딩 및 실행, 파이썬 터미널에서 실행하기 (0) | 2017.10.18 |
---|---|
Visual Studio에서 Python 지원 설치 (0) | 2017.10.09 |
PTVS - Django 프로젝트 생성 (0) | 2017.09.28 |
Visual Studio Code에 파이썬 Extension 설치하기 (0) | 2017.09.15 |
PTVS; Python Tools for Visual Studio 설치하기 (0) | 2017.09.09 |