mirror of
https://github.com/openvinotoolkit/stable-diffusion-webui.git
synced 2024-12-14 22:53:25 +03:00
Merge pull request #12480 from catboxanon/fix/cc
Fix color correction by converting image to RGB
This commit is contained in:
commit
26c92f056a
@ -57,7 +57,7 @@ def apply_color_correction(correction, original_image):
|
||||
|
||||
image = blendLayers(image, original_image, BlendType.LUMINOSITY)
|
||||
|
||||
return image
|
||||
return image.convert('RGB')
|
||||
|
||||
|
||||
def apply_overlay(image, paste_loc, index, overlays):
|
||||
|
Loading…
Reference in New Issue
Block a user