Loading

Python3修改图片格式为ico

原文https://www.blog.hiyj.cn/article/detail/107

有时会遇到将图片修改为ico格式,但是轻量级的工具不好找,在这里借用pillow库达到了这个效果

# PIL :  pip3/pip install pillow
from PIL import Image

img = Image.open('./square-logo.png')
img.save('./square-logo.ico')

在这里插入图片描述

posted @ 2021-09-16 14:26  WindSnowLi  阅读(38)  评论(0编辑  收藏  举报