
Python
shejiangao
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PYTHON urllib.request 请求,保存图片
PYTHON urllib.request 请求,保存图片原创 2022-06-16 15:03:56 · 1061 阅读 · 0 评论 -
python多文件打包
多程序打包可以通过下面命令生成spec文件pyi-makespec script.py 修改完spec文件,就可以通过下面命令来生成app文件了pyinstaller script.spec打包是出现编码错误问题解决思路,改变控制台的编码格式为utf-8 解决方法,在控制台中输入 chcp 65001,然后再使用pyinstaller 打包...原创 2018-06-28 16:40:22 · 2278 阅读 · 0 评论 -
Python 批量调整图片大小
from PIL import Image import os.path import glob def convertjpg(jpgfile,outdir,width=576,height=384): img=Image.open(jpgfile) try: new_img=img.resize((width,height),Image.BILINEAR) ...原创 2019-09-19 11:03:36 · 1625 阅读 · 0 评论