美文网首页
自动剪裁图片

自动剪裁图片

作者: 旧城心生琉璃叶 | 来源:发表于2018-01-02 17:13 被阅读9次

    原理

    实现方法

    from PIL import Image
    import os
    fin = 'D:/test'
    fout = 'D:/test2'
    for file in os.listdir(fin):
        file_fullname = fin + '/' +file
        img = Image.open(file_fullname)
        a = [80, 100, 260, 300]
        box = (a)
        roi = img.crop(box)
        if fout not in os.listdir('D:/'):
            os.mkdir(fout)
        out_path = fout + '/' + file
        roi.save(out_path)
    
    

    使用方法

    修改路径即可

    66811921_p0.jpg

    相关文章

      网友评论

          本文标题:自动剪裁图片

          本文链接:https://www.haomeiwen.com/subject/kyrqnxtx.html