OutfitChanger / utils.py
altayavci's picture
Update utils.py
8aecc4a
raw
history blame contribute delete
253 Bytes
from PIL import Image
def overlay_on_white_background(img: Image):
background = Image.new("RGBA", img.size, (255, 255, 255))
result = Image.alpha_composite(background, img.convert("RGBA"))
result = result.convert("RGB")
return result