Hello 我试图将两个透明的Png-24图像结合起来,即400width, 150hels。
背景资料:[http://www.fenixflame.net/Background-Zanaris-24.png]
And the image I want to overlay adobe the background: ["http://www.fenixflame.net/Bandos-Slayer-24.png"][2]
我尝试过使用php,但只有png-8图像来传播透明图像。 不要使用P纳克-8来aca这些图像,那不会正确。
Edit: Code 我尝试:
$image = imagecreatefrompng("http://www.fenixflame.net/Background-Zanaris-24.png");
$frame = imagecreatefrompng("http://www.fenixflame.net/Bandos-Slayer-24.png");
//
//imagealphablending($frame,true);
//
$insert_x = imagesx($frame);
$insert_y = imagesy($frame);
imagecopymerge($image,$frame,0,0,0,0,$insert_x,$insert_y,100);
//
//# Save the image to a file imagepng($image, /path/to/save/image.png );
imagepng($image, "/home1/fenixfla/public_html/Images/Signatures/NewImageBG.png");
//
//# Output straight to the browser.
imagepng($image);
//