File size: 246 Bytes
2252f3d
 
 
 
 
 
 
1
2
3
4
5
6
7
from PIL import Image

def add_margin(pil_img, color=0, size=256):
    width, height = pil_img.size
    result = Image.new(pil_img.mode, (size, size), color)
    result.paste(pil_img, ((size - width) // 2, (size - height) // 2))
    return result