首页
编程日记
ChatGpt专题
LINUX学习
Java学习
前端教程
单片机
c语言
极限编程
均值算法
node.js
flex
ROS
激光测距传感器
流媒体
symfony
哈夫曼树
PEFT
队列
php送水平台
默认内存对齐数
android 糖果
数据库开发
serverless
API接口管理
网页数据抓取
SDK
图片格式转化
2024/5/6 23:21:13
转化图片格式
import os from PIL import Imageos.chdir(r"D:\jupyter\image_convert") os.getcwd() file os.listdir(r"D:\jupyter\image_convert")for f in file:img Image.open(f)img.load()f f.split(".")[0]img.save(f".jpg")
阅读更多...
使用Python进行图片格式转化/分辨率转化
一.下载python PIY插件库 PIP下载命令: pip install pillow -i https://mirrors.aliyun.com/pypi/simple PIY插件库:pillow Installation - Pillow (PIL Fork) 10.3.0.dev0 documentation 二.分辨率转化 from PIL import Image import osresolution (1024, 1024) with Image…
阅读更多...