利用PIL中的Image load()函数
from PIL import Image def is_valid(file): valid = True try: Image.open(file).load() except OSError: valid = False return valid