Removed image scale-down at the end of processing

This commit is contained in:
Dylan 2022-07-22 00:57:07 +01:00
parent b0547ce810
commit 2da2cd5200

View File

@ -94,7 +94,7 @@ def genImage(imageArray):
combinedBG = combineImages(imageArray, *totalSize,False)
combinedBG = blurImage(combinedBG,50)
finalImg = Image.alpha_composite(combinedBG,combined)
finalImg = ImageOps.pad(finalImg, findImageWithMostPixels(imageArray).size,color=(0, 0, 0, 0))
#finalImg = ImageOps.pad(finalImg, findImageWithMostPixels(imageArray).size,color=(0, 0, 0, 0))
finalImg = finalImg.convert('RGB')
return finalImg