苏生不惑第
279
篇原创文章,将本公众号设为星标
,第一时间看最新文章。
之前分享过一键生成你的微信社交数据报告,不过很多人的微信不能登录网页版微信。
会提示这个:为了你的帐号安全,此微信号不能登录网页微信。你可以使用Windows微信或Mac微信在电脑端登录。Windows微信下载地址:https://pc.weixin.qq.com Mac微信下载地址:https://mac.weixin.qq.com
,不过现在有桌面版微信可以登录了,今天就是通过登录桌面版微信下载微信好友头像并拼图。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54import itchat,os
from math import sqrt
from PIL import Image
path = os.getcwd() + '\\wechat_pics\\'
numbers = input('请输入要下载的微信好友头像数量,默认为500:')
if numbers == '':
numbers = 500
# print(path)
#https://github.com/yizhihuamao/ItChat
def save_avatar(path):
if not os.path.exists(path):
os.mkdir(path)
itchat.auto_login(hotReload=False, enableCmdQR=2)
num = 0
for friend in itchat.get_friends(update=True)[0:]:
if num > int(numbers):
break
#查看好友微信名、备注名、性别(1:男 2:女 0:性别不详)、省份、个性签名
print(friend['NickName'],friend['RemarkName'],friend['Sex'],friend['Province'],friend['Signature'])
img = itchat.get_head_img(userName=friend["UserName"])
img_path = path + friend['NickName'] + "_" + friend['RemarkName'] + ".jpg"
try:
with open(img_path,'wb') as f:
f.write(img)
num+=1
except Exception as e:
print(repr(e))
#itchat.run()
def joint_avatar(path):
pathList = []
for item in os.listdir(path):
imgPath = os.path.join(path,item)
pathList.append(imgPath)
total = len(pathList)#图片总数
line = int(sqrt(total))
NewImage = Image.new('RGB', (128*line,128*line))
x = y = 0
for item in pathList:
try:
img = Image.open(item)
img = img.resize((128,128),Image.ANTIALIAS)
NewImage.paste(img, (x * 128 , y * 128))
x += 1
except IOError:
print("图片读取失败:%s" % (item))
x -= 1
if x == line:
x = 0
y += 1
if (x+line*y) == line*line:
break
NewImage.save("wechat_friends.jpg")
save_avatar(path)
joint_avatar(path)
先在公众号后台回复 拼图
获取软件,打开软件提示输入要下载的微信好友头像数量,默认为500个,因为有些人的微信好友有五六千人,如果全下载可能会失败。
如果cmd窗口太小无法显示二维码,可以安装个cmder软件,我之前文章分享过这个工具
用微信扫码登录下,登录成功后可以看到微信已经是桌面登录。
不过会踢掉你现在登录的电脑端微信,没关系,待会再用。
之后就开始下载你的微信好友头像了。
我有3000多微信好友,下载了十几分钟,下载的头像在wechat_pics目录(有200多MB),最后合成的拼图为wechat_friends.jpg,有10MB这么大,效果:
把合成的拼图发到朋友圈有可能是你点赞评论数最高的一条。
我把合并图片的功能单独打包了下,将要合成的图片放在pictures目录,打开软件会合成一张pictures.jpg,比如合成16张周杰伦的图片。
另外之前还分享过朋友圈九宫格图片分割工具如何发一条九宫格图片的朋友圈
最近原创文章:
每天定时签到腾讯/爱奇艺/网易云音乐/b站/a站/百度贴吧/天翼云盘等网站
又一视频下载神器,批量下载腾讯/优酷/爱奇艺/b站/抖音视频
如果文章对你有帮助还请
点赞/在看/分享
三连支持下, 感谢各位!