码迷,mamicode.com
首页 > 编程语言 > 详细

Python图片缩放

时间:2018-10-13 18:09:05      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:文件   utf-8   文本文件   class   图片缩放   read   bsp   sig   pre   

from PIL import Image

def size(jpg,now_size):
    im = Image.open(jpg)
    width, height = im.size
    if width>now_size:
        n=width/now_size
        w=int(width/n)
        h=int(height/n)
        resizedIm = im.resize((w,h))
        resizedIm.save(jpg)
    else:
        print(‘无需缩放‘)

def main():
    now_size = 200
    file=input(‘要缩放的txt文本文件路径:‘)
    txt_file=file.replace(‘\"‘,‘‘).replace(‘\n‘,‘‘)
    txt_conte=open(txt_file,encoding=‘utf-8‘)
    txt_linst=txt_conte.readlines()
    for i in txt_linst:
        jpg=r‘%s‘%i.replace(‘\n‘,‘‘).replace(‘\"‘,‘‘).encode(‘utf-8‘).decode(‘utf-8-sig‘).strip()
        size(jpg, now_size)

if __name__ == ‘__main__‘:
    main()

 

Python图片缩放

标签:文件   utf-8   文本文件   class   图片缩放   read   bsp   sig   pre   

原文地址:https://www.cnblogs.com/zhangdingqu/p/9783533.html

踩
(0)
赞
(0)
   
举报
评论 一句话评论(0)
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!