如下
from PIL import Image
# 打开两张图片
image1 = Image.open(r"C:\Users\Videos\Captures\图片9.png")
image2 = Image.open(r"C:\UsersVideos\Captures\图片10.png")
# 获取图片尺寸
width, height = image1.size
# 创建新的图片,尺寸为原图片的2倍宽度
new_image = Image.new("RGB", (width * 2, height))
# 将两张图片粘贴到新的图片上
new_image.paste(image1, (0, 0))
new_image.paste(image2, (width, 0))
# 保存拼接后的图片
new_image.save(r"C:\Users\\Videos\Captures\result6.png")
# 显示拼接后的图片
new_image.show()