Merge branch 'fix-LoadImageMask' of https://github.com/flyingshutter/ComfyUI

This commit is contained in:
comfyanonymous 2023-04-12 01:24:53 -04:00
commit f15b4a7ffa
1 changed files with 2 additions and 0 deletions

View File

@ -940,6 +940,8 @@ class LoadImageMask:
input_dir = folder_paths.get_input_directory() input_dir = folder_paths.get_input_directory()
image_path = os.path.join(input_dir, image) image_path = os.path.join(input_dir, image)
i = Image.open(image_path) i = Image.open(image_path)
if i.getbands() != ("R", "G", "B", "A"):
i = i.convert("RGBA")
mask = None mask = None
c = channel[0].upper() c = channel[0].upper()
if c in i.getbands(): if c in i.getbands():