这篇文章主要介绍Python怎么判断图片格式并转换,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
代码如下:
import Image
from datetime import datetime
import os
str = '/home/dltest/caffe/examples/sgg_datas/images/result_test/zutest/' + datetime.now().strftime("%Y%m%d_%H%M%S")
while True==os.path.exists(str):
str = str + datetime.now().strftime("%Y%m%d_%H%M%S")
os.makedirs(str) #创建文件夹
imageFile = '/home/dltest/caffe/examples/sgg_datas/images/result_test/zutest/20form1.bmp' #图片路径
import imghdr
imgType = imghdr.what(imageFile) #获取图像类型,返回bmp,jpg等
type1 = cmp(imgType, 'bmp') #判断是否为bmp,jpg类型,若字符相等则返回值为 0
type2 = cmp(imgType,'jpeg')
type3 = cmp(imgType,'jpg')
type = type1 *type2 *type3 #判断是否为三种类型中的一类
if type != 0 :
#进行图像类型转换,转换为 jpg格式
im = Image.open(imageFile)
str2 = str + '/' + '1.jpg' #会自动替换原来的1.jpg
im.save(str2)
print('1')
以上是“Python怎么判断图片格式并转换”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。