黑帽联盟

标题: Python批量缩小图片(按比例)脚本分享 [打印本页]

作者: 定位    时间: 2017-1-26 16:58
标题: Python批量缩小图片(按比例)脚本分享
这篇文章主要介绍了Python批量按比例缩小图片脚本分享,本文直接给出实现代码,需要的朋友可以参考下


图片太大了,上百张图用photoshop改太慢,就想到用python写个简单的批处理。功能简单就是把原图按比例缩小
  1. # -*- coding: cp936 -*-
  2. import Image  
  3. import glob, os
  4. #图片批处理  
  5. def timage():  
  6.     for files in glob.glob('D:\\\\1\\\\*.JPG'):  
  7.         filepath,filename = os.path.split(files)  
  8.         filterame,exts = os.path.splitext(filename)  
  9.         #输出路径  
  10.         opfile = r'D:\\\\22\\\\'
  11.         #判断opfile是否存在,不存在则创建  
  12.         if (os.path.isdir(opfile)==False):  
  13.             os.mkdir(opfile)  
  14.         im = Image.open(files)  
  15.         w,h = im.size  
  16.         #im_ss = im.resize((400,400))  
  17.         #im_ss = im.convert('P')  
  18.         im_ss = im.resize((int(w*0.12), int(h*0.12)))  
  19.         im_ss.save(opfile+filterame+'.jpg')
  20. if __name__=='__main__':  
  21.     timage()
  22.     print '哈哈OK啦'
复制代码





欢迎光临 黑帽联盟 (https://bbs.cnblackhat.com/) Powered by Discuz! X2.5