0
点赞
收藏
分享

微信扫一扫

微信好友全头像


直接上图





微信好友全头像_下载图片


代码

import itchat
import math
import PIL.Image as Image
import os

itchat.auto_login()
friends = itchat.get_friends(update=True)[0:]
user = friends[0]["UserName"]

num = 0
for i in friends:
img = itchat.get_head_img(userName=i["UserName"])
fileImage = open('文件夹路径' + "/" + str(num) + ".jpg",'wb')
fileImage.write(img)
fileImage.close()
num += 1

ls = os.listdir('C:/Users/LP/Desktop/image')
each_size = int(math.sqrt(float(640*640)/len(ls)))
lines = int(640/each_size)
image = Image.new('RGBA', (640, 640))
x = 0
y = 0
for i in range(0,len(ls)+1):
try:
img = Image.open('C:/Users/LP/Desktop/image' + "/" + str(i) + ".jpg")
except IOError:
print("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('C:/Users/LP/Desktop/image' + "/" + "all.jpg")
itchat.send_image('C:/Users/LP/Desktop/image' + "/" + "all.jpg", 'filehelper')

代码分析

首先下载图片,最后通过piilow拼接起来

举报

相关推荐

0 条评论