Python实现好友全头像的拼接实例(推荐)

Python实现好友全头像的拼接实例(推荐),第1张

概述微信好友全头像话不多说,直接上代码importitchatimportmathimportPIL.ImageasImageimportos

微信好友全头像

话不多说,直接上代码

import itchatimport mathimport PIL.Image as Imageimport ositchat.auto_login()frIEnds = itchat.get_frIEnds(update=True)[0:]user = frIEnds[0]["Username"]num = 0for i in frIEnds: img = itchat.get_head_img(username=i["Username"]) fileImage = open('文件夹' + "/" + str(num) + ".jpg",'wb') fileImage.write(img) fileImage.close() num += 1ls = os.Listdir('文件夹')each_size = int(math.sqrt(float(640*640)/len(ls)))lines = int(640/each_size)image = Image.new('RGBA',(640,640))x = 0y = 0for i in range(0,len(ls)+1): try:  img = Image.open('文件夹' + "/" + 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 += 1image.save('文件夹' + "/" + "all.jpg")itchat.send_image('文件夹' + "/" + "all.jpg",'filehelper')

代码运行需要安装两个库

pip install itchat
pip install pillow

如果安装python的时候pip安装选项没打√ ,就先安装pip。

Python和pip的安装

itchat官方介绍

代码运行过程中会出现登录二维码,用微信扫一下,你就可以看到处理的进度。一会你的微信文件传输助手就会收到拼接好的头像图片。

以上这篇Python实现好友全头像的拼接实例(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的Python实现好友全头像的拼接实例(推荐)全部内容,希望文章能够帮你解决Python实现好友全头像的拼接实例(推荐)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1202049.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存