1
2
3
4
5
6
7
8
9
10
11
12
13
14
def 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')