分享Python如何实现头像拼接技术/
程序员文章站
2022-04-18 23:17:58
...
话不多说,直接上代码
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 = 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 += 1if x == lines:x = 0y += 1 image.save('文件夹' + "/" + "all.jpg") itchat.send_image('文件夹' + "/" + "all.jpg", 'filehelper')
代码运行需要安装两个库
pip install itchat pip install pillow
如果安装python的时候pip安装选项没打√ ,就先安装pip。
Python和pip的安装
代码运行过程中会出现登录二维码,用微信扫一下,你就可以看到处理的进度。一会你的微信文件传输助手就会收到拼接好的头像图片。
学习过程中遇到什么问题或者想获取学习资源的话,欢迎加入学习交流群
以上就是分享Python如何实现头像拼接技术/的详细内容,更多请关注其它相关文章!
上一篇: JSONBuddy的安装步奏详解
推荐阅读
-
Python拼接微信好友头像大图的实现方法
-
python 每天如何定时启动爬虫任务(实现方法分享)
-
阿里巴巴技术文章分享:阿里云无线&前端团队是如何基于webpack实现前端工程化的_html/css_WEB-ITnose
-
Python拼接微信好友头像大图的实现方法
-
阿里巴巴技术文章分享:阿里云无线&前端团队是如何基于webpack实现前端工程化的_html/css_WEB-ITnose
-
关于Python如何实现登录接口的方法分享
-
关于Python如何实现登录接口的方法分享
-
python如何实现xml与数据库读取转换的示例代码分享
-
分享Python如何实现头像拼接技术/
-
Python如何实现阳历转阴历的方法分享