話不多說,直接上程式碼
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如何實現頭像拼接技術/的詳細內容。更多資訊請關注PHP中文網其他相關文章!