PHP合併不同的圖層 Part 2/2【27/366】

今天延續昨天的話題
另外一個合併的語法
$show_image = imagecreatetruecolor($width_new, $height_new);
imagefill($show_image, 0, 0, 0x7fff0000);
imagealphablending($show_image, false);
imagesavealpha($show_image, true);
$img_path = "test_images.png";
$img= imagecreatefrompng($img_path);
imagesavealpha($img, true);

以上語法之前的文章都說明過了
閱讀全文 PHP合併不同的圖層 Part 2/2【27/366】