vote up 1 vote down star
1
from PIL import Image

img = Image.open('1.png')
img.save('2.png')

The first image has a transparent background, but when I save it, the transparency is gone (background is white)

What am I doing wrong?

flag

2 Answers

vote up 3 vote down check

Hello,

Probably the image is indexed (mode "P" in PIL), so the transparency is not set in PNG alpha channel, but in metadata info.

You can get transparent background palette index with the following code:

from PIL import Image

img = Image.open('1.png')
png_info = img.info
img.save('2.png', **png_info)

image info is a dictionary, so you can inspect it to see the info that it has:

eg: If you print it you will get an output like the following:

{'transparency': 7, 'gamma': 0.45454, 'dpi': (72, 72)}

The information saved there will vary depending on the tool that created the original PNG, but what is important for you here is the "transparency" key. In the example it says that palette index "7" must be treated as transparent.

link|flag
It worked, thank you! Kind of strange, though, that those properties were not saved automatically. – maksymko Aug 6 at 6:13
vote up 1 vote down

You can always force the the type to "RGBA",

img = Image.open('1.png')
img.convert('RGBA')
img.save('2.png')
link|flag
2  
Of course, but that way he will not be generating the same image as the original one, from the format wise. – Lucas S. Aug 5 at 16:38
+1. Ahh yes, very true Lucas S. – Nathan Ross Powell Aug 6 at 13:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.