1
0
Fork 0

fix(api): correct blending mask (fixes #188)

This commit is contained in:
Sean Sube 2023-02-19 11:04:11 -06:00
parent c459e96523
commit f561dfae83
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 1 additions and 1 deletions

View File

@ -39,4 +39,4 @@ def blend_mask(
for s in sources for s in sources
] ]
return Image.composite(resized[0], resized[1], mult_mask) return Image.composite(resized[1], resized[0], mult_mask)