CoolFace
Apppublic

Superlang/ImageComposition

sourceHugging Facecc-by-nc-4.0updated 3y agoView on Hugging Face
2likes
AlphaProcessor.py12 linesDownload Raw Back to processor
1from PIL import Image2 3 4class AlphaComposite:5    def __call__(self, im_rgb, bg_img):6        bg_img = bg_img.convert("RGBA")7        im_rgb = im_rgb.convert("RGBA")8        result = Image.alpha_composite(bg_img, im_rgb)9        return result10 11 12