mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-08-20 07:23:29 +08:00
9 lines
229 B
Python
9 lines
229 B
Python
from PIL import Image
|
|
|
|
|
|
def flatten(img, bgcolor):
|
|
# Replace transparency with bgcolor
|
|
if img.mode in ("RGB"):
|
|
return img
|
|
return Image.alpha_composite(Image.new("RGBA", img.size, bgcolor), img).convert("RGB")
|