效果圖(成果大大好帥)
代碼(需要自己調參)
from PIL import Image
print('截圖')
for i in range(1,9):
img = Image.open('./原圖/%d.png'%i)
w, h = img.size
print(w, h)
if i != 1:
box = (0, 930, 1920, 1050)
img = img.crop(box)
# 保存截取的圖片
img.save('./截圖/%d.png'%i)
print('計算')
x, y = 0, 0
for i in range(1,9):
img = Image.open('./截圖/%d.png'%i)
w, h = img.size
x = w
y += h
print(x, y)
print('拼接')
height = 0
out = Image.new("RGB", (x, y-30))
for i in range(1,9):
img = Image.open('./截圖/%d.png'%i)
out.paste(img, (0, height))
if i == 1:
height += 1050
else:
height += h
out.save("out.png")