Python实现批量压缩图片,
Python实现批量压缩图片,
本文为大家分享了Python实现批量压缩图片的具体代码,供大家参考,具体内容如下
# -*- coding: utf-8 -*- """ __author__= 'Du' __creation_time__= '2018/1/5 10:06' """ import os from PIL import Image import glob DIR = 'C:/Users/Public/Pictures/Sample Pictures/' class Compress_Picture(object): def __init__(self): # 图片格式,可以换成.bpm等 self.file = '.jpg' # 图片压缩批处理 def compressImage(self): for filename in glob.glob('%s%s%s' % (DIR, '*', self.file)): # print(filename) # 打开原图片压缩 sImg = Image.open(filename) w, h = sImg.size print(w, h) dImg = sImg.resize((200, 200), Image.ANTIALIAS) # 设置压缩尺寸和选项,注意尺寸要用括号 # 如果不存在目的目录则创建一个 comdic = "%scompress/"%DIR if not os.path.exists(comdic): os.makedirs(comdic) # 压缩图片路径名称 f1 = filename.split('/') f1 = f1[-1].split('\\') f2 = f1[-1].split('.') f2 = '%s%s1%s'%(comdic, f2[0], self.file) # print(f2) dImg.save(f2) # save这个函数后面可以加压缩编码选项JPEG之类的 print("%s compressed succeeded"%f1[-1]) if __name__ == "__main__": obj = Compress_Picture() obj.compressImage()
效果图:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持帮客之家。
相关内容
- python画出三角形外接圆和内切圆的方法,python外接圆
- python编程使用selenium模拟登陆淘宝实例代码,pythonsele
- Python操作Redis之设置key的过期时间实例代码,pythonredi
- Python进程间通信Queue实例解析,pythonqueue
- python如何重载模块实例解析,python重载模块
- 修复CentOS7升级Python到3.6版本后yum不能正确使用的解决方
- Python实现PS滤镜特效之扇形变换效果示例,python滤镜
- Python实现PS图像调整之对比度调整功能示例,pythonps
- Python编程实现的简单神经网络算法示例,python神经网络
- python利用socketserver实现并发套接字功能,pythonsocketser
评论关闭