如何在2x2网格中将多个图片(相同尺寸)与OIL相结合?

问题描述 投票:0回答:1
from PIL import Image
# same pic trying to open all 4 in a array
imgs = map(Image.open, ('yeet2.png','yeet2.png','yeet2.png','yeet2.png'))
# creating a blank image
dest = Image.new('RGB', (1500,600))
# creating a 2x2 grid
for x in range(0, 2):
 for y in range(0, 2):
    z = (x + y)
    print(z)
    # not sure how to do the array in paste
    dest.paste(imgs[z], (500 * x, 200 * y))
dest.show()

我知道已经存在这样的问题..我想知道如何在没有numpy的情况下在PIL中做到这一点......

python-3.x image python-imaging-library
1个回答
0
投票

我用python 2.7和PIL测试了你的确切代码,它运行正常。它应该在python3中以相同的方式工作。

你有什么错误信息?

如果您想要粘贴不同的图像,则必须修复:

z = (x + 2*y)
© www.soinside.com 2019 - 2024. All rights reserved.