This commit is contained in:
Saquib Alam 2023-08-08 20:38:53 +05:30 committed by GitHub
parent ce546a3698
commit ee6c3b3587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1449,7 +1449,7 @@ class ImageAlphaComposite:
RETURN_TYPES = ("IMAGE", "MASK")
FUNCTION = "alpha_composite"
def alpha_composite(self, image1, mask1, image2, mask2):
print(image1.get_shape(), mask1.get_shape())
print(image1.size(), mask1.size())
image = image1 * mask1
return (image, mask1)