Unverified Commit 26c92f05 authored by AUTOMATIC1111's avatar AUTOMATIC1111 Committed by GitHub
Browse files

Merge pull request #12480 from catboxanon/fix/cc

Fix color correction by converting image to RGB
parents ebc1bafb af27b716
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):