批量修改图片大小

这两天做数据采集的时候,发现直接获取的数据文件太大了,保存起来占用内存太多,

手机端又不需要这么大的内存。

于是在网上简单搜搜,经过修改制作了一个简单的脚本。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © 2017 xiuhao <[email protected]>
#
"""
"""
import os
import glob
from PIL import Image
import os.path

# 测试代码
rootdir = './canteen'
saveDir = './canteen-new'


def convertjpg(jpgfile, savedir, width=5000, height=4000):
    '''修改图片文件大小jpgfile:图片文件;savedir:修改后要保存的路径'''
    img = Image.open(jpgfile)
    new_img = img.resize((width, height), Image.BILINEAR)
    new_img.save(os.path.join(savedir, os.path.basename(jpgfile)))


def modifyjpgSize(file, saveDir):
    '''查找给定路径下图片文件,并修改其大小'''
    for jpgfile in glob.glob(file):
        convertjpg(jpgfile, saveDir)
    for parent, dirnames, filenames in os.walk(rootdir):
        for filename in filenames:
            fullname = os.path.join(parent, filename)
            modifyjpgSize(fullname, saveDir)
comments powered by Disqus
使用 Hugo 构建
主题 StackJimmy 设计