1234567891011121314def add_background_to_the_image(): from PIL import Image # 加载原始图片 image = Image.open('img.png') # 创建背景 background = Image.new('RGB', (2000, 2000), (255, 255, 255)) # 将原始图片放置在背景上 background.paste(image, (100, 100)) # 保存结果图片 background.save('img_res.png')