In PHP GD, is it possible to make an image it-self transparent? I'm not talking about the background, etc. Is it possible to take a PNG image, and make the image transparent?
For example:
$c = imagecreatefrompng($urlToImage);
imagefill($c, 0, 0, imagecolorallocatealpha($c, 255, 255, 255, 50)); // 50 alpha.
imagepng($c);
This, however, doesn't do anything. Is there something I am missing? Thank you.
You forgot to use
imagecolortransparent()
function. more at : http://www.php.net/manual/en/function.imagecolortransparent.phpTaken from comments there here is an example of adding transparency