你好,我正在試圖結合兩個透明的png-24圖像,兩個大小400寬度,150高度。組合使用Php的2 png-24透明圖像
後臺: 「http://www.fenixflame.net/Background-Zanaris-24.png"][1]
我想覆蓋土坯背景圖像: [」 HTTP ://www.fenixflame.net/Bandos-Slayer-24.png「] [2]
我已經嘗試了使用php疊加透明圖像,但只有png-8圖像。由於圖片不能正確呈現,因此無法使用png-8。
編輯:代碼我tryed:
$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);
//
你在使用什麼庫? – yoda 2010-12-22 22:58:47
我真的不知道,不是一個PHP的傢伙,如果有的話猜猜默認的那個? – Dangerosking 2010-12-22 23:02:17