I put in a partially transparent PNG image in Tkinter and all I get is this

How do I make the dark triangle on the right clear? (like it’s supposed to be)
This is python 2.6 on Windows 7, btw.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here’s an example (the PNG file example.png has lots of transparency in different places):
You need to make sure the image has been stored as "RGBA" which is RGB with an alpha channel. You can check for that using a graphics program of your choice, or using PIL (Python Imaging Library):
This should print "RGBA". If not, you’ll have to make sure the alpha channel is saved with the image. You’ll have to consult your graphics program manual for how to do that.