一招讓你的朋友圈更具13格,包教包會
阿新 • • 發佈:2018-12-12
前言
對於發朋友圈,我想很多人都有一種“執念”,那就是一定要集齊九張圖,沒有九張圖的朋友圈是沒有靈魂的!!!
為了集齊九張圖也是煞費苦心,我會告訴你,用Python輕鬆製作九張圖嘛,而且也特別的好看!
基本環境配置
版本:Python3
系統:Windows
模組:PIL
安裝模組:pip install pillow
先睹為快
原圖:
就是把一張圖,分割成九張圖....
實現程式碼也簡單
from PIL import Image import sys #先將 input image 填充為正方形 def fill_image(image): width, height = image.size #選取長和寬中較大值作為新圖片的 new_image_length = width if width > height else height #生成新圖片[白底] new_image = Image.new(image.mode, (new_image_length, new_image_length), color='white') #注意這個函式! #將之前的圖貼上在新圖上,居中 if width > height:#原圖寬大於高,則填充圖片的豎直維度 #(x,y)二元組表示貼上上圖相對下圖的起始位置,是個座標點。 new_image.paste(image, (0, int((new_image_length - height) / 2))) else: new_image.paste(image, (int((new_image_length - width) / 2),0)) return new_image def cut_image(image): width, height = image.size item_width = int(width / 3) #因為朋友圈一行放3張圖。 box_list = [] # (left, upper, right, lower) for i in range(0,3): for j in range(0,3): #print((i*item_width,j*item_width,(i+1)*item_width,(j+1)*item_width)) box = (j*item_width,i*item_width,(j+1)*item_width,(i+1)*item_width) box_list.append(box) image_list = [image.crop(box) for box in box_list] return image_list #儲存 def save_images(image_list): index = 1 for image in image_list: image.save(str(index) + '.png', 'PNG') index += 1 if __name__ == '__main__': file_path = "4.jpg" image = Image.open(file_path) #image.show() image = fill_image(image) image_list = cut_image(image) save_images(image_list)
複製以上程式碼,就可以直接運行了。趕緊去發個朋友圈試試吧。
本文源自網路,如有侵權,請聯絡小編刪除。