Commit af27b716 authored by catboxanon's avatar catboxanon
Browse files

Fix color correction by converting image to RGB

parent ae6b3090
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):