當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP imagecolorallocatealpha()用法及代碼示例


imagecolorallocatealpha()函數是PHP中的內置函數,用於為圖像分配顏色。此函數與imagecolorallocate()函數相同,但增加了透明度參數$alpha。該函數接受五個參數,如果失敗則返回true或false的顏色標識符。

用法:

int imagecolorallocatealpha ( $image, $red, $green, $blue, $alpha )

參數:該函數接受上述和以下所述的五個參數:


  • $image:它由圖像創建函數之一(例如imagecreatetruecolor())返回。它用於創建圖像的尺寸。
  • $red:此參數用於設置紅色分量的值。
  • $green:此參數用於設置綠色分量的值。
  • $blue:此參數用於設置藍色分量的值。
  • $alpha:此參數用於設置圖像的透明度。 $alpha的值在0到127之間,其中0表示完全不透明,而127表示完全透明。

返回值:如果顏色分配失敗,則此函數返回成功的顏色標識符或FALSE。

異常:如果分配失敗,則5.1.3或更高版本返回false,否則先前返回-1。

以下示例程序旨在說明PHP中的imagecolorallocatealpha()函數:

程序1:

<?php 
  
// It create the size of image or blank image. 
$image = imagecreatetruecolor(500, 300); 
  
// Set the background color of image. 
$bg = imagecolorallocate($image, 0, 103, 0); 
   
// Fill background with above selected color. 
imagefill($image, 0, 0, $bg);  
  
// allocate colors with alpha values 
$yellow = imagecolorallocatealpha($image, 255, 255, 0, 75); 
$red    = imagecolorallocatealpha($image, 255, 0, 0, 75); 
$blue   = imagecolorallocatealpha($image, 0, 0, 255, 75); 
  
// Drawing filled circle 
imagefilledellipse($image, 200, 100, 150, 150, $yellow); 
imagefilledellipse($image, 275, 100, 150, 150, $red); 
imagefilledellipse($image, 240, 180, 150, 150, $blue); 
  
//output a correct header! 
header('Content-Type: image/png'); 
  
//output the result 
imagepng($image); 
imagedestroy($image); 
?>

輸出:
opacity image

程序2:

<?php 
  
// It create the size of image or blank image. 
$image = imagecreatetruecolor(500, 300); 
  
// Set the background color of image. 
$bg = imagecolorallocate($image, 0, 103, 0); 
   
// Fill background with above selected color. 
imagefill($image, 0, 0, $bg);  
  
// allocate colors with alpha values 
$yellow = imagecolorallocatealpha($image, 255, 255, 0, 75); 
$blue   = imagecolorallocatealpha($image, 0, 0, 255, 75); 
  
// Drawing filled circle 
imagefilledellipse($image, 200, 150, 150, 150, $yellow); 
imagefilledellipse($image, 280, 150, 150, 150, $blue); 
  
//output a correct header! 
header('Content-Type: image/png'); 
  
//output the result 
imagepng($image); 
imagedestroy($image); 
?>

輸出:
transparency

相關文章:

參考: http://php.net/manual/en/function.imagecolorallocatealpha.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | imagecolorallocatealpha() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。