python批量读取tiff文件_Python Pillow批量转换tif格式到jpg

最近因为想要整下网站的壁纸,从网站下载了别人整理好的合集压缩包,解压之后,却发现里面的文件都是tif的,tif格式网站和电脑都不认的,根本不能作壁纸。

这时候,就需要转换图片格式了,首先我找了几款转换格式的软件,发现效果都不好,要不是不支持tif格式,要不就是转换出来的图片糊的不行。

最终,还是决定用Python的Pillow库来写一个脚本,完成这个任务。

下面是整个的小脚本----

import os

import glob

from PIL import Image

current_dir = os.getcwd()

files = glob.glob(current_dir + "/src/*.tif")

def mkdir(path):

path = path.strip()

path = path.rstrip("\\")

isExists = os.path.exists(path)

if not isExists:

os.makedirs(path)

print(path + ' 创建成功')

else:

print(path + ' 目录已存在')

mkdir(current_dir + 'src')

mkdir(current_dir + 'result')

def image_convert(image_file):

image_name = image_fil

你可能感兴趣的:(python批量读取tiff文件_Python Pillow批量转换tif格式到jpg)