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 的頭像
    stockwfj3

    程式設計@筆記

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