偶然在網(wǎng)上發(fā)現(xiàn)itchat這個框架,itchat是一個開源的微信個人號接口,它使python調(diào)用微信變得非常簡單好爬【中郏看到網(wǎng)上有人發(fā)自己微信好友的頭像拼接圖,自己也做了一個存炮,感覺還蠻好玩的炬搭。
下面介紹實(shí)現(xiàn)過程:
安裝itchat
這個當(dāng)然還是使用豆瓣源了,速度杠杠的pip install -i https://pypi.douban.com/simple/ itchat
項(xiàng)目依賴
頭像拼接用到了pillow
這個第三方庫穆桂,和itchat一樣的安裝方法
代碼
首先調(diào)用接口登錄宫盔,然后可以獲取到好友信息,其中第一個為自己的信息享完。返回的信息為一個列表灼芭,里面內(nèi)容可以復(fù)制出來通過json工具格式化,查看返回的字段般又。然后再次調(diào)用接口下載圖片彼绷,用pillow拼接即可。
import itchat
import math
import os
import PIL.Image as Image
#給auto_login方法傳入值為真的hotReload.即使程序關(guān)閉茴迁,一定時間內(nèi)重新開啟也可以不用重新掃碼
itchat.auto_login(hotReload=True)
friends = itchat.get_friends(update=True)
#下載所有好友的頭像圖片
num = 0
for i in friends:
img = itchat.get_head_img(i["UserName"])
with open('./headImg/' + str(num) + ".jpg",'wb') as f:
f.write(img)
f.close()
num += 1
#獲取文件夾內(nèi)的文件個數(shù)
length = len(os.listdir('./headImg'))
#根據(jù)總面積求每一個的大小
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('./headImg/' + str(i) + ".jpg")
except IOError:
print(i)
print("Error")
else:
img = img.resize((each_size, each_size), Image.ANTIALIAS) #resize image with high-quality
image.paste(img, (x * each_size, y * each_size))
x += 1
if x == lines:
x = 0
y += 1
image.save('./headImg/' + "all.png")
#通過文件傳輸助手發(fā)送到自己微信中
itchat.send_image('./headImg/' + "all.png",'filehelper')
image.show()