python Pillow 图片处理模块,好强大有没有

python Pillow 图片处理模块,好强大有没有

Pillow 需要给 python 另外安装

第一个用法:https://www.cnblogs.com/ibingshan/p/11057390.html

ico to png:

from PIL import Image
import os

icoPath = "d:/test/test.ico"
img = Image.open(icoPath)
pngPath = os.path.join(os.path.dirname(icoPath), 'test.png')
img.save(pngPath, 'png')

 

posted @ 2019-06-20 15:30  ibingshan  阅读(420)  评论(0编辑  收藏  举报