今天延續昨天的話題
另外一個合併的語法
$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】
標籤: GD
PHP合併不同的圖層 Part 1/2【26/366】
昨天寫了產生透明的圖層
然後生成一張透明PNG
今天要用其他圖片合併到現在的透明圖層上
閱讀全文 PHP合併不同的圖層 Part 1/2【26/366】
PHP產生透明PNG圖片【25/366】
要做一個產生圖片用的API
剛好圖源都是PNG的透明底圖
所以就來發表一下研究結果
PHP要開啟GD的功能
怎麼開就自己研究吧
閱讀全文 PHP產生透明PNG圖片【25/366】