KyleBlog.cn 文章 标签 关于
文章 标签 关于

使用Python将任意格式的图片转换为ICO格式(借助pillow实现)

安装依赖

pip install pillow

代码

from PIL import Image

filename = r'/tmp/test.png'  # 图片的路径
img = Image.open(filename)  # 用pillow打开该图片
img.save('/tmp/test.ico')  # 保存到目标路径,文件扩展名是ico

本文为kyleblog.cn原创,转载请注明出处:https://www.kyleblog.cn/posts/python_ico

发布日期:2023-02-21 联系作者