christianmatthew Posted February 28, 2006 Share Posted February 28, 2006 I've been working on something which takes multiple PNG Transparent images and layers them on top of each other to make another transparent image. So far it kind or works, however the background turns completely black and I'm not sure what to do from here.So my main question is, how do I make a transparent background without killing my antialising (I don't want to set a transparent color and place that color as background)?HERE IS MY CODE:$im = @imagecreatetruecolor(200, 200) or die("Cannot Initialize new GD image stream");// Loading Images$red = imagecreatefrompng("red.png");imagealphablending($red, true);imagesavealpha($red, true);$blue = imagecreatefrompng("blue.png");imagealphablending($blue, true);imagesavealpha($blue, true);$green = imagecreatefrompng("green.png");imagealphablending($green, true);imagesavealpha($green, true);// Flattening layersimagecopy($blue, $red, 0, 0, 0, 0, 200, 200);imagecopy($green, $blue, 0, 0, 0, 0, 200, 200);imagecopy($im, $green, 0, 0, 0, 0, 200, 200);imagealphablending($im, true);imagesavealpha($im, true);// Save image to discimagepng($im, "final.png");// Deallocate memory of imageimagedestroy($im); Link to comment https://forums.phpfreaks.com/topic/3758-gd2-help/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.