מצאתי את זה ב-PHP.NET:
PHP קוד:
Don't forget about imagealphablending() and imagesavealpha() if you're working with [semi]transparent png.
<?php
$file = 'semitransparent.png'; // path to png image
$img = imagecreatefrompng($file); // open image
imagealphablending($img, true); // setting alpha blending on
imagesavealpha($img, true); // save alphablending setting (important)
?>
ותעיין אולי בפונקציה הזו:
http://www.php.net/manual/en/functio...ransparent.php
בהצלחה