[使用PIL,我试图从图像中复制一个矩形,然后将其粘贴到另一个图像中。这是我的代码:
import Image
ii = Image.open("ramza.png")
box = (70, 70, 30, 30)
region = ii.crop(box)
io = Image.open("template.png")
io.paste(region, box)
io.save("output.png")
我收到此错误:
ValueError:图像不匹配
你们中的任何人都知道解决方法吗?
(left, upper, right, lower)
。
box = (70, 70, 100, 100)
分解为组件:
x, y, w, h = (70, 70, 30, 30) box = (x, y, x + w, y + h)
box
的paste
参数包含float
而不是int
,则也会出现此错误。