网络编程
位置:首页>> 网络编程>> Python编程>> Python 实现判断图片格式并转换,将转换的图像存到生成的文件夹中

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

作者:修炼打怪的小乌龟  发布时间:2023-07-19 04:13:23 

标签: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')

来源:https://blog.csdn.net/u010417185/article/details/52293497

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com