您好,登錄后才能下訂單哦!
前言
大家應該經常在朋友圈看到有人發九宮格圖片,其實質就是將一張圖片切成九份,然后在微信中一起發這九張圖即可。
說到切圖,Python 就可以實現,主要用到的 Python 庫為 Pillow,安裝使用 pip install pillow 即可,切圖的主要步驟如下:
主要實現代碼如下:
# 填充新的 image def fill_image(image): width, height = image.size _length = width if height > width: _length = height new_image = Image.new(image.mode, (_length, _length), color='white') if width > height: new_image.paste(image, (0, int((_length - height) / 2))) else: new_image.paste(image, (int((_length - width) / 2), 0)) return new_image # 裁剪 image def cut_image(image): width, height = image.size _width = int(width / 3) box_list = [] for i in range(0, 3): for j in range(0, 3): box = (j * _width, i * _width, (j + 1) * _width, (i + 1) * _width) box_list.append(box) image_list = [image.crop(box) for box in box_list] return image_list # 將 image 列表的里面的圖片保存 def save_images(image_list, res_dir): index = 1 if not os.path.exists(res_dir): os.mkdir(res_dir) for image in image_list: new_name = os.path.join(res_dir, str(index) + '.png') image.save(new_name, 'PNG') index += 1
原圖:
效果圖:
總結
到此這篇關于利用Python實現朋友圈中的九宮格圖片效果的文章就介紹到這了,更多相關Python實現朋友圈九宮格圖片內容請搜索億速云以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持億速云!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。