diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-02-19 09:41:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 09:41:29 +0000 |
commit | dfb3b8f398239876cdfc03657680e50c76a1fed8 (patch) | |
tree | 30b5b4e5a179e9d88e75ac0abdcf0090e1c74397 /modules/img2img.py | |
parent | edb10092de516dda5271130ed53628387780a859 (diff) | |
parent | 43137773227344dd79b56c227dbc9fb54ac7c337 (diff) | |
download | stable-diffusion-webui-gfx803-dfb3b8f398239876cdfc03657680e50c76a1fed8.tar.gz stable-diffusion-webui-gfx803-dfb3b8f398239876cdfc03657680e50c76a1fed8.tar.bz2 stable-diffusion-webui-gfx803-dfb3b8f398239876cdfc03657680e50c76a1fed8.zip |
Merge branch 'master' into weighted-learning
Diffstat (limited to 'modules/img2img.py')
-rw-r--r-- | modules/img2img.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/img2img.py b/modules/img2img.py index bcc158dc..c973b770 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -73,6 +73,8 @@ def process_batch(p, input_dir, output_dir, inpaint_mask_dir, args): if not save_normally:
os.makedirs(output_dir, exist_ok=True)
+ if processed_image.mode == 'RGBA':
+ processed_image = processed_image.convert("RGB")
processed_image.save(os.path.join(output_dir, filename))
|