s9dw
s9dw

Reputation: 31

Python Pillow Losing Transparency

I'm trying to open a .png with Pillow and the output results in the following:

Input:
OG image

Pillow Output:
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

Answers (1)

s9dw
s9dw

Reputation: 31

My output image was in RGB, not RGBA, and I converted all images to RGBA

Upvotes: 0

Related Questions