1
0
Fork 0

fix(api): remove alpha channel after blending but before upscaling (fixes #148)

This commit is contained in:
Sean Sube 2023-02-15 17:49:42 -06:00
parent b5eeb44c62
commit 32a4bbcd64
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 1 additions and 0 deletions

View File

@ -253,6 +253,7 @@ def run_blend_pipeline(
mask=mask, mask=mask,
callback=progress, callback=progress,
) )
image = image.convert("RGB")
image = run_upscale_correction( image = run_upscale_correction(
job, server, stage, params, image, upscale=upscale, callback=progress job, server, stage, params, image, upscale=upscale, callback=progress