最佳答案
我目前正在使用 PIL。
from PIL import Image
try:
im=Image.open(filename)
# do stuff
except IOError:
# filename not an image file
但是,尽管这足以涵盖大多数情况,但是没有检测到一些图像文件,如 xcf、 svg 和 psd。Psd 文件抛出 Overflow Error 异常。
我能把它们也包括进来吗?