python学习之批量更改文件格式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习之批量更改文件格式相关的知识,希望对你有一定的参考价值。

文件操作
 1 import os, glob
 2 from PIL import Image
 3 
 4 path = D:/SBSR/view_1
 5 imgslist = glob.glob(path+/*.jpg)
 6 format = .png
 7 def small_img():
 8     for imgs in imgslist:
 9         imgspath, ext = os.path.splitext(imgs)
10         img = Image.open(imgs)
11         img.save(imgspath+format)
12     print "done"
13  
14 if __name__ == __main__:
15     small_img()

以上是关于python学习之批量更改文件格式的主要内容,如果未能解决你的问题,请参考以下文章

Python学习之struts2-045批量检测脚本

Python机器学习之单变量线性回归 利用批量梯度下降找到合适的参数值

sublime学习之--批量在多行首位加入代码

Python面向对象学习之八,装饰器

python模块学习之logging

python学习之 python制作词云图 我的第一张python词云图 python怎么做词云图