I have been trying to create an image processing program to take all the white pixels (255,255,255) in a loaded image and set their alpha channels to 0 (non-opaque), and then save the image.
I've been using Python's pygame extension to help me achieve this, but so far I cannot find a simple way to do what I just described above.
Keep in mind I'm not trying to display an image, I'm trying to manipulate it.