imagesavealpha()函數是PHP中的內置函數,用於設置在保存PNG圖像時是否保留完整的Alpha通道信息。 Alpha通道告訴圖像是完全透明還是不透明。必須使用imagealphablending($im,false))禁用Alpha混合,以首先保留alpha-channel。
用法:
bool imagesavealpha( resource $image, bool $save_flag )
參數:該函數接受上述和以下描述的兩個參數:
- $image:它指定要處理的圖像資源。
- $save_flag:它指定是否保存Alpha通道。
返回值:如果成功,則此函數返回TRUE;如果失敗,則返回FALSE。
以下示例說明了PHP中的imagesavealpha()函數:
範例1:在此示例中,我們將啟用保存Alpha信息。
<?php
// Load the png image
$png = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Turn off alpha blending
imagealphablending($png, false);
// Add alpha as 100 to image
$transparent = imagecolorallocatealpha($png, 255, 255, 255, 100);
imagefill($png, 0, 0, $transparent);
// Set alpha flag to true so that
// alpha info is saved in the image
imagesavealpha($png, true);
// Save the image
imagepng($png, 'imagewithalphainfo.png');
imagedestroy($png);
?>
輸出:
This will save the image in the same folder as imagewithalphainfo.png with alpha info.
範例2:在此示例中,我們將禁用保存Alpha信息。
<?php
// Load the png image
$png = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Turn off alpha blending
imagealphablending($png, false);
// Add alpha as 100 to image
$transparent = imagecolorallocatealpha($png, 255, 255, 255, 100);
imagefill($png, 0, 0, $transparent);
// Set alpha flag to false so that
// alpha info is not saved in the image
imagesavealpha($png, false);
// Save the image
imagepng($png, 'imagewithoutalphainfo.png');
imagedestroy($png);
?>
輸出:
This will save the image in the same folder as imagewithoutalphainfo.png without alpha info.
參考: https://www.php.net/manual/en/function.imagesavealpha.php
相關用法
- p5.js day()用法及代碼示例
- p5.js sin()用法及代碼示例
- p5.js pan()用法及代碼示例
- d3.js d3.min()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP Ds\Map last()用法及代碼示例
- p5.js abs()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP min( )用法及代碼示例
- PHP max( )用法及代碼示例
- d3.js d3.mean()用法及代碼示例
- p5.js sq()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | imagesavealpha() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。