Jump to content

GD2 Help


christianmatthew

Recommended Posts

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 layers
imagecopy($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 disc
imagepng($im, "final.png");

// Deallocate memory of image
imagedestroy($im);
Link to comment
https://forums.phpfreaks.com/topic/3758-gd2-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.