Reputation: 31
I'm trying to open a .png with Pillow and the output results in the following:
Input:
Pillow Output:
I believe this has to do with the color opacity, how would I go about making a cleaner output?
Currently, I use Image.open(filename).convert('HSV')
Upvotes: 0
Views: 46
Reputation: 31
My output image was in RGB, not RGBA, and I converted all images to RGBA
Upvotes: 0