python 模塊常見錯誤

  • PIL "image file is truncated"
from PIL import ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
  • PIL OSError: cannot write mode RGBA as JPEG,保存jpg圖片時報錯信息
if image.format == 'PNG':
    image = image.convert("RGB")
image.save('1.jpg')

 

發佈了104 篇原創文章 · 獲贊 23 · 訪問量 9萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章