close

 

例子

<?php
// 載入帶 alpha 通道的 png 圖像
$png = imagecreatefrompng('./alphachannel_example.png');

// 做些必須的操作

// 關閉 alpha 渲染並設置 alpha 標誌
imagealphablending($png, false);
imagesavealpha($png, true);

// 輸出圖像到瀏覽器
header('Content-Type: image/png');

imagepng($png);
imagedestroy($png);
?>

arrow
arrow
    全站熱搜

    stockwfj3 發表在 痞客邦 留言(0) 人氣()