1 Star 0 Fork 1

AlfaLee/WeChatHeadImgs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
getHeadImgs.py 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
dengfaheng 提交于 2019-05-12 13:42 . python微信头像拼接
#_*_ coding:utf-8 _*_
import itchat
import os
from math import sqrt
from PIL import Image
#imgPath是存放好友头像图的文件夹的路径
headImgPath = './img/'
isExists = os.path.exists(headImgPath)
if not isExists:
os.makedirs(headImgPath)
itchat.auto_login()
for friend in itchat.get_friends(update=True)[0:]:
#可以用此句print查看好友的微信名、备注名
print(friend['NickName']+"("+friend['RemarkName']+")")
img = itchat.get_head_img(userName=friend["UserName"])
path = headImgPath+friend['NickName']+"("+friend['RemarkName']+").jpg"
try:
with open(path,'wb') as f:
f.write(img)
except Exception as e:
print(repr(e))
pathList = []
# os.listdir() 方法用于返回指定的文件夹包含的文件或文件夹的名字的列表。这个列表以字母顺序。 它不包括 '.' 和'..' 即使它在文件夹中。
for item in os.listdir(headImgPath):
imgPath = os.path.join(headImgPath, item)
pathList.append(imgPath)
total = len(pathList)#total是好友头像图片总数
line = int(sqrt(total))#line是拼接图片的行数(即每一行包含的图片数量)
NewImage = Image.new('RGB', (128*line,128*line))
x = y = 0
for item in pathList:
try:
img = Image.open(item)
# Image.ANTIALIAS:平滑滤波。对所有可以影响输出像素的输入像素进行高质量的重采样滤波,以计算输出像素值。
img = img.resize((128,128),Image.ANTIALIAS)
NewImage.paste(img, (x * 128 , y * 128))
x += 1
except IOError:
print("第%d行,%d列文件读取失败!IOError:%s" % (y,x,item))
x -= 1
if x == line:
x = 0
y += 1
if (x+line*y) == line*line:
break
NewImage.save("final.jpg")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/alfalee_admin/WeChatHeadImgs.git
[email protected]:alfalee_admin/WeChatHeadImgs.git
alfalee_admin
WeChatHeadImgs
WeChatHeadImgs
master

搜索帮助