Python 实现判断图片格式并转换,将转换的图像存到生成的文件夹中

时间:2021-05-22

我就废话不多说了,直接上代码吧!

import Imagefrom datetime import datetimeimport osstr = '/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 imghdrimgType = 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 实现判断图片格式并转换,将转换的图像存到生成的文件夹中就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章