这可以通过Image实例的
paste方法来完成:
from PIL import Imageimg = Image.open('/path/to/file', 'r')img_w, img_h = img.sizebackground = Image.new('RGBA', (1440, 900), (255, 255, 255, 255))bg_w, bg_h = background.sizeoffset = ((bg_w - img_w) // 2, (bg_h - img_h) // 2)background.paste(img, offset)background.save('out.png')
可以在Nadia
Alramli的PIL教程中了解此方法以及其他许多PIL技巧
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)