照片,可以勾起无限零零碎碎的回忆,或美好,或悲伤。
将零零散散的回忆连接在一起,便是一段难以忘怀的往事。
今天就带给大家一种把多张照片集合成一张“照片墙”的方法,包学包会,注释非常全面哦~😄
pip install pillow
🍓照片素材
如果你有很多图片的话,可以自己设置一下。
没有的话,也不用担心呀,博主写好了一个爬虫,可以爬取根据你想要的分辨率爬取漂亮姐姐的照片,赶紧去看看吧😆
python爬取指定分辨率模特壁纸
🍉普通照片墙
"""
# @Time: 2021/8/21 20:11
# @Author: 远方的星
# @CSDN: https://blog.csdn.net/qq_44921056
"""
import os
from PIL import Image
from PIL import ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
image_list = os.listdir("D:/极简壁纸")
lines = 10
image_width = 192
image_height = 108
image_wall = Image.new("RGB", (image_width*lines, image_height*lines))
x = 0
y = 0
for i in range(0, lines**2):
image = Image.open("D:/极简壁纸/" + image_list[i])
image = image.resize((image_width, image_height))
image_wall.paste(image, (x*image_width, y*image_height))
x += 1
if x == lines:
x = 0
y += 1
image_wall.show()
image_wall.save("D:/image_wall.png")
print("照片墙保存完成啦^_^")
🍑心形照片墙
为了能够更好体现出心形效果,可以先模拟涂色,我这里是利用wps的表格,模拟照片墙效果 心形不像上面标准的照片墙容易计算,但也是有迹可循。后四行的涂色部分数量是一个等差数列,中间有两行涂满了,最上面三行单独判断就可以了。 于是,可以写一个判断函数:
def images_position(x, y):
if x == 0 and y in [1, 2, 6, 7]:
return True
elif x == 1 and y not in [3, 4, 5]:
return True
elif x == 2 and y != 4:
return True
elif x in [3, 4]:
return True
elif x >= 5 and (x - 5) < y < (13 - x):
return True
然后,我们先创建一个空的画布,然后规定每张图片的固定尺寸为192x192,然后我们按照红框的计算,动态填充图片或者白色的幕布。
"""
# @Time: 2021/8/21 21:46
# @Author: 远方的星
# @CSDN: https://blog.csdn.net/qq_44921056
"""
from PIL import Image
from PIL import ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
def images_position(x, y):
if x == 0 and y in [1, 2, 6, 7]:
return True
elif x == 1 and y not in [3, 4, 5]:
return True
elif x == 2 and y != 4:
return True
elif x in [3, 4]:
return True
elif x >= 5 and (x - 5) < y < (13 - x):
return True
lines = 9
heart_image = Image.new('RGB', (192 * lines, 192 * lines))
row = col = 0
for side in range(lines * lines):
if images_position(col, row):
img = Image.open("D:/极简壁纸/{}.png".format(side+1))
img = img.resize((192, 192), Image.ANTIALIAS)
else:
img = Image.new("RGB", (192, 192), (255, 255, 255))
heart_image.paste(img, (row * 192, col * 192))
col += 1
if col == lines:
col = 0
row += 1
if row == col == lines:
break
heart_image.show()
heart_image.save("D:/heart_image.png")
如果对你有帮助,记得点个赞👍哟,也是对作者最大的鼓励🙇?♂?。 如有不足之处可以在评论区👇多多指正,我会在看到的第一时间进行修正
作者:远方的星 CSDN:https://blog.csdn.net/qq_44921056 本文仅用于交流学习,未经作者允许,禁止转载,更勿做其他用途,违者必究。
|