我想将 2 个图像一起附加到一个新图像中,我可以单独打开每个图像,并且当我尝试打印icon.width或icon.height从我迭代的图标中获取实际宽度/高度时,我已成功将它们附加到数组中。我的问题是当我尝试粘贴图像时,我收到这个奇怪的错误
AttributeError: 'PngImageFile' object has no attribute 'load_seek'到目前为止,我没有发现任何有用的信息,而且我不知道我做错了什么。
from PIL import Image
icons = []
with Image.open('images/poison_copy.png') as copy:
icons.append(copy)
with Image.open('images/poison_2.jpg') as scopy:
icons.append(scopy)
# New sheet
first = icons[0]
sheet = Image.new(first.mode, (2*first.width, first.height))
x = 0
for icon in icons:
sheet.paste(icon, (x, 0))
x += icon.width
sheet.show()
SMILET
相关分类