Hi,
I've found that when viewing transparent png files that were created adobe photoshop in IE 6, I get no transparency at all. Yet, when I create an image from those same pngs in php I get a perfect transparency.
Example:
x.png viewed in IE 6 has no transparency instead, a white or light blue background.
yet when I do this:
<? header('Content-Type: image/png');
$x = imagecreatefrompng('x.png');
imagepng($im);
?>
(something like the above anyway)
and then view that in IE I get perfect transparency!
What's PHP doing to the image? How can I do this in photoshop?