码迷,mamicode.com
首页 > 编程语言 > 详细

Python实现好友全头像的拼接

时间:2017-06-23 23:48:24      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:date   文件夹   lin   过程   chat   word   size   upd   学习   

技术分享
微信好友全头像

话不多说,直接上代码

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(‘文件夹‘)
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(‘文件夹‘ + "/" + 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(‘文件夹‘ + "/" + "all.jpg")
itchat.send_image(‘文件夹‘ + "/" + "all.jpg", ‘filehelper‘)

代码运行需要安装两个库

pip install itchat
pip install pillow

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

技术分享
itchat官方介绍

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

学习过程中遇到什么问题或者想获取学习资源的话,欢迎加入学习交流群
626062078,我们一起学Python!

Python实现好友全头像的拼接

标签:date   文件夹   lin   过程   chat   word   size   upd   学习   

原文地址:http://www.cnblogs.com/jiaoyu121/p/7071935.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!