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);
?>
全站熱搜