from PIL import Image
import os # 导入os模块
while True: # 循环输入
path=input(‘请输入图片所在路径:’) # 记录输入的路径
width=int(input(‘请输入宽度限制:’))
height=int(input(‘请输入高度限制:’))
try:
list = os.listdir(path) # 遍历选择的文件夹
for i in range(0, len(list)): # 遍历文件列表
filepath = os.path.join(path, list[i]) # 记录遍历到的文件名
image = Image.open(filepath) # 打开图片文件
# 按指定大小对图片进行缩放(不一定完全按照设置的宽度和高度,而是按比例缩放到最接近的大小)
image.thumbnail((width, height))
image.save(filepath) # 保存缩放后的图片
print(‘图片处理完成……’)
os.startfile(path) # 打开指定路径进行预览
except Exception as e:
print(e)
image = image.resize((width, height))
# 设置自动填充容器
self.tableWidget.horizontalHeader().setStretchLastSection(True)
from collections import OrderedDict
# 定义有序字典,作为List列表的数据源
dict=OrderedDict({‘诸葛维奇’:’格雷格·波波维奇’,’石佛’:’蒂姆·邓肯’,’妖刀’:’马努·吉诺比利’,
‘法国跑车’:’托尼·帕克’,’海军上将’:’大卫·罗宾逊’,’冰人’:’乔治·格文’,
‘三叔’:’布鲁斯·鲍文’,’小将军’:’埃弗里·约翰逊’,’超人’:’肖恩·埃利奥特’})
for key,value in dict.items(): # 遍历字典,并分别获取键值
self.item = QtWidgets.QListWidgetItem(self.listWidget) # 创建列表项
self.item.setText(key+’——’+value) # 设置项文本
self.item.setToolTip(value) # 设置提示文字