Fix color correction by converting image to RGB

This commit is contained in:
catboxanon 2023-08-11 12:22:11 -04:00
parent ae6b30907d
commit af27b716e5
1 changed files with 1 additions and 1 deletions

View File

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