图片尺寸转换工具

情景

当你的图片尺寸大小不达标是,怎么办?今天教你一招,不需要而外软件,即可做到效果

使用器具

Python 3.7.9

模块:pillow

上代码(模板)

from PIL import Image
img = Image.open("图片.格式")
resize = (尺寸长,尺寸宽)
img = img.resize(resize)
img.save("图片.格式")

打包成.exe

打开CMD

cd 代码文件目录

pyinstaller 文件.py

猜你喜欢

转载自blog.csdn.net/SMG_DSG/article/details/128812434
今日推荐