python模块之imghdr(识别不同格式的图片文件)时间:2023-03-09 08:38:25 # -*- coding: utf-8 -*- #python 27 #xiaodeng #python模块之imghdr(识别不同格式的图片文件) import imghdr '''>>> help(imghdr) Help on module imghdr: FUNCTIONS what(file, h=None) DATA __all__ = ['what'] ''' #imghdr 模块可识别不同格式的图片文件. url=r'9.gif' print imghdr.what(url)