基于PIL批量修改图片JPG格式为PGM格式

安装PIL

pip install pillow

修改JPG格式为PGM格式

import os
from PIL import Image


file_src_path = "../frame/"	# store jpg images
file_des_path = "../pgm/"	# storing pgm format 


def jpg2pgm(file_src_path, file_des_path):
    images = os.listdir(file_src_path)

    for image in images:
        current_image = image[:-3] + "pgm"  # pgm2jpg:convert pgm to jpg
        print("Writing jpg image to pgm file: %s" % current_image)
        Image.open(file_src_path+image).save(file_des_path+current_image)


if __name__ == "__main__":
    jpg2pgm(file_src_path, file_des_path)

(最近更新:2010年01月09日)

你可能感兴趣的:(ALITAN)