tags:

views:

150

answers:

1

I am using GD to output an image that is a truecolor+alpha channel PNG file using imagepng just fine. However, I would like to have the ability to also output an ie6-compatible 256-color PNG as well. According to the official documentation for imagetruecolortopalette:

The code has been modified to preserve as much alpha channel information as possible in the resulting palette, in addition to preserving colors as well as possible.

However, I am finding that the results of this function do not properly preserve any transparency at all. I used this firefox image with text superimposed on top of it as a test, and all the function did was give me a white background and a weird dark blue border. I know that I can't hope to preserve the full alpha channel, but surely this function would at least pick up on the transparent background. Is there something I'm missing? Are there any alternative approaches that I can take?

A: 

take a look at imagesavealpha in the php-documentation - i think this is what you are looking for.

oezi
Using this function to turn off the alpha channel doesn't properly turn the parts of the picture that were previously transparent into a transparent color.
AlexMax