python转换图片

使用python进行图片的格式转换,用到的库:PIL.Image

主要原理:Image打开的图片都是GRB的形式,只是在保存时可以自由保存格式

import os
from PIL import Image

path = "/home/zhao/project/picture_bak/JPEGImages"
pictures = os.listdir(path)
for file in pictures:
    f,e = os.path.splitext(file)
    outfile = f + ".bmp"
    try:
        Image.open(path+"/"+file).save("/home/zhao/project/picture_bak/BMPImages"+"/"+outfile)
    except IOError:
        print 'cannot convert',file

你可能感兴趣的:(服务器端程序开发)