convert rgba to rgb

some image format (e.g. jpg) do not support rgba
This commit is contained in:
Vladimir Mandic 2023-02-08 07:03:36 -05:00 committed by GitHub
parent ea9bd9fc74
commit 4c562a9832
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -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))