5 Star 8 Fork 6

合肥吃货食光/Python有趣的代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
一键拼接所有微信好友头像.py 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
#-*- coding:utf-8 -*-
import itchat
import math
import os
import PIL.Image as Image
# 开启热登录,短时间内退出,再次进入可以不用扫码登录
itchat.auto_login(hotReload=True)
friends = itchat.get_friends(update=True)
# 下载所有好友的头像图片
num = 0
imgPath = './headImg/'
if not os.path.exists(imgPath):
os.mkdir(imgPath)
for i in friends:
img = itchat.get_head_img(i["UserName"])
with open(imgPath + str(num) + ".jpg", 'wb') as f:
f.write(img)
f.close()
num += 1
length = len(os.listdir(imgPath))
# 根据总面积求每一个的大小
each_size = int(math.sqrt(float(810 * 810) / length))
# 每一行可以放多少个
lines = int(810 / each_size)
# 生成一张空白大图片
image = Image.new('RGBA', (810, 810), 'white')
x = 0
y = 0
#把每张头像依次粘贴到大图上
for i in range(0, length):
try:
img = Image.open(imgPath + str(i) + ".jpg")
except IOError:
print(i)
print("image open error")
else:
img = img.resize((each_size, each_size), Image.ANTIALIAS)
image.paste(img, (x * each_size, y * each_size))
x += 1
if x == lines:
x = 0
y += 1
image.save(imgPath + "myFriends.jpg")
# 通过文件传输助手发送到自己微信中
itchat.send_image(imgPath + "myFriends.jpg", 'filehelper')
image.show()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/simon4055/fun.git
git@gitee.com:simon4055/fun.git
simon4055
fun
Python有趣的代码
master

搜索帮助