gpt4 book ai didi

python - PIL 值错误 : Images do not match

转载 作者:行者123 更新时间:2023-12-04 14:23:45 26 4
gpt4 key购买 nike

我一直在用 PIL 在 python 中乱搞,我正在研究一个在 4 个象限中镜像和图像的函数。显然我有一个错误,我似乎无法弄清楚。我的功能如下:

def mirror_four(image):
x = image.size[0]
y = image.size[1]

temp = Image.new("RGB", (image.size[0], image.size[1]), "black")

tl = image
tr = mirror_left(image)
bl = mirror_verticle(image)
br = mirror_verticle(tr)

image.paste(temp,(0,0,int(x/2),int(y/2)),tl)
image.paste(temp,(int(x/2),0,0,int(y/2)),tr)
image.paste(temp,(0,int(y/2),int(x/2),0),bl)
image.paste(temp,(x/2,y/2,x,y),br)

return temp

这将返回错误:ValueError:图像不匹配

我有点迷茫,PIL 文档对我帮助不大。在此先感谢您的帮助!

最佳答案

以您的第一条粘贴行为例 - 对于 'paste' 的 'box' 参数,您已指定 (0,0,int(x/2),int(y/2) - 图像大小的一半。但是, 尝试粘贴的图像与框的大小不匹配。将“框”参数更改为 (0,0,int(x),int(y)) 将解决您的直接问题,尽管我怀疑您实际上想要裁剪正在粘贴的图像。

我还要注意的是,如果您不想 - (0,0) 因为 x 和 y 也可以工作,则不必提供要粘贴的图像的大小。

关于python - PIL 值错误 : Images do not match,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50300282/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com