当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。