您好,登錄后才能下訂單哦!
前聊天刷朋友圈,曬了一張下面的照片,微信好友墻,一張大圖片,展示了自己所有好友的照片!
效果圖如下,出于隱私,這里作了模糊處理。
是不是很炫,而且這還是獨(dú)一無二的,畢竟每個(gè)人的微信好友是不一樣的。本文就教大家用Python來實(shí)現(xiàn)這種效果。
操作系統(tǒng):Windows
Python版本:3.7.3
我們需要首先需要獲取好友的頭像信息,接下來處理圖像并完成圖像的拼接。
準(zhǔn)備工作
在這里,我們登錄微信獲取好友信息,使用的是 wxpy 模塊;處理并生成最終的圖像借助 PIL 模塊。因?yàn)槎际堑谌侥K,如環(huán)境中沒有可以使用 pip 進(jìn)行安裝。另外涉及路徑的處理等,我們需要導(dǎo)入 os 模塊和 sys 模塊。
from wxpy import * import PIL.Image as Image import os import sys
獲取并存儲(chǔ)好友頭像信息
我們要獲取微信好友的頭像,首先需要登錄微信
# 初始化機(jī)器人,掃碼登陸微信,適用于Windows系統(tǒng) bot = Bot() # # Linux系統(tǒng),執(zhí)行登陸請(qǐng)調(diào)用下面的這句 # bot = Bot(console_qr=2, cache_path="botoo.pkl"
在獲取好友頭像信息之前,我們得先在本地創(chuàng)建一個(gè)目錄,用于后續(xù)存儲(chǔ)好友頭像的文件。
# 獲取當(dāng)前路徑信息 curr_dir = get_dir(sys.argv[0]) # 如果FriendImgs目錄不存在就創(chuàng)建一個(gè) if not os.path.exists(curr_dir + "FriendImgs/"): os.mkdir(curr_dir + "FriendImgs/")
接下來就是獲取友頭像信息,并將其存儲(chǔ)在本地創(chuàng)建的目錄中。
my_friends = bot.friends(update=True) # 獲取好友頭像信息并存儲(chǔ)在FriendImgs目錄中 n = 0 for friend in my_friends: friend.get_avatar(curr_dir + "FriendImgs/" + str(n) + ".jpg") n = n + 1
這時(shí)你就可以在本地FriendImgs文件夾中,看到保存下來的微信好友頭像的圖片。
生成微信好友墻
制作微信好友墻,就像以前的大字報(bào),把我們下載的好友頭像逐一貼上去即可。
首先設(shè)定好微信好友墻的尺寸,使用 Image.new() 方法。
image = Image.new("RGB", (650, 650))
接下來,我們需要逐個(gè)打開微信好友的圖片,使用 Image.open() 方法。
img = Image.open(curr_dir + "FriendImgs/" + file_names)
將微信頭像圖片,重置為50*50像素尺寸的小圖,使用 img.resize() 方法。
img = img.resize((50, 50), Image.ANTIALIAS)
然后將圖片黏貼到我們的照片墻中,使用 image.paste() 方法。
image.paste(img, (x * 50, y * 50))
最后將制作完成的照片墻保存下來,使用 image.save() 方法。
img = image.save(curr_dir + "WeChat_Friends.jpg")
現(xiàn)在我們將本小節(jié)中代碼整合到一起,如下所示:
# 準(zhǔn)備生成微信好友頭像墻的尺寸 image = Image.new("RGB", (650, 650)) # 定義初始圖片的位置 x = 0 y = 0 # 獲取下載的頭像文件 curr_dir = get_dir(sys.argv[0]) ls = os.listdir(curr_dir + 'FriendImgs') # 遍歷文件夾的圖片 for file_names in ls: try: # 依次打開圖片 img = Image.open(curr_dir + "FriendImgs/" + file_names) except IOError: continue else: # 重新設(shè)置圖片的大小 img = img.resize((50, 50), Image.ANTIALIAS) # 將圖片粘貼到最終的照片墻上 image.paste(img, (x * 50, y * 50)) # 設(shè)置每一行排13個(gè)圖像 x += 1 if x == 13: x = 0 y += 1 # 保存圖片為WeChat_Friends.jpg img = image.save(curr_dir + "WeChat_Friends.jpg 代碼執(zhí)行后,最終生成的效果圖如下:
(這里展示的圖片做了模糊處理)
本文中設(shè)定照片墻尺寸為650*650,而好友頭像尺寸為50*50,這樣最終制作成的照片墻每行有13位好友,共計(jì)容納13*13位好友。
大家可根據(jù)自己實(shí)際情況,自行調(diào)整尺寸參數(shù),以達(dá)到最佳效果。大家可以動(dòng)手試一下啦!制作自己獨(dú)一無二的照片墻吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。