Tem esse exemplo no manual do php:
<?php // Load a png image with alpha channels $png = imagecreatefrompng('./alphachannel_example.png'); // Do required operations // Turn off alpha blending and set alpha flag imagealphablending($png, false); imagesavealpha($png, true); // Output image to browser header('Content-Type: image/png'); imagepng($png); imagedestroy($png); ?>Veja se essas funções imagealphablending() e imagesavealpha() resolvem seu problema.
Ahhhhhhhhhh, funcionou. Você salvou minha vida cara. Obrigada!