Python图片缩放

Posted zhangdingqu的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python图片缩放相关的知识,希望对你有一定的参考价值。

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(
,‘‘)
    txt_conte=open(txt_file,encoding=utf-8)
    txt_linst=txt_conte.readlines()
    for i in txt_linst:
        jpg=r%s%i.replace(
,‘‘).replace(",‘‘).encode(utf-8).decode(utf-8-sig).strip()
        size(jpg, now_size)

if __name__ == __main__:
    main()

 

以上是关于Python图片缩放的主要内容,如果未能解决你的问题,请参考以下文章

Python图片缩放

利用python批量缩放图片

图片处理-opencv-3.图像缩放、旋转、翻转、平移

wxpython缩放图片

Amazon Echo Show 的背景图片不会缩放

php等比例缩放图片及剪切图片代码